From 5103216f5e6bc503980e00a4f3db11244dd7701c Mon Sep 17 00:00:00 2001
From: Burlone <108557545+burlone0@users.noreply.github.com>
Date: Sun, 21 Jul 2024 03:18:37 +0200
Subject: [PATCH] Added Battle Pass and working on Challenges :eyes:
---
.gitignore | 3 +
CloudStorage/DefaultEngine.ini | 36 +
CloudStorage/DefaultGame.ini | 61 +
CloudStorage/DefaultInput.ini | 3 +
CloudStorage/DefaultRuntimeOptions.ini | 8 +
Config/DefaultProfiles/allathena.json | 116317 +++++++++++++++
Config/DefaultProfiles/athena.json | 520 +
Config/DefaultProfiles/campaign.json | 24 +
.../collection_book_people0.json | 24 +
.../collection_book_schematics0.json | 24 +
Config/DefaultProfiles/collections.json | 24 +
Config/DefaultProfiles/common_core.json | 2013 +
Config/DefaultProfiles/common_public.json | 24 +
Config/DefaultProfiles/creative.json | 24 +
Config/DefaultProfiles/metadata.json | 24 +
Config/DefaultProfiles/outpost0.json | 24 +
Config/DefaultProfiles/profile0.json | 1714 +
Config/DefaultProfiles/theater0.json | 24 +
Config/catalog_config.json | 35 +
Config/config.json | 24 +
DiscordBot/commands/Admin/addall.js | 60 +
DiscordBot/commands/Admin/addvbucks.js | 43 +
DiscordBot/commands/Admin/ban.js | 57 +
DiscordBot/commands/Admin/delete.js | 50 +
DiscordBot/commands/Admin/kick.js | 58 +
DiscordBot/commands/Admin/removevbucks.js | 43 +
DiscordBot/commands/Admin/unban.js | 38 +
DiscordBot/commands/User/change-email.js | 45 +
DiscordBot/commands/User/change-password.js | 36 +
DiscordBot/commands/User/change-username.js | 61 +
DiscordBot/commands/User/create.js | 65 +
DiscordBot/commands/User/details.js | 37 +
DiscordBot/commands/User/exchange-code.js | 44 +
DiscordBot/commands/User/lookup.js | 38 +
.../commands/User/sign-out-of-all-sessions.js | 34 +
DiscordBot/commands/User/vbucksamount.js | 33 +
DiscordBot/index.js | 49 +
LICENSE | 674 +
README.md | 3 +
index.js | 85 +
install_packages.bat | 2 +
matchmaker/matchmaker.js | 72 +
model/friends.js | 16 +
model/profiles.js | 16 +
model/user.js | 21 +
package-lock.json | 3202 +
package.json | 42 +
responses/Athena/BattlePass/Season10.json | 461 +
responses/Athena/BattlePass/Season2.json | 318 +
responses/Athena/BattlePass/Season3.json | 442 +
responses/Athena/BattlePass/Season4.json | 444 +
responses/Athena/BattlePass/Season5.json | 453 +
responses/Athena/BattlePass/Season6.json | 453 +
responses/Athena/BattlePass/Season7.json | 454 +
responses/Athena/BattlePass/Season8.json | 453 +
responses/Athena/BattlePass/Season9.json | 458 +
responses/catalog.json | 2531 +
responses/contentpages.json | 6047 +
responses/keychain.json | 1399 +
responses/quests.json | 38757 +++++
routes/auth.js | 279 +
routes/cloudstorage.js | 132 +
routes/contentpages.js | 11 +
routes/friends.js | 229 +
routes/lightswitch.js | 47 +
routes/main.js | 127 +
routes/matchmaking.js | 108 +
routes/mcp.js | 2555 +
routes/storefront.js | 60 +
routes/timeline.js | 57 +
routes/user.js | 137 +
routes/version.js | 49 +
start.bat | 6 +
structs/error.js | 21 +
structs/friend.js | 202 +
structs/functions.js | 330 +
structs/log.js | 46 +
structs/profile.js | 34 +
tokenManager/tokenCreation.js | 69 +
tokenManager/tokenVerify.js | 104 +
tokenManager/tokens.json | 132 +
xmpp/xmpp.js | 530 +
82 files changed, 183809 insertions(+)
create mode 100644 .gitignore
create mode 100644 CloudStorage/DefaultEngine.ini
create mode 100644 CloudStorage/DefaultGame.ini
create mode 100644 CloudStorage/DefaultInput.ini
create mode 100644 CloudStorage/DefaultRuntimeOptions.ini
create mode 100644 Config/DefaultProfiles/allathena.json
create mode 100644 Config/DefaultProfiles/athena.json
create mode 100644 Config/DefaultProfiles/campaign.json
create mode 100644 Config/DefaultProfiles/collection_book_people0.json
create mode 100644 Config/DefaultProfiles/collection_book_schematics0.json
create mode 100644 Config/DefaultProfiles/collections.json
create mode 100644 Config/DefaultProfiles/common_core.json
create mode 100644 Config/DefaultProfiles/common_public.json
create mode 100644 Config/DefaultProfiles/creative.json
create mode 100644 Config/DefaultProfiles/metadata.json
create mode 100644 Config/DefaultProfiles/outpost0.json
create mode 100644 Config/DefaultProfiles/profile0.json
create mode 100644 Config/DefaultProfiles/theater0.json
create mode 100644 Config/catalog_config.json
create mode 100644 Config/config.json
create mode 100644 DiscordBot/commands/Admin/addall.js
create mode 100644 DiscordBot/commands/Admin/addvbucks.js
create mode 100644 DiscordBot/commands/Admin/ban.js
create mode 100644 DiscordBot/commands/Admin/delete.js
create mode 100644 DiscordBot/commands/Admin/kick.js
create mode 100644 DiscordBot/commands/Admin/removevbucks.js
create mode 100644 DiscordBot/commands/Admin/unban.js
create mode 100644 DiscordBot/commands/User/change-email.js
create mode 100644 DiscordBot/commands/User/change-password.js
create mode 100644 DiscordBot/commands/User/change-username.js
create mode 100644 DiscordBot/commands/User/create.js
create mode 100644 DiscordBot/commands/User/details.js
create mode 100644 DiscordBot/commands/User/exchange-code.js
create mode 100644 DiscordBot/commands/User/lookup.js
create mode 100644 DiscordBot/commands/User/sign-out-of-all-sessions.js
create mode 100644 DiscordBot/commands/User/vbucksamount.js
create mode 100644 DiscordBot/index.js
create mode 100644 LICENSE
create mode 100644 README.md
create mode 100644 index.js
create mode 100644 install_packages.bat
create mode 100644 matchmaker/matchmaker.js
create mode 100644 model/friends.js
create mode 100644 model/profiles.js
create mode 100644 model/user.js
create mode 100644 package-lock.json
create mode 100644 package.json
create mode 100644 responses/Athena/BattlePass/Season10.json
create mode 100644 responses/Athena/BattlePass/Season2.json
create mode 100644 responses/Athena/BattlePass/Season3.json
create mode 100644 responses/Athena/BattlePass/Season4.json
create mode 100644 responses/Athena/BattlePass/Season5.json
create mode 100644 responses/Athena/BattlePass/Season6.json
create mode 100644 responses/Athena/BattlePass/Season7.json
create mode 100644 responses/Athena/BattlePass/Season8.json
create mode 100644 responses/Athena/BattlePass/Season9.json
create mode 100644 responses/catalog.json
create mode 100644 responses/contentpages.json
create mode 100644 responses/keychain.json
create mode 100644 responses/quests.json
create mode 100644 routes/auth.js
create mode 100644 routes/cloudstorage.js
create mode 100644 routes/contentpages.js
create mode 100644 routes/friends.js
create mode 100644 routes/lightswitch.js
create mode 100644 routes/main.js
create mode 100644 routes/matchmaking.js
create mode 100644 routes/mcp.js
create mode 100644 routes/storefront.js
create mode 100644 routes/timeline.js
create mode 100644 routes/user.js
create mode 100644 routes/version.js
create mode 100644 start.bat
create mode 100644 structs/error.js
create mode 100644 structs/friend.js
create mode 100644 structs/functions.js
create mode 100644 structs/log.js
create mode 100644 structs/profile.js
create mode 100644 tokenManager/tokenCreation.js
create mode 100644 tokenManager/tokenVerify.js
create mode 100644 tokenManager/tokens.json
create mode 100644 xmpp/xmpp.js
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b89df4e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+ClientSettings/
+*.Sav
+node_modules/
diff --git a/CloudStorage/DefaultEngine.ini b/CloudStorage/DefaultEngine.ini
new file mode 100644
index 0000000..ffd1d2b
--- /dev/null
+++ b/CloudStorage/DefaultEngine.ini
@@ -0,0 +1,36 @@
+[OnlineSubsystemMcp.Xmpp]
+bUseSSL=false
+ServerAddr="ws://127.0.0.1:80"
+ServerPort=80
+
+[OnlineSubsystemMcp.Xmpp Prod]
+bUseSSL=false
+ServerAddr="ws://127.0.0.1:80"
+ServerPort=80
+
+[OnlineSubsystemMcp]
+bUsePartySystemV2=false
+
+[OnlineSubsystemMcp.OnlinePartySystemMcpAdapter]
+bUsePartySystemV2=false
+
+[CrashContextProperties]
+CrashReportClientRichText=NSLOCTEXT("FortGlobals", "FortniteCrashReportClientText", "Fortnite has crashed.")
+
+[/Script/Qos.QosRegionManager]
+NumTestsPerRegion=1
+PingTimeout=3.0
+!RegionDefinitions=ClearArray
++RegionDefinitions=(DisplayName="Na-East", RegionId="NAE", bEnabled=false, bVisible=false, bAutoAssignable=false)
++RegionDefinitions=(DisplayName="Na-West", RegionId="NAW", bEnabled=false, bVisible=false, bAutoAssignable=false)
++RegionDefinitions=(DisplayName="Oceania", RegionId="OCE", bEnabled=false, bVisible=false, bAutoAssignable=false)
++RegionDefinitions=(DisplayName="Europe", RegionId="EU", bEnabled=true, bVisible=true, bAutoAssignable=true)
++RegionDefinitions=(DisplayName="Me", RegionId="ME", bEnabled=false, bVisible=false, bAutoAssignable=false)
++RegionDefinitions=(DisplayName="Brazil", RegionId="BR", bEnabled=false, bVisible=false, bAutoAssignable=false)
+
+[XMPP]
+bEnableWebsockets=true
+
+# Double Pump
+;[ConsoleVariables]
+;Weapon.TryToFireRestrictedByTypeCooldowns=0
\ No newline at end of file
diff --git a/CloudStorage/DefaultGame.ini b/CloudStorage/DefaultGame.ini
new file mode 100644
index 0000000..7bd9dc4
--- /dev/null
+++ b/CloudStorage/DefaultGame.ini
@@ -0,0 +1,61 @@
+[/Script/EngineSettings.GeneralProjectSettings]
+ProjectID=(A=-2011270876,B=1182903154,C=-965786730,D=-1399474123)
+ProjectName=Fortnite
+ProjectDisplayedTitle=NSLOCTEXT("", "FortniteMainWindowTitle", "Fortnite")
+ProjectVersion=1.0.0
+CompanyName=Epic Games, Inc.
+CompanyDistinguishedName="CN=Epic Games, O=Epic Games, L=Cary, S=North Carolina, C=US"
+CopyrightNotice=Copyright Epic Games, Inc. All Rights Reserved.
+bUseBorderlessWindow=True
+
+[/Script/FortniteGame.FortGlobals]
+bAllowLogout=false
+
+### Turbo build
+;[/Script/FortniteGame.FortPlayerController]
+;TurboBuildInterval=0.015f
+;TurboBuildFirstInterval=0.015f
+;bClientSideEditPrediction=false
+
+[/Script/FortniteGame.FortTextHotfixConfig]
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="LoadingScreen", Key="Connecting", NativeString="CONNECTING", LocalizedStrings=(("en","CONNECTING TO Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="FortLoginStatus", Key="LoggingIn", NativeString="Logging In...", LocalizedStrings=(("ar","تسجيل الدخول إلى Reload..."),("en","Logging Into Reload..."),("de","Bei Reload anmelden..."),("es","Iniciando sesión en Reload..."),("es-419","Iniciando sesión en Reload..."),("fr","Connexion à Reload..."),("it","Accesso a Reload..."),("ja","Reload にログインしています..."),("ko","Reload에 로그인하는 중..."),("pl","Logowanie do Reload..."),("pt-BR","Iniciando sesión en Reload..."),("ru","Вход в Reload..."),("tr","Reload'ye Giriş Yapılıyor..."),("zh-CN","Ngena ngemvume ku-Reload..."),("zh-Hant","Ngena ngemvume ku-Reload...")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="OnlineAccount", Key="DoQosPingTests", NativeString="Checking connection to datacenters...", LocalizedStrings=(("ar","جارٍ التحقق من الاتصال بـ Reload..."),("en","Checking connection to Reload..."),("de","Verbindung zu Reload wird überprüft..."),("es","Comprobando conexión a Reload..."),("es-419","Comprobando conexión a Reload..."),("fr","Vérification de la connexion à Reload..."),("it","Controllo della connessione a Reload..."),("ja","Reload への接続を確認しています..."),("ko","Reload 연결을 확인하는 중..."),("pl","Sprawdzam połączenie z Reload..."),("pt-BR","Comprobando conexión a Reload..."),("ru","Проверка подключения к Reload..."),("tr","Reload bağlantısı kontrol ediliyor..."),("zh-CN","Ihlola ukuxhumeka ku-Reload..."),("zh-Hant","Ihlola ukuxhumeka ku-Reload...")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="37020CCD402F073607D9D4A9561EF035", NativeString="PLAY", LocalizedStrings=(("ar","لعب Reload"),("en","Play Reload"),("de","Spielen Reload"),("es","Jugar Reload"),("es-419","Jugar Reload"),("fr","Jouer Reload"),("it","Gioca Reload"),("ja","プレイ Reload"),("ko","플레이 Reload"),("pl","Graj Reload"),("pt-BR","Jogar Reload"),("ru","Играть Reload"),("tr","Oyna Reload"),("zh-CN","玩 Reload"),("zh-Hant","玩 Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="C8C6606D4ED4B816D4A358A42DFBDD59", NativeString="PLAY", LocalizedStrings=(("ar","لعب Reload"),("en","Play Reload"),("de","Spielen Reload"),("es","Jugar Reload"),("es-419","Jugar Reload"),("fr","Jouer Reload"),("it","Gioca Reload"),("ja","プレイ Reload"),("ko","플레이 Reload"),("pl","Graj Reload"),("pt-BR","Jogar Reload"),("ru","Играть Reload"),("tr","Oyna Reload"),("zh-CN","玩 Reload"),("zh-Hant","玩 Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="03875FFD49212D2F37B01788C09086B5", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es","Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="1D20854C403FDD474AE7C8B929815DA2", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es","Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="1FB7052F40BE8B647B5CA5A362BE8F21", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es"," Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="2E42C9FB4F551A859C05BF99F7E36FB1", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es","Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="370415344EEEA09D8C01A48F4B8148D7", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es","Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="538BD1FD46BCEFA4813E2FAFAA07E1A2", NativeString="Quit", LocalizedStrings=(("ar","قم بإنهاء برنامج Reload"),("en","Quit Reload"),("de","Beenden Sie Reload"),("es","Salir de Reload"),("es-419","Salir de Reload"),("fr","Quitter Reload"),("it","Uscendo da Reload"),("ja","Reload を終了する"),("ko","Reload 종료"),("pl","Opuść Reload"),("pt-BR","Salir de Reload"),("ru","Выйти из Reload"),("tr","Reload'den çık"),("zh-CN","Yeka i-Reload"),("zh-Hant","Yeka i-Reload")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="FortTeamMemberPedestalNameplate", Key="NotReady", NativeString="Not Ready", LocalizedStrings=(("ar","غير جاهز"),("en","Not Ready"),("de","Nicht bereit"),("es","No listo"),("es-419","No listo"),("fr","Pas prêt"),("it","Non Pronto"),("ja","準備ができていない"),("ko","준비되지 않음"),("pl","Nie gotowy"),("pt-BR","No listo"),("ru","Не готов"),("tr","Hazır değil"),("zh-CN","Not Ready"),("zh-Hant","Not Ready")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="OnlineAccount", Key="TokenExpired", NativeString="Login Expired or Logged In Elsewhere", LocalizedStrings=(("ar","تمت إعادة تشغيل الواجهة الخلفية... أعد تشغيل لعبتك"),("en","Backend Restarted... Restart your game"),("de","Backend neu gestartet... Starten Sie Ihr Spiel neu"),("es","Backend reiniciado... Reinicia tu juego"),("es-419","Backend reiniciado... Reinicia tu juego"),("fr","Backend redémarré... Redémarrez votre jeu"),("it","Backend riavviato... Riavvia il gioco"),("ja","バックエンドが再起動されました... ゲームを再起動します"),("ko","백엔드가 다시 시작되었습니다... 게임을 다시 시작하세요"),("pl","Backend został uruchomiony ponownie... Uruchom ponownie grę"),("pt-BR","Backend reiniciado... Reinicia tu juego"),("ru","Серверная часть перезапущена... Перезапустите игру."),("tr","Arka Uç Yeniden Başlatıldı... Oyununuzu yeniden başlatın"),("zh-CN","Okwasemuva Kuqaliswe kabusha... Qala kabusha igeyimu yakho"),("zh-Hant","Okwasemuva Kuqaliswe kabusha... Qala kabusha igeyimu yakho")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="Fortnite.FortAthenaMatchmakingWidget", Key="Message.CanMatchmakeSolo", NativeString="PLAY!", LocalizedStrings=(("ar","برونتو"),("en","READY"),("de","BEREIT"),("es","LISTO"),("es-419","LISTO"),("fr","PRÊT"),("it","PRONTO"),("ja","準備ができて"),("ko","준비가 된"),("pl","GOTOWY"),("pt-BR","LISTO"),("ru","ГОТОВЫЙ"),("tr","HAZIR"),("zh-CN","LUNGILE"),("zh-Hant","READY")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="FortOnlineAccount", Key="CreatingParty", NativeString="Creating party...", LocalizedStrings=(("en","Welcome to Reload")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="2A1C56D243E8C4418146029BA30A18F4", NativeString="Battle Pass", LocalizedStrings=(("en","Reload Battle Pass")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="PartyContext", Key="BattleRoyaleInLobby", NativeString="Battle Royale - In Lobby", LocalizedStrings=(("ar","Reload - Lobby"),("en","Reload - Lobby"),("de","Reload - Lobby"),("es","Reload - Lobby"),("es-419","Reload - Lobby"),("fr","Reload - Lobby"),("it","Reload - Lobby"),("ja","Reload - Lobby"),("ko","Reload - Lobby"),("pl","Reload - Lobby"),("pt-BR","Reload - Lobby"),("ru","Reload - Lobby"),("tr","Reload - Lobby"),("zh-CN","Reload - Lobby"),("zh-Hant","Reload - Lobby")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="30C8C9204EAF7FF602BF51BA2914EF27", NativeString="EPIC PASSWORD", LocalizedStrings=(("en","Reload Password")))
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="CA2EC1714F23111FDBE6439EBC961404", NativeString="EMAIL", LocalizedStrings=(("en","Reload Email")))
+
++TextReplacements=(Category=Game, bIsMinimalPatch=True, Namespace="", Key="40D1ADD648EDBD000A8F7E88E8D90341", NativeString="ITEM SHOP", LocalizedStrings=(("en","Item Shop")))
+
+[/Script/FortniteGame.FortGameInstance]
+!FrontEndPlaylistData=ClearArray
++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSolo, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=true, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=0))
++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultDuo, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=1))
++FrontEndPlaylistData=(PlaylistName=Playlist_Trios, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=2))
++FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSquad, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=3))
++FrontEndPlaylistData=(PlaylistName=Playlist_Playground, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=1, bDisplayAsLimitedTime=true, DisplayPriority=0))
+
+[/Script/FortniteGame.FortChatManager]
+bShouldRequestGeneralChatRooms=true
+bShouldJoinGlobalChat=true
+bShouldJoinFounderChat=false
+bIsAthenaGlobalChatEnabled=true
\ No newline at end of file
diff --git a/CloudStorage/DefaultInput.ini b/CloudStorage/DefaultInput.ini
new file mode 100644
index 0000000..b54f242
--- /dev/null
+++ b/CloudStorage/DefaultInput.ini
@@ -0,0 +1,3 @@
+[/Script/Engine.InputSettings]
++ConsoleKeys=Tilde
++ConsoleKeys=F8
\ No newline at end of file
diff --git a/CloudStorage/DefaultRuntimeOptions.ini b/CloudStorage/DefaultRuntimeOptions.ini
new file mode 100644
index 0000000..1ea8ded
--- /dev/null
+++ b/CloudStorage/DefaultRuntimeOptions.ini
@@ -0,0 +1,8 @@
+[/Script/FortniteGame.FortRuntimeOptions]
+bEnableGlobalChat=false
+bDisableGifting=false
+bDisableGiftingPC=false
+bDisableGiftingPS4=false
+bDisableGiftingXB=false
+!ExperimentalCohortPercent=ClearArray
++ExperimentalCohortPercent=(CohortPercent=100,ExperimentNum=20)
\ No newline at end of file
diff --git a/Config/DefaultProfiles/allathena.json b/Config/DefaultProfiles/allathena.json
new file mode 100644
index 0000000..7493a02
--- /dev/null
+++ b/Config/DefaultProfiles/allathena.json
@@ -0,0 +1,116317 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "athena",
+ "version": "no_version",
+ "items": {
+ "sandbox_loadout": {
+ "templateId": "CosmeticLocker:cosmeticlocker_athena",
+ "attributes": {
+ "locker_slots_data": {
+ "slots": {
+ "Pickaxe": {
+ "items": [
+ "AthenaPickaxe:DefaultPickaxe"
+ ],
+ "activeVariants": []
+ },
+ "Dance": {
+ "items": [
+ "AthenaDance:EID_BoogieDown",
+ "AthenaDance:EID_DanceMoves",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "Glider": {
+ "items": [
+ "AthenaGlider:DefaultGlider"
+ ]
+ },
+ "Character": {
+ "items": [
+ "AthenaCharacter:CID_001_Athena_Commando_F_Default"
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "Backpack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "ItemWrap": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "activeVariants": [
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ ]
+ },
+ "LoadingScreen": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "MusicPack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "SkyDiveContrail": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ }
+ }
+ },
+ "use_count": 1,
+ "banner_icon_template": "",
+ "locker_name": "",
+ "banner_color_template": "",
+ "item_seen": false,
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "momentum0-loadout": {
+ "templateId": "CosmeticLocker:cosmeticlocker_athena",
+ "attributes": {
+ "locker_slots_data": {
+ "slots": {
+ "Pickaxe": {
+ "items": [
+ ""
+ ],
+ "activeVariants": []
+ },
+ "Dance": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "Glider": {
+ "items": [
+ ""
+ ]
+ },
+ "Character": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "Backpack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "ItemWrap": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "activeVariants": [
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ ]
+ },
+ "LoadingScreen": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "MusicPack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "SkyDiveContrail": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ }
+ }
+ },
+ "use_count": 1,
+ "banner_icon_template": "",
+ "locker_name": "MOMENTUM",
+ "banner_color_template": "",
+ "item_seen": false,
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_AgentXKoi": {
+ "templateId": "AthenaBackpack:Backpack_AgentXKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_AllKnowing": {
+ "templateId": "AthenaBackpack:Backpack_AllKnowing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Amour": {
+ "templateId": "AthenaBackpack:Backpack_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Apprentice": {
+ "templateId": "AthenaBackpack:Backpack_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ArcticIceBlue": {
+ "templateId": "AthenaBackpack:Backpack_ArcticIceBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ArcticIceTalus": {
+ "templateId": "AthenaBackpack:Backpack_ArcticIceTalus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ArcticIceTalus_Symbol": {
+ "templateId": "AthenaBackpack:Backpack_ArcticIceTalus_Symbol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Ballerina": {
+ "templateId": "AthenaBackpack:Backpack_Ballerina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_BariumDemon": {
+ "templateId": "AthenaBackpack:Backpack_BariumDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Basil": {
+ "templateId": "AthenaBackpack:Backpack_Basil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Bites": {
+ "templateId": "AthenaBackpack:Backpack_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_BlueGlaze": {
+ "templateId": "AthenaBackpack:Backpack_BlueGlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_BlueJet": {
+ "templateId": "AthenaBackpack:Backpack_BlueJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_BlueMystery_Dark": {
+ "templateId": "AthenaBackpack:Backpack_BlueMystery_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_BoneMarrow": {
+ "templateId": "AthenaBackpack:Backpack_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Boredom": {
+ "templateId": "AthenaBackpack:Backpack_Boredom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Calavera": {
+ "templateId": "AthenaBackpack:Backpack_Calavera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Candor": {
+ "templateId": "AthenaBackpack:Backpack_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CavalryAlt": {
+ "templateId": "AthenaBackpack:Backpack_CavalryAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Chainmail": {
+ "templateId": "AthenaBackpack:Backpack_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ChaosDarkIce": {
+ "templateId": "AthenaBackpack:Backpack_ChaosDarkIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ChillCat": {
+ "templateId": "AthenaBackpack:Backpack_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CirrusVine": {
+ "templateId": "AthenaBackpack:Backpack_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Citadel": {
+ "templateId": "AthenaBackpack:Backpack_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CitadelCape": {
+ "templateId": "AthenaBackpack:Backpack_CitadelCape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ClawMachine": {
+ "templateId": "AthenaBackpack:Backpack_ClawMachine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ClearRadius": {
+ "templateId": "AthenaBackpack:Backpack_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Conscience": {
+ "templateId": "AthenaBackpack:Backpack_Conscience",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CoyoteTrail": {
+ "templateId": "AthenaBackpack:Backpack_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CoyoteTrailDark": {
+ "templateId": "AthenaBackpack:Backpack_CoyoteTrailDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CrimsonPeak": {
+ "templateId": "AthenaBackpack:Backpack_CrimsonPeak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_CrimsonPeak_Ship": {
+ "templateId": "AthenaBackpack:Backpack_CrimsonPeak_Ship",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DaggerPack": {
+ "templateId": "AthenaBackpack:Backpack_DaggerPack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Dango": {
+ "templateId": "AthenaBackpack:Backpack_Dango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DarkAzalea": {
+ "templateId": "AthenaBackpack:Backpack_DarkAzalea",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Dazzle": {
+ "templateId": "AthenaBackpack:Backpack_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DefectBlip": {
+ "templateId": "AthenaBackpack:Backpack_DefectBlip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "RichColor2",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DefectGlitch": {
+ "templateId": "AthenaBackpack:Backpack_DefectGlitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "RichColor2",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Despair": {
+ "templateId": "AthenaBackpack:Backpack_Despair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DistantEchoCastle": {
+ "templateId": "AthenaBackpack:Backpack_DistantEchoCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DistantEchoPilot": {
+ "templateId": "AthenaBackpack:Backpack_DistantEchoPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_DistantEchoPro": {
+ "templateId": "AthenaBackpack:Backpack_DistantEchoPro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Ebony": {
+ "templateId": "AthenaBackpack:Backpack_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Elevate": {
+ "templateId": "AthenaBackpack:Backpack_Elevate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmberRae": {
+ "templateId": "AthenaBackpack:Backpack_EmberRae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmeraldGlassGreen": {
+ "templateId": "AthenaBackpack:Backpack_EmeraldGlassGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmeraldGlassPink": {
+ "templateId": "AthenaBackpack:Backpack_EmeraldGlassPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmeraldGlassRebel": {
+ "templateId": "AthenaBackpack:Backpack_EmeraldGlassRebel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmeraldGlassStandAlone": {
+ "templateId": "AthenaBackpack:Backpack_EmeraldGlassStandAlone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_EmeraldGlassTransform": {
+ "templateId": "AthenaBackpack:Backpack_EmeraldGlassTransform",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FallValleyBlink": {
+ "templateId": "AthenaBackpack:Backpack_FallValleyBlink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FallValleyCharge": {
+ "templateId": "AthenaBackpack:Backpack_FallValleyCharge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FearlessFlightHero": {
+ "templateId": "AthenaBackpack:Backpack_FearlessFlightHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FearlessFlightMenace": {
+ "templateId": "AthenaBackpack:Backpack_FearlessFlightMenace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FNBirthday5": {
+ "templateId": "AthenaBackpack:Backpack_FNBirthday5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FNCS22": {
+ "templateId": "AthenaBackpack:Backpack_FNCS22",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FNCS23": {
+ "templateId": "AthenaBackpack:Backpack_FNCS23",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_FNCS24": {
+ "templateId": "AthenaBackpack:Backpack_FNCS24",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GalaxyKnight": {
+ "templateId": "AthenaBackpack:Backpack_GalaxyKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GelatinGummi": {
+ "templateId": "AthenaBackpack:Backpack_GelatinGummi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Genius": {
+ "templateId": "AthenaBackpack:Backpack_Genius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GeniusStandAlone": {
+ "templateId": "AthenaBackpack:Backpack_GeniusStandAlone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Genius_Blob": {
+ "templateId": "AthenaBackpack:Backpack_Genius_Blob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GlobeDigital": {
+ "templateId": "AthenaBackpack:Backpack_GlobeDigital",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GoldenGuard": {
+ "templateId": "AthenaBackpack:Backpack_GoldenGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_GrandScheme": {
+ "templateId": "AthenaBackpack:Backpack_GrandScheme",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HauntKoi": {
+ "templateId": "AthenaBackpack:Backpack_HauntKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HeadHunterStar": {
+ "templateId": "AthenaBackpack:Backpack_HeadHunterStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Headset": {
+ "templateId": "AthenaBackpack:Backpack_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HeistSleek": {
+ "templateId": "AthenaBackpack:Backpack_HeistSleek",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HitmanCase_Dark": {
+ "templateId": "AthenaBackpack:Backpack_HitmanCase_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HumanBeing": {
+ "templateId": "AthenaBackpack:Backpack_HumanBeing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_HurricaneRetro": {
+ "templateId": "AthenaBackpack:Backpack_HurricaneRetro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Imitator": {
+ "templateId": "AthenaBackpack:Backpack_Imitator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Impulse": {
+ "templateId": "AthenaBackpack:Backpack_Impulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Inferno": {
+ "templateId": "AthenaBackpack:Backpack_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Inspire": {
+ "templateId": "AthenaBackpack:Backpack_Inspire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_IronBlaze": {
+ "templateId": "AthenaBackpack:Backpack_IronBlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_IvyCross": {
+ "templateId": "AthenaBackpack:Backpack_IvyCross",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_JollyTroll": {
+ "templateId": "AthenaBackpack:Backpack_JollyTroll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_JollyTroll_Winter": {
+ "templateId": "AthenaBackpack:Backpack_JollyTroll_Winter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_JumbotronS22": {
+ "templateId": "AthenaBackpack:Backpack_JumbotronS22",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_JumbotronS23": {
+ "templateId": "AthenaBackpack:Backpack_JumbotronS23",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_KeyTracker": {
+ "templateId": "AthenaBackpack:Backpack_KeyTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_LettuceCat": {
+ "templateId": "AthenaBackpack:Backpack_LettuceCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_LightningDragon": {
+ "templateId": "AthenaBackpack:Backpack_LightningDragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Lilac": {
+ "templateId": "AthenaBackpack:Backpack_Lilac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_LocalZilla": {
+ "templateId": "AthenaBackpack:Backpack_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Looper": {
+ "templateId": "AthenaBackpack:Backpack_Looper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_LopexSnow": {
+ "templateId": "AthenaBackpack:Backpack_LopexSnow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MagicMeadow": {
+ "templateId": "AthenaBackpack:Backpack_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MechanicalEngineerRev": {
+ "templateId": "AthenaBackpack:Backpack_MechanicalEngineerRev",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MercurialStorm": {
+ "templateId": "AthenaBackpack:Backpack_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MetalScout": {
+ "templateId": "AthenaBackpack:Backpack_MetalScout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MetalWings": {
+ "templateId": "AthenaBackpack:Backpack_MetalWings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Meteorwomen_Alt": {
+ "templateId": "AthenaBackpack:Backpack_Meteorwomen_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_MirageHike": {
+ "templateId": "AthenaBackpack:Backpack_MirageHike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Mouse": {
+ "templateId": "AthenaBackpack:Backpack_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Nebula": {
+ "templateId": "AthenaBackpack:Backpack_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_NightHawk": {
+ "templateId": "AthenaBackpack:Backpack_NightHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_NightHawkMetal": {
+ "templateId": "AthenaBackpack:Backpack_NightHawkMetal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_NightHawkSolo": {
+ "templateId": "AthenaBackpack:Backpack_NightHawkSolo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat4",
+ "owned": [
+ "Mat4",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_NitroFlow": {
+ "templateId": "AthenaBackpack:Backpack_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Nox": {
+ "templateId": "AthenaBackpack:Backpack_Nox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_OceanBreeze": {
+ "templateId": "AthenaBackpack:Backpack_OceanBreeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Patches": {
+ "templateId": "AthenaBackpack:Backpack_Patches",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PencilCherry": {
+ "templateId": "AthenaBackpack:Backpack_PencilCherry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PennantSeasonsTide": {
+ "templateId": "AthenaBackpack:Backpack_PennantSeasonsTide",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5",
+ "Particle6",
+ "Particle7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PhotographerHoliday": {
+ "templateId": "AthenaBackpack:Backpack_PhotographerHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PinkJet": {
+ "templateId": "AthenaBackpack:Backpack_PinkJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PinkSpike": {
+ "templateId": "AthenaBackpack:Backpack_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PinkTrooper": {
+ "templateId": "AthenaBackpack:Backpack_PinkTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PlotTwist": {
+ "templateId": "AthenaBackpack:Backpack_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Possession": {
+ "templateId": "AthenaBackpack:Backpack_Possession",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_PrisonBreak": {
+ "templateId": "AthenaBackpack:Backpack_PrisonBreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Quartz": {
+ "templateId": "AthenaBackpack:Backpack_Quartz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_QuartzBlob": {
+ "templateId": "AthenaBackpack:Backpack_QuartzBlob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Radish": {
+ "templateId": "AthenaBackpack:Backpack_Radish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Ramen": {
+ "templateId": "AthenaBackpack:Backpack_Ramen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_RedOasis": {
+ "templateId": "AthenaBackpack:Backpack_RedOasis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_RedPepper": {
+ "templateId": "AthenaBackpack:Backpack_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_RoseDust": {
+ "templateId": "AthenaBackpack:Backpack_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_RoseForm": {
+ "templateId": "AthenaBackpack:Backpack_RoseForm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Ruins": {
+ "templateId": "AthenaBackpack:Backpack_Ruins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Sahara": {
+ "templateId": "AthenaBackpack:Backpack_Sahara",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_SailorSquadLeaderKoi": {
+ "templateId": "AthenaBackpack:Backpack_SailorSquadLeaderKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ScarletBionic": {
+ "templateId": "AthenaBackpack:Backpack_ScarletBionic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Scribble": {
+ "templateId": "AthenaBackpack:Backpack_Scribble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_SharpFang": {
+ "templateId": "AthenaBackpack:Backpack_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_ShinyStar": {
+ "templateId": "AthenaBackpack:Backpack_ShinyStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Silencer": {
+ "templateId": "AthenaBackpack:Backpack_Silencer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_SirWolf": {
+ "templateId": "AthenaBackpack:Backpack_SirWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Sparrow": {
+ "templateId": "AthenaBackpack:Backpack_Sparrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_SplitDiamond": {
+ "templateId": "AthenaBackpack:Backpack_SplitDiamond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_StallionAviator": {
+ "templateId": "AthenaBackpack:Backpack_StallionAviator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_StallionSmoke": {
+ "templateId": "AthenaBackpack:Backpack_StallionSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_StreetFashionSpring": {
+ "templateId": "AthenaBackpack:Backpack_StreetFashionSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_SunBurst": {
+ "templateId": "AthenaBackpack:Backpack_SunBurst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Sunburst_Alt": {
+ "templateId": "AthenaBackpack:Backpack_Sunburst_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Sunlit": {
+ "templateId": "AthenaBackpack:Backpack_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Takoyaki": {
+ "templateId": "AthenaBackpack:Backpack_Takoyaki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_TearScar": {
+ "templateId": "AthenaBackpack:Backpack_TearScar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_TheHerald": {
+ "templateId": "AthenaBackpack:Backpack_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_TigerRootFame": {
+ "templateId": "AthenaBackpack:Backpack_TigerRootFame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_TigerRootHype": {
+ "templateId": "AthenaBackpack:Backpack_TigerRootHype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Titanium": {
+ "templateId": "AthenaBackpack:Backpack_Titanium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Troops": {
+ "templateId": "AthenaBackpack:Backpack_Troops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_TroopsAlt": {
+ "templateId": "AthenaBackpack:Backpack_TroopsAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Veiled": {
+ "templateId": "AthenaBackpack:Backpack_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Venice": {
+ "templateId": "AthenaBackpack:Backpack_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_Virtuous": {
+ "templateId": "AthenaBackpack:Backpack_Virtuous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_VitalPsych": {
+ "templateId": "AthenaBackpack:Backpack_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Backpack_WinterHunterFNCS": {
+ "templateId": "AthenaBackpack:Backpack_WinterHunterFNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_001_Cattus": {
+ "templateId": "BannerToken:BannerToken_001_Cattus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_002_Doggus": {
+ "templateId": "BannerToken:BannerToken_002_Doggus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_003_2019WorldCup": {
+ "templateId": "BannerToken:BannerToken_003_2019WorldCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_004_Oak": {
+ "templateId": "BannerToken:BannerToken_004_Oak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_005_BlackMonday": {
+ "templateId": "BannerToken:BannerToken_005_BlackMonday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_006_StormKing": {
+ "templateId": "BannerToken:BannerToken_006_StormKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_007_S11_TreeSymbol": {
+ "templateId": "BannerToken:BannerToken_007_S11_TreeSymbol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_008_S11_DiamondShapes": {
+ "templateId": "BannerToken:BannerToken_008_S11_DiamondShapes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_009_S11_EightBall": {
+ "templateId": "BannerToken:BannerToken_009_S11_EightBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_010_S11_Toadstool": {
+ "templateId": "BannerToken:BannerToken_010_S11_Toadstool",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_011_S11_Pawmark": {
+ "templateId": "BannerToken:BannerToken_011_S11_Pawmark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_012_S11_Fishhook": {
+ "templateId": "BannerToken:BannerToken_012_S11_Fishhook",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_013_S11_ToxicMask": {
+ "templateId": "BannerToken:BannerToken_013_S11_ToxicMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_014_S11_WaterWaves": {
+ "templateId": "BannerToken:BannerToken_014_S11_WaterWaves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_015_GalileoA_0W6VH": {
+ "templateId": "BannerToken:BannerToken_015_GalileoA_0W6VH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_016_GalileoB_ZF42Y": {
+ "templateId": "BannerToken:BannerToken_016_GalileoB_ZF42Y",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_017_GalileoC_CKB0B": {
+ "templateId": "BannerToken:BannerToken_017_GalileoC_CKB0B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_018_GalileoD_5XXFQ": {
+ "templateId": "BannerToken:BannerToken_018_GalileoD_5XXFQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_019_XmasSweaterB": {
+ "templateId": "BannerToken:BannerToken_019_XmasSweaterB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_020_Flake": {
+ "templateId": "BannerToken:BannerToken_020_Flake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_021_SockMonkey": {
+ "templateId": "BannerToken:BannerToken_021_SockMonkey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_022_S11_Badge_01": {
+ "templateId": "BannerToken:BannerToken_022_S11_Badge_01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_023_S11_Badge_02": {
+ "templateId": "BannerToken:BannerToken_023_S11_Badge_02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_024_S11_Badge_03": {
+ "templateId": "BannerToken:BannerToken_024_S11_Badge_03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_025_S11_Badge_04": {
+ "templateId": "BannerToken:BannerToken_025_S11_Badge_04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_026_S11_Badge_05": {
+ "templateId": "BannerToken:BannerToken_026_S11_Badge_05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_027_LoveAndWar_Love": {
+ "templateId": "BannerToken:BannerToken_027_LoveAndWar_Love",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_028_LoveAndWar_War": {
+ "templateId": "BannerToken:BannerToken_028_LoveAndWar_War",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_029_S12_Cowboy": {
+ "templateId": "BannerToken:BannerToken_029_S12_Cowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_030_S12_Grenade": {
+ "templateId": "BannerToken:BannerToken_030_S12_Grenade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_031_S12_Kitty": {
+ "templateId": "BannerToken:BannerToken_031_S12_Kitty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_032_S12_Roses": {
+ "templateId": "BannerToken:BannerToken_032_S12_Roses",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_033_S12_Skull": {
+ "templateId": "BannerToken:BannerToken_033_S12_Skull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_034_S12_WingedCritter": {
+ "templateId": "BannerToken:BannerToken_034_S12_WingedCritter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_035_S12_Badge_1": {
+ "templateId": "BannerToken:BannerToken_035_S12_Badge_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_036_S12_Badge_2": {
+ "templateId": "BannerToken:BannerToken_036_S12_Badge_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_037_S12_Badge_3": {
+ "templateId": "BannerToken:BannerToken_037_S12_Badge_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_038_S12_Badge_4": {
+ "templateId": "BannerToken:BannerToken_038_S12_Badge_4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_039_S12_Badge_5": {
+ "templateId": "BannerToken:BannerToken_039_S12_Badge_5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_040_S12_Midas": {
+ "templateId": "BannerToken:BannerToken_040_S12_Midas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_041_S12_CycloneA": {
+ "templateId": "BannerToken:BannerToken_041_S12_CycloneA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_043_S12_Donut": {
+ "templateId": "BannerToken:BannerToken_043_S12_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_044_S12_BananaAgent": {
+ "templateId": "BannerToken:BannerToken_044_S12_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_045_S12_BrazilToucan": {
+ "templateId": "BannerToken:BannerToken_045_S12_BrazilToucan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_046_S12_BrazilDrum": {
+ "templateId": "BannerToken:BannerToken_046_S12_BrazilDrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_047_S13_BlackKnight": {
+ "templateId": "BannerToken:BannerToken_047_S13_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_048_S13_MechanicalEngineer": {
+ "templateId": "BannerToken:BannerToken_048_S13_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_049_S13_OceanRider": {
+ "templateId": "BannerToken:BannerToken_049_S13_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_050_S13_ProfessorPup": {
+ "templateId": "BannerToken:BannerToken_050_S13_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_051_S13_RacerZero": {
+ "templateId": "BannerToken:BannerToken_051_S13_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_052_S13_SandCastle": {
+ "templateId": "BannerToken:BannerToken_052_S13_SandCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_053_S13_SpaceWanderer": {
+ "templateId": "BannerToken:BannerToken_053_S13_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_054_S13_TacticalScuba": {
+ "templateId": "BannerToken:BannerToken_054_S13_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_055_S13_Yonezu": {
+ "templateId": "BannerToken:BannerToken_055_S13_Yonezu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_056_S14_HighTowerDate": {
+ "templateId": "BannerToken:BannerToken_056_S14_HighTowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_057_S14_HighTowerGrape": {
+ "templateId": "BannerToken:BannerToken_057_S14_HighTowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_058_S14_HighTowerHoneyDew": {
+ "templateId": "BannerToken:BannerToken_058_S14_HighTowerHoneyDew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_059_S14_HighTowerMango": {
+ "templateId": "BannerToken:BannerToken_059_S14_HighTowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_060_S14_HighTowerRadish": {
+ "templateId": "BannerToken:BannerToken_060_S14_HighTowerRadish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_061_S14_HighTowerSquash": {
+ "templateId": "BannerToken:BannerToken_061_S14_HighTowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_062_S14_HighTowerTapas": {
+ "templateId": "BannerToken:BannerToken_062_S14_HighTowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_063_S14_HighTowerTomato": {
+ "templateId": "BannerToken:BannerToken_063_S14_HighTowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_064_S14_HighTowerWasabi": {
+ "templateId": "BannerToken:BannerToken_064_S14_HighTowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_065_S14_PS_PlusPack_11": {
+ "templateId": "BannerToken:BannerToken_065_S14_PS_PlusPack_11",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_066_S15_AncientGladiator": {
+ "templateId": "BannerToken:BannerToken_066_S15_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_067_S15_Shapeshifter": {
+ "templateId": "BannerToken:BannerToken_067_S15_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_068_S15_Lexa": {
+ "templateId": "BannerToken:BannerToken_068_S15_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_069_S15_FutureSamurai": {
+ "templateId": "BannerToken:BannerToken_069_S15_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_070_S15_Flapjack": {
+ "templateId": "BannerToken:BannerToken_070_S15_Flapjack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_071_S15_SpaceFighter": {
+ "templateId": "BannerToken:BannerToken_071_S15_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_072_S15_CosmosA": {
+ "templateId": "BannerToken:BannerToken_072_S15_CosmosA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_073_S15_CosmosB": {
+ "templateId": "BannerToken:BannerToken_073_S15_CosmosB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_074_S15_CosmosC": {
+ "templateId": "BannerToken:BannerToken_074_S15_CosmosC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_075_S20_JourneyMentor": {
+ "templateId": "BannerToken:BannerToken_075_S20_JourneyMentor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_076_S20_Lyrical": {
+ "templateId": "BannerToken:BannerToken_076_S20_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_077_S20_NeonCatSpeed": {
+ "templateId": "BannerToken:BannerToken_077_S20_NeonCatSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW001_Starlight1": {
+ "templateId": "BannerToken:BannerToken_STW001_Starlight1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW002_Starlight5": {
+ "templateId": "BannerToken:BannerToken_STW002_Starlight5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW003_Starlight3": {
+ "templateId": "BannerToken:BannerToken_STW003_Starlight3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW004_Starlight4": {
+ "templateId": "BannerToken:BannerToken_STW004_Starlight4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW005_Starlight2": {
+ "templateId": "BannerToken:BannerToken_STW005_Starlight2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW006_Starlight6": {
+ "templateId": "BannerToken:BannerToken_STW006_Starlight6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_STW007_StarlightScience": {
+ "templateId": "BannerToken:BannerToken_STW007_StarlightScience",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_Badge_1": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_Badge_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_Badge_2": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_Badge_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_Badge_3": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_Badge_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_Badge_4": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_Badge_4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_Badge_5": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_Badge_5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_SeasonBanner1": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_SeasonBanner1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_SeasonBanner2": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_SeasonBanner2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "BannerToken:BannerToken_TBD_S13_SpraySweater": {
+ "templateId": "BannerToken:BannerToken_TBD_S13_SpraySweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_001_BlueSquire": {
+ "templateId": "AthenaBackpack:BID_001_BlueSquire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_002_RoyaleKnight": {
+ "templateId": "AthenaBackpack:BID_002_RoyaleKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_003_RedKnight": {
+ "templateId": "AthenaBackpack:BID_003_RedKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_004_BlackKnight": {
+ "templateId": "AthenaBackpack:BID_004_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_005_Raptor": {
+ "templateId": "AthenaBackpack:BID_005_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_006_SkiDude": {
+ "templateId": "AthenaBackpack:BID_006_SkiDude",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_007_SkiDude_USA": {
+ "templateId": "AthenaBackpack:BID_007_SkiDude_USA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_008_SkiDude_CAN": {
+ "templateId": "AthenaBackpack:BID_008_SkiDude_CAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_009_SkiDude_GBR": {
+ "templateId": "AthenaBackpack:BID_009_SkiDude_GBR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_010_SkiDude_FRA": {
+ "templateId": "AthenaBackpack:BID_010_SkiDude_FRA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_011_SkiDude_GER": {
+ "templateId": "AthenaBackpack:BID_011_SkiDude_GER",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_012_SkiDude_CHN": {
+ "templateId": "AthenaBackpack:BID_012_SkiDude_CHN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_013_SkiDude_KOR": {
+ "templateId": "AthenaBackpack:BID_013_SkiDude_KOR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_014_SkiGirl": {
+ "templateId": "AthenaBackpack:BID_014_SkiGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_015_SkiGirl_USA": {
+ "templateId": "AthenaBackpack:BID_015_SkiGirl_USA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_016_SkiGirl_CAN": {
+ "templateId": "AthenaBackpack:BID_016_SkiGirl_CAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_017_SkiGirl_GBR": {
+ "templateId": "AthenaBackpack:BID_017_SkiGirl_GBR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_018_SkiGirl_FRA": {
+ "templateId": "AthenaBackpack:BID_018_SkiGirl_FRA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_019_SkiGirl_GER": {
+ "templateId": "AthenaBackpack:BID_019_SkiGirl_GER",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_020_SkiGirl_CHN": {
+ "templateId": "AthenaBackpack:BID_020_SkiGirl_CHN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_021_SkiGirl_KOR": {
+ "templateId": "AthenaBackpack:BID_021_SkiGirl_KOR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_022_Cupid": {
+ "templateId": "AthenaBackpack:BID_022_Cupid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_023_Pinkbear": {
+ "templateId": "AthenaBackpack:BID_023_Pinkbear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_024_Space": {
+ "templateId": "AthenaBackpack:BID_024_Space",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_025_Tactical": {
+ "templateId": "AthenaBackpack:BID_025_Tactical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_026_Brite": {
+ "templateId": "AthenaBackpack:BID_026_Brite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_027_Scavenger": {
+ "templateId": "AthenaBackpack:BID_027_Scavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_028_SpaceBlack": {
+ "templateId": "AthenaBackpack:BID_028_SpaceBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_029_RetroGrey": {
+ "templateId": "AthenaBackpack:BID_029_RetroGrey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_030_TacticalRogue": {
+ "templateId": "AthenaBackpack:BID_030_TacticalRogue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_031_Dinosaur": {
+ "templateId": "AthenaBackpack:BID_031_Dinosaur",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_032_FounderMale": {
+ "templateId": "AthenaBackpack:BID_032_FounderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_033_FounderFemale": {
+ "templateId": "AthenaBackpack:BID_033_FounderFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_034_RockerPunk": {
+ "templateId": "AthenaBackpack:BID_034_RockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_035_Scathach": {
+ "templateId": "AthenaBackpack:BID_035_Scathach",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_036_Raven": {
+ "templateId": "AthenaBackpack:BID_036_Raven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_037_BunnyMale": {
+ "templateId": "AthenaBackpack:BID_037_BunnyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_038_BunnyFemale": {
+ "templateId": "AthenaBackpack:BID_038_BunnyFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_039_SpaceBlackFemale": {
+ "templateId": "AthenaBackpack:BID_039_SpaceBlackFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_040_Wukong": {
+ "templateId": "AthenaBackpack:BID_040_Wukong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_041_PajamaParty": {
+ "templateId": "AthenaBackpack:BID_041_PajamaParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_042_Fishhead": {
+ "templateId": "AthenaBackpack:BID_042_Fishhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_043_Pizza": {
+ "templateId": "AthenaBackpack:BID_043_Pizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_044_Robo": {
+ "templateId": "AthenaBackpack:BID_044_Robo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_045_TacticalJungle": {
+ "templateId": "AthenaBackpack:BID_045_TacticalJungle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_047_Candy": {
+ "templateId": "AthenaBackpack:BID_047_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_048_Graffiti": {
+ "templateId": "AthenaBackpack:BID_048_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_049_TacticalWoodland": {
+ "templateId": "AthenaBackpack:BID_049_TacticalWoodland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_050_Hazmat": {
+ "templateId": "AthenaBackpack:BID_050_Hazmat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_051_Merman": {
+ "templateId": "AthenaBackpack:BID_051_Merman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_052_HazmatFemale": {
+ "templateId": "AthenaBackpack:BID_052_HazmatFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_053_JailbirdMale": {
+ "templateId": "AthenaBackpack:BID_053_JailbirdMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_054_JailbirdFemale": {
+ "templateId": "AthenaBackpack:BID_054_JailbirdFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_055_PSBurnout": {
+ "templateId": "AthenaBackpack:BID_055_PSBurnout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_056_FighterPilot": {
+ "templateId": "AthenaBackpack:BID_056_FighterPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_057_Visitor": {
+ "templateId": "AthenaBackpack:BID_057_Visitor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_058_DarkEagle": {
+ "templateId": "AthenaBackpack:BID_058_DarkEagle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_059_WWIIPilot": {
+ "templateId": "AthenaBackpack:BID_059_WWIIPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_060_DarkNinja": {
+ "templateId": "AthenaBackpack:BID_060_DarkNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_061_CarbideOrange": {
+ "templateId": "AthenaBackpack:BID_061_CarbideOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_062_Gumshoe": {
+ "templateId": "AthenaBackpack:BID_062_Gumshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_063_CuChulainn": {
+ "templateId": "AthenaBackpack:BID_063_CuChulainn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_064_FuzzyBearInd": {
+ "templateId": "AthenaBackpack:BID_064_FuzzyBearInd",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_065_CarbideBlack": {
+ "templateId": "AthenaBackpack:BID_065_CarbideBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_066_SpeedyRed": {
+ "templateId": "AthenaBackpack:BID_066_SpeedyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_067_GumshoeFemale": {
+ "templateId": "AthenaBackpack:BID_067_GumshoeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_068_GumshoeDark": {
+ "templateId": "AthenaBackpack:BID_068_GumshoeDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_069_DecoMale": {
+ "templateId": "AthenaBackpack:BID_069_DecoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_070_DecoFemale": {
+ "templateId": "AthenaBackpack:BID_070_DecoFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_071_VikingFemale": {
+ "templateId": "AthenaBackpack:BID_071_VikingFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_072_VikingMale": {
+ "templateId": "AthenaBackpack:BID_072_VikingMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_073_DarkViking": {
+ "templateId": "AthenaBackpack:BID_073_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_074_LifeguardFemale": {
+ "templateId": "AthenaBackpack:BID_074_LifeguardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_075_TacticalBadass": {
+ "templateId": "AthenaBackpack:BID_075_TacticalBadass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_076_Shark": {
+ "templateId": "AthenaBackpack:BID_076_Shark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_077_WeGame": {
+ "templateId": "AthenaBackpack:BID_077_WeGame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_078_StreetRacerCobraFemale": {
+ "templateId": "AthenaBackpack:BID_078_StreetRacerCobraFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_079_Penguin": {
+ "templateId": "AthenaBackpack:BID_079_Penguin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_080_StreetRacerCobraMale": {
+ "templateId": "AthenaBackpack:BID_080_StreetRacerCobraMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_081_ScubaMale": {
+ "templateId": "AthenaBackpack:BID_081_ScubaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_082_ScubaFemale": {
+ "templateId": "AthenaBackpack:BID_082_ScubaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_083_LifeguardMale": {
+ "templateId": "AthenaBackpack:BID_083_LifeguardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_084_Birthday2018": {
+ "templateId": "AthenaBackpack:BID_084_Birthday2018",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_085_ModernMilitary": {
+ "templateId": "AthenaBackpack:BID_085_ModernMilitary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_086_ExerciseFemale": {
+ "templateId": "AthenaBackpack:BID_086_ExerciseFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_087_ExerciseMale": {
+ "templateId": "AthenaBackpack:BID_087_ExerciseMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_088_SushiChefMale": {
+ "templateId": "AthenaBackpack:BID_088_SushiChefMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_089_StreetRacerWhiteFemale": {
+ "templateId": "AthenaBackpack:BID_089_StreetRacerWhiteFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_090_StreetRacerWhiteMale": {
+ "templateId": "AthenaBackpack:BID_090_StreetRacerWhiteMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_091_DurrrBurgerHero": {
+ "templateId": "AthenaBackpack:BID_091_DurrrBurgerHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_092_FuzzyBearPanda": {
+ "templateId": "AthenaBackpack:BID_092_FuzzyBearPanda",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_093_HippieMale": {
+ "templateId": "AthenaBackpack:BID_093_HippieMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_094_HippieFemale": {
+ "templateId": "AthenaBackpack:BID_094_HippieFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_095_RavenQuillFemale": {
+ "templateId": "AthenaBackpack:BID_095_RavenQuillFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_096_BikerMale": {
+ "templateId": "AthenaBackpack:BID_096_BikerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_097_BikerFemale": {
+ "templateId": "AthenaBackpack:BID_097_BikerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_098_BlueSamuraiMale": {
+ "templateId": "AthenaBackpack:BID_098_BlueSamuraiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_099_BlueSamuraiFemale": {
+ "templateId": "AthenaBackpack:BID_099_BlueSamuraiFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_100_DarkPaintballer": {
+ "templateId": "AthenaBackpack:BID_100_DarkPaintballer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_101_BlingFemale": {
+ "templateId": "AthenaBackpack:BID_101_BlingFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_102_Buckles": {
+ "templateId": "AthenaBackpack:BID_102_Buckles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_103_Clawed": {
+ "templateId": "AthenaBackpack:BID_103_Clawed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_104_YellowZip": {
+ "templateId": "AthenaBackpack:BID_104_YellowZip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_105_GhostPortal": {
+ "templateId": "AthenaBackpack:BID_105_GhostPortal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_106_GarageBandMale": {
+ "templateId": "AthenaBackpack:BID_106_GarageBandMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_107_GarageBandFemale": {
+ "templateId": "AthenaBackpack:BID_107_GarageBandFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_108_Blingmale": {
+ "templateId": "AthenaBackpack:BID_108_Blingmale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_108_HacivatMale": {
+ "templateId": "AthenaBackpack:BID_108_HacivatMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_109_MedicMale": {
+ "templateId": "AthenaBackpack:BID_109_MedicMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_110_MedicFemale": {
+ "templateId": "AthenaBackpack:BID_110_MedicFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_111_ClownFemale": {
+ "templateId": "AthenaBackpack:BID_111_ClownFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_112_ClownMale": {
+ "templateId": "AthenaBackpack:BID_112_ClownMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_113_DarkVikingFemale": {
+ "templateId": "AthenaBackpack:BID_113_DarkVikingFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_114_ModernMilitaryRed": {
+ "templateId": "AthenaBackpack:BID_114_ModernMilitaryRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_115_DieselpunkMale": {
+ "templateId": "AthenaBackpack:BID_115_DieselpunkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_116_DieselpunkFemale": {
+ "templateId": "AthenaBackpack:BID_116_DieselpunkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_117_OctoberfestMale": {
+ "templateId": "AthenaBackpack:BID_117_OctoberfestMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_118_OctoberfestFemale": {
+ "templateId": "AthenaBackpack:BID_118_OctoberfestFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_119_VampireFemale": {
+ "templateId": "AthenaBackpack:BID_119_VampireFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_120_Werewolf": {
+ "templateId": "AthenaBackpack:BID_120_Werewolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_121_RedRiding": {
+ "templateId": "AthenaBackpack:BID_121_RedRiding",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_122_HalloweenTomato": {
+ "templateId": "AthenaBackpack:BID_122_HalloweenTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_123_FortniteDJ": {
+ "templateId": "AthenaBackpack:BID_123_FortniteDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_124_ScarecrowMale": {
+ "templateId": "AthenaBackpack:BID_124_ScarecrowMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_125_ScarecrowFemale": {
+ "templateId": "AthenaBackpack:BID_125_ScarecrowFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_126_DarkBomber": {
+ "templateId": "AthenaBackpack:BID_126_DarkBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_127_PlagueMale": {
+ "templateId": "AthenaBackpack:BID_127_PlagueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_128_PlagueFemale": {
+ "templateId": "AthenaBackpack:BID_128_PlagueFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_129_PumpkinSlice": {
+ "templateId": "AthenaBackpack:BID_129_PumpkinSlice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_130_VampireMale02": {
+ "templateId": "AthenaBackpack:BID_130_VampireMale02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_131_BlackWidowfemale": {
+ "templateId": "AthenaBackpack:BID_131_BlackWidowfemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_132_BlackWidowMale": {
+ "templateId": "AthenaBackpack:BID_132_BlackWidowMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_133_GuanYu": {
+ "templateId": "AthenaBackpack:BID_133_GuanYu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_134_MilitaryFashion": {
+ "templateId": "AthenaBackpack:BID_134_MilitaryFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_135_MuertosFemale": {
+ "templateId": "AthenaBackpack:BID_135_MuertosFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_136_MuertosMale": {
+ "templateId": "AthenaBackpack:BID_136_MuertosMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_137_EvilCowboy": {
+ "templateId": "AthenaBackpack:BID_137_EvilCowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_138_Celestial": {
+ "templateId": "AthenaBackpack:BID_138_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_139_FuzzyBearHalloween": {
+ "templateId": "AthenaBackpack:BID_139_FuzzyBearHalloween",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_140_StreetOpsMale": {
+ "templateId": "AthenaBackpack:BID_140_StreetOpsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_141_StreetOpsFemale": {
+ "templateId": "AthenaBackpack:BID_141_StreetOpsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_142_RaptorArcticCamo": {
+ "templateId": "AthenaBackpack:BID_142_RaptorArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_142_SamuraiUltra": {
+ "templateId": "AthenaBackpack:BID_142_SamuraiUltra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_143_MadCommanderMale": {
+ "templateId": "AthenaBackpack:BID_143_MadCommanderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_144_MadCommanderFemale": {
+ "templateId": "AthenaBackpack:BID_144_MadCommanderFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_145_AnimalJacketsMale": {
+ "templateId": "AthenaBackpack:BID_145_AnimalJacketsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_146_AnimalJacketsFemale": {
+ "templateId": "AthenaBackpack:BID_146_AnimalJacketsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_147_LilKev": {
+ "templateId": "AthenaBackpack:BID_147_LilKev",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_148_RobotRed": {
+ "templateId": "AthenaBackpack:BID_148_RobotRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_149_Wizard": {
+ "templateId": "AthenaBackpack:BID_149_Wizard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_150_Witch": {
+ "templateId": "AthenaBackpack:BID_150_Witch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_151_SushiChefFemale": {
+ "templateId": "AthenaBackpack:BID_151_SushiChefFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_152_HornedMaskMale": {
+ "templateId": "AthenaBackpack:BID_152_HornedMaskMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_153_HornedMaskFemale": {
+ "templateId": "AthenaBackpack:BID_153_HornedMaskFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_154_Feathers": {
+ "templateId": "AthenaBackpack:BID_154_Feathers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_155_SniperHoodMale": {
+ "templateId": "AthenaBackpack:BID_155_SniperHoodMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_156_SniperHoodFemale": {
+ "templateId": "AthenaBackpack:BID_156_SniperHoodFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_157_MothMale": {
+ "templateId": "AthenaBackpack:BID_157_MothMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_158_ArcticSniperMale": {
+ "templateId": "AthenaBackpack:BID_158_ArcticSniperMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_160_TacticalSantaMale": {
+ "templateId": "AthenaBackpack:BID_160_TacticalSantaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_161_SnowBoardFemale": {
+ "templateId": "AthenaBackpack:BID_161_SnowBoardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_162_YetiMale": {
+ "templateId": "AthenaBackpack:BID_162_YetiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_163_IceKing": {
+ "templateId": "AthenaBackpack:BID_163_IceKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_164_SnowmanMale": {
+ "templateId": "AthenaBackpack:BID_164_SnowmanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_165_BlueBadassFemale": {
+ "templateId": "AthenaBackpack:BID_165_BlueBadassFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_166_RavenWinterMale": {
+ "templateId": "AthenaBackpack:BID_166_RavenWinterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_167_RedKnightWinterFemale": {
+ "templateId": "AthenaBackpack:BID_167_RedKnightWinterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_168_CupidWinterMale": {
+ "templateId": "AthenaBackpack:BID_168_CupidWinterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_169_MathMale": {
+ "templateId": "AthenaBackpack:BID_169_MathMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_170_MathFemale": {
+ "templateId": "AthenaBackpack:BID_170_MathFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_171_Rhino": {
+ "templateId": "AthenaBackpack:BID_171_Rhino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_175_Prisoner": {
+ "templateId": "AthenaBackpack:BID_175_Prisoner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_176_NautilusMale": {
+ "templateId": "AthenaBackpack:BID_176_NautilusMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_177_NautilusFemale": {
+ "templateId": "AthenaBackpack:BID_177_NautilusFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_178_Angel": {
+ "templateId": "AthenaBackpack:BID_178_Angel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_179_DemonMale": {
+ "templateId": "AthenaBackpack:BID_179_DemonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_180_IceMaiden": {
+ "templateId": "AthenaBackpack:BID_180_IceMaiden",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_181_SnowNinjaMale": {
+ "templateId": "AthenaBackpack:BID_181_SnowNinjaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_182_NutcrackerMale": {
+ "templateId": "AthenaBackpack:BID_182_NutcrackerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_183_NutcrackerFemale": {
+ "templateId": "AthenaBackpack:BID_183_NutcrackerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_184_SnowFairyFemale": {
+ "templateId": "AthenaBackpack:BID_184_SnowFairyFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_185_GnomeMale": {
+ "templateId": "AthenaBackpack:BID_185_GnomeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_186_GingerbreadMale": {
+ "templateId": "AthenaBackpack:BID_186_GingerbreadMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_187_GingerbreadFemale": {
+ "templateId": "AthenaBackpack:BID_187_GingerbreadFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_188_FortniteDJFemale": {
+ "templateId": "AthenaBackpack:BID_188_FortniteDJFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_189_StreetGothMale": {
+ "templateId": "AthenaBackpack:BID_189_StreetGothMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_190_StreetGothFemale": {
+ "templateId": "AthenaBackpack:BID_190_StreetGothFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_191_WinterGhoulMale": {
+ "templateId": "AthenaBackpack:BID_191_WinterGhoulMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_192_WinterHolidayFemale": {
+ "templateId": "AthenaBackpack:BID_192_WinterHolidayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_193_TeriyakiFishMale": {
+ "templateId": "AthenaBackpack:BID_193_TeriyakiFishMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_194_Krampus": {
+ "templateId": "AthenaBackpack:BID_194_Krampus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_195_FunkOpsFemale": {
+ "templateId": "AthenaBackpack:BID_195_FunkOpsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_196_BarbarianMale": {
+ "templateId": "AthenaBackpack:BID_196_BarbarianMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_197_BarbarianFemale": {
+ "templateId": "AthenaBackpack:BID_197_BarbarianFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_198_TechOps": {
+ "templateId": "AthenaBackpack:BID_198_TechOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_199_IceQueen": {
+ "templateId": "AthenaBackpack:BID_199_IceQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_200_SnowNinjaFemale": {
+ "templateId": "AthenaBackpack:BID_200_SnowNinjaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_201_WavyManMale": {
+ "templateId": "AthenaBackpack:BID_201_WavyManMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_202_WavyManFemale": {
+ "templateId": "AthenaBackpack:BID_202_WavyManFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_203_BlueMystery": {
+ "templateId": "AthenaBackpack:BID_203_BlueMystery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_204_TennisFemale": {
+ "templateId": "AthenaBackpack:BID_204_TennisFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_205_ScrapyardMale": {
+ "templateId": "AthenaBackpack:BID_205_ScrapyardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_206_ScrapyardFemale": {
+ "templateId": "AthenaBackpack:BID_206_ScrapyardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_207_DumplingMan": {
+ "templateId": "AthenaBackpack:BID_207_DumplingMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_208_CupidDarkMale": {
+ "templateId": "AthenaBackpack:BID_208_CupidDarkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_209_RobotTroubleMale": {
+ "templateId": "AthenaBackpack:BID_209_RobotTroubleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_210_RobotTroubleFemale": {
+ "templateId": "AthenaBackpack:BID_210_RobotTroubleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_211_SkullBrite": {
+ "templateId": "AthenaBackpack:BID_211_SkullBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_213_IceCream": {
+ "templateId": "AthenaBackpack:BID_213_IceCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_214_LoveLlama": {
+ "templateId": "AthenaBackpack:BID_214_LoveLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_215_MasterKey": {
+ "templateId": "AthenaBackpack:BID_215_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_216_PirateProgressive": {
+ "templateId": "AthenaBackpack:BID_216_PirateProgressive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_217_ShinyFemale": {
+ "templateId": "AthenaBackpack:BID_217_ShinyFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_218_Medusa": {
+ "templateId": "AthenaBackpack:BID_218_Medusa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_219_FarmerMale": {
+ "templateId": "AthenaBackpack:BID_219_FarmerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_220_FarmerFemale": {
+ "templateId": "AthenaBackpack:BID_220_FarmerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_221_AztecMale": {
+ "templateId": "AthenaBackpack:BID_221_AztecMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_222_AztecFemale": {
+ "templateId": "AthenaBackpack:BID_222_AztecFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_223_OrangeCamo": {
+ "templateId": "AthenaBackpack:BID_223_OrangeCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_224_TechOpsBlue": {
+ "templateId": "AthenaBackpack:BID_224_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_225_BandageNinjaMale": {
+ "templateId": "AthenaBackpack:BID_225_BandageNinjaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_226_BandageNinjaFemale": {
+ "templateId": "AthenaBackpack:BID_226_BandageNinjaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_227_SciOpsFemale": {
+ "templateId": "AthenaBackpack:BID_227_SciOpsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_228_SciOpsMale": {
+ "templateId": "AthenaBackpack:BID_228_SciOpsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_229_LuckyRiderMale": {
+ "templateId": "AthenaBackpack:BID_229_LuckyRiderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_230_TropicalMale": {
+ "templateId": "AthenaBackpack:BID_230_TropicalMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_231_TropicalFemale": {
+ "templateId": "AthenaBackpack:BID_231_TropicalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_232_Leprechaun": {
+ "templateId": "AthenaBackpack:BID_232_Leprechaun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_233_DevilRock": {
+ "templateId": "AthenaBackpack:BID_233_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_234_SpeedyMidnight": {
+ "templateId": "AthenaBackpack:BID_234_SpeedyMidnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_235_Heist": {
+ "templateId": "AthenaBackpack:BID_235_Heist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_236_Pirate01Female": {
+ "templateId": "AthenaBackpack:BID_236_Pirate01Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_238_Pirate02Male": {
+ "templateId": "AthenaBackpack:BID_238_Pirate02Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_240_DarkShamanMale": {
+ "templateId": "AthenaBackpack:BID_240_DarkShamanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_241_DarkShamanFemale": {
+ "templateId": "AthenaBackpack:BID_241_DarkShamanFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_242_FurnaceFace": {
+ "templateId": "AthenaBackpack:BID_242_FurnaceFace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_243_BattleHoundFire": {
+ "templateId": "AthenaBackpack:BID_243_BattleHoundFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_244_DarkVikingFire": {
+ "templateId": "AthenaBackpack:BID_244_DarkVikingFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_245_BaseballKitbashFemale": {
+ "templateId": "AthenaBackpack:BID_245_BaseballKitbashFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_246_BaseballKitbashMale": {
+ "templateId": "AthenaBackpack:BID_246_BaseballKitbashMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_247_StreetAssassin": {
+ "templateId": "AthenaBackpack:BID_247_StreetAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_248_Pilots": {
+ "templateId": "AthenaBackpack:BID_248_Pilots",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_249_StreetOpsStealth": {
+ "templateId": "AthenaBackpack:BID_249_StreetOpsStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_250_TheBomb": {
+ "templateId": "AthenaBackpack:BID_250_TheBomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_251_SpaceBunny": {
+ "templateId": "AthenaBackpack:BID_251_SpaceBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_252_EvilBunny": {
+ "templateId": "AthenaBackpack:BID_252_EvilBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_253_HoppityHeist": {
+ "templateId": "AthenaBackpack:BID_253_HoppityHeist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_254_ShinyMale": {
+ "templateId": "AthenaBackpack:BID_254_ShinyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_255_MoonlightAssassin": {
+ "templateId": "AthenaBackpack:BID_255_MoonlightAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_256_ShatterFly": {
+ "templateId": "AthenaBackpack:BID_256_ShatterFly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_257_Swashbuckler": {
+ "templateId": "AthenaBackpack:BID_257_Swashbuckler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_258_AshtonBoardwalk": {
+ "templateId": "AthenaBackpack:BID_258_AshtonBoardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_259_Ashton_SaltLake": {
+ "templateId": "AthenaBackpack:BID_259_Ashton_SaltLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_261_Rooster": {
+ "templateId": "AthenaBackpack:BID_261_Rooster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_262_BountyHunterFemale": {
+ "templateId": "AthenaBackpack:BID_262_BountyHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_263_Masako": {
+ "templateId": "AthenaBackpack:BID_263_Masako",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_264_StormTracker": {
+ "templateId": "AthenaBackpack:BID_264_StormTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_265_BattleSuit": {
+ "templateId": "AthenaBackpack:BID_265_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_266_BunkerMan": {
+ "templateId": "AthenaBackpack:BID_266_BunkerMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_267_CyberScavengerMale": {
+ "templateId": "AthenaBackpack:BID_267_CyberScavengerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_268_CyberScavengerFemale": {
+ "templateId": "AthenaBackpack:BID_268_CyberScavengerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_269_RaptorFemale": {
+ "templateId": "AthenaBackpack:BID_269_RaptorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_270_StreetDemon": {
+ "templateId": "AthenaBackpack:BID_270_StreetDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_271_AssassinSuitMale": {
+ "templateId": "AthenaBackpack:BID_271_AssassinSuitMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_272_AssassinSuitFemale": {
+ "templateId": "AthenaBackpack:BID_272_AssassinSuitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_273_AssassinSuitCoin": {
+ "templateId": "AthenaBackpack:BID_273_AssassinSuitCoin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_275_Geisha": {
+ "templateId": "AthenaBackpack:BID_275_Geisha",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_276_Pug": {
+ "templateId": "AthenaBackpack:BID_276_Pug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_277_WhiteTiger": {
+ "templateId": "AthenaBackpack:BID_277_WhiteTiger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_278_VigilanteBoard": {
+ "templateId": "AthenaBackpack:BID_278_VigilanteBoard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Mat26",
+ "Mat27",
+ "Mat28",
+ "Mat29"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_279_CyberRunner": {
+ "templateId": "AthenaBackpack:BID_279_CyberRunner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_280_DemonHunterFemale": {
+ "templateId": "AthenaBackpack:BID_280_DemonHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_281_DemonHunterMale": {
+ "templateId": "AthenaBackpack:BID_281_DemonHunterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_282_UrbanScavenger": {
+ "templateId": "AthenaBackpack:BID_282_UrbanScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_283_StormSoldier": {
+ "templateId": "AthenaBackpack:BID_283_StormSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_284_NeonLines": {
+ "templateId": "AthenaBackpack:BID_284_NeonLines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_285_SkullBriteEclipse": {
+ "templateId": "AthenaBackpack:BID_285_SkullBriteEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_286_WinterGhoulMaleEclipse": {
+ "templateId": "AthenaBackpack:BID_286_WinterGhoulMaleEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_287_AztecFemaleEclipse": {
+ "templateId": "AthenaBackpack:BID_287_AztecFemaleEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_288_CyberScavengerFemaleBlue": {
+ "templateId": "AthenaBackpack:BID_288_CyberScavengerFemaleBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_289_Banner": {
+ "templateId": "AthenaBackpack:BID_289_Banner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_290_Butterfly": {
+ "templateId": "AthenaBackpack:BID_290_Butterfly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_291_Caterpillar": {
+ "templateId": "AthenaBackpack:BID_291_Caterpillar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_292_CyberFuFemale": {
+ "templateId": "AthenaBackpack:BID_292_CyberFuFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_293_GlowBroFemale": {
+ "templateId": "AthenaBackpack:BID_293_GlowBroFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_294_GlowBroMale": {
+ "templateId": "AthenaBackpack:BID_294_GlowBroMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_295_Jellyfish": {
+ "templateId": "AthenaBackpack:BID_295_Jellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_296_Sarong": {
+ "templateId": "AthenaBackpack:BID_296_Sarong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_297_SpaceGirl": {
+ "templateId": "AthenaBackpack:BID_297_SpaceGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_298_ZodiacFemale": {
+ "templateId": "AthenaBackpack:BID_298_ZodiacFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_299_BriteBomberSummer": {
+ "templateId": "AthenaBackpack:BID_299_BriteBomberSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_300_DriftSummer": {
+ "templateId": "AthenaBackpack:BID_300_DriftSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_301_HeistSummer": {
+ "templateId": "AthenaBackpack:BID_301_HeistSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_302_Hairy": {
+ "templateId": "AthenaBackpack:BID_302_Hairy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_303_BananaSmoothie": {
+ "templateId": "AthenaBackpack:BID_303_BananaSmoothie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_304_Duck": {
+ "templateId": "AthenaBackpack:BID_304_Duck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_305_StarAndStripesFemale": {
+ "templateId": "AthenaBackpack:BID_305_StarAndStripesFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_306_StarAndStripesMale": {
+ "templateId": "AthenaBackpack:BID_306_StarAndStripesMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_307_Bani": {
+ "templateId": "AthenaBackpack:BID_307_Bani",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_308_CyberKarateFemale": {
+ "templateId": "AthenaBackpack:BID_308_CyberKarateFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_309_CyberKarateMale": {
+ "templateId": "AthenaBackpack:BID_309_CyberKarateMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_310_Lasagna": {
+ "templateId": "AthenaBackpack:BID_310_Lasagna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_311_Multibot": {
+ "templateId": "AthenaBackpack:BID_311_Multibot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_312_Stealth": {
+ "templateId": "AthenaBackpack:BID_312_Stealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_313_Bubblegum": {
+ "templateId": "AthenaBackpack:BID_313_Bubblegum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_314_Geode": {
+ "templateId": "AthenaBackpack:BID_314_Geode",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_315_PizzaPit": {
+ "templateId": "AthenaBackpack:BID_315_PizzaPit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_316_GraffitiRemix": {
+ "templateId": "AthenaBackpack:BID_316_GraffitiRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_317_KnightRemix": {
+ "templateId": "AthenaBackpack:BID_317_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_318_SparkleRemix": {
+ "templateId": "AthenaBackpack:BID_318_SparkleRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_319_StreetRacerDriftRemix": {
+ "templateId": "AthenaBackpack:BID_319_StreetRacerDriftRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_320_RustLordRemix": {
+ "templateId": "AthenaBackpack:BID_320_RustLordRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_321_RustLordRemixScavenger": {
+ "templateId": "AthenaBackpack:BID_321_RustLordRemixScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_322_VoyagerRemix": {
+ "templateId": "AthenaBackpack:BID_322_VoyagerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_323_FunkOpsRemix": {
+ "templateId": "AthenaBackpack:BID_323_FunkOpsRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_324_BlueBadass": {
+ "templateId": "AthenaBackpack:BID_324_BlueBadass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_325_BoneWasp": {
+ "templateId": "AthenaBackpack:BID_325_BoneWasp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_326_Bronto": {
+ "templateId": "AthenaBackpack:BID_326_Bronto",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_327_Meteorite": {
+ "templateId": "AthenaBackpack:BID_327_Meteorite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_328_WildWest": {
+ "templateId": "AthenaBackpack:BID_328_WildWest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_329_WildWestFemale": {
+ "templateId": "AthenaBackpack:BID_329_WildWestFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_330_AstronautEvilUpgrade": {
+ "templateId": "AthenaBackpack:BID_330_AstronautEvilUpgrade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_331_DarkNinjaWhite": {
+ "templateId": "AthenaBackpack:BID_331_DarkNinjaWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_332_FrostMystery": {
+ "templateId": "AthenaBackpack:BID_332_FrostMystery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_333_Reverb": {
+ "templateId": "AthenaBackpack:BID_333_Reverb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_334_BannerMale": {
+ "templateId": "AthenaBackpack:BID_334_BannerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_335_Lopex": {
+ "templateId": "AthenaBackpack:BID_335_Lopex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_336_MascotMilitiaBurger": {
+ "templateId": "AthenaBackpack:BID_336_MascotMilitiaBurger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_337_MascotMilitiaTomato": {
+ "templateId": "AthenaBackpack:BID_337_MascotMilitiaTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_338_StarWalker": {
+ "templateId": "AthenaBackpack:BID_338_StarWalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_339_Syko": {
+ "templateId": "AthenaBackpack:BID_339_Syko",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_340_WiseMaster": {
+ "templateId": "AthenaBackpack:BID_340_WiseMaster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_341_AngelEclipse": {
+ "templateId": "AthenaBackpack:BID_341_AngelEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_342_LemonLime": {
+ "templateId": "AthenaBackpack:BID_342_LemonLime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_343_CubeRedKnight": {
+ "templateId": "AthenaBackpack:BID_343_CubeRedKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_344_CubeWildCard": {
+ "templateId": "AthenaBackpack:BID_344_CubeWildCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_345_ToxicKitty": {
+ "templateId": "AthenaBackpack:BID_345_ToxicKitty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_346_BlackWidowRogue": {
+ "templateId": "AthenaBackpack:BID_346_BlackWidowRogue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_347_DarkEagleFire": {
+ "templateId": "AthenaBackpack:BID_347_DarkEagleFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_348_PaddedArmor": {
+ "templateId": "AthenaBackpack:BID_348_PaddedArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_349_RaptorBlackOps": {
+ "templateId": "AthenaBackpack:BID_349_RaptorBlackOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_350_TacticalBiker": {
+ "templateId": "AthenaBackpack:BID_350_TacticalBiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_351_FutureBikerWhite": {
+ "templateId": "AthenaBackpack:BID_351_FutureBikerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_352_CupidFemale": {
+ "templateId": "AthenaBackpack:BID_352_CupidFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_353_StreetGothCandy": {
+ "templateId": "AthenaBackpack:BID_353_StreetGothCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_354_StreetFashionRed": {
+ "templateId": "AthenaBackpack:BID_354_StreetFashionRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_355_Jumpstart": {
+ "templateId": "AthenaBackpack:BID_355_Jumpstart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_356_Punchy": {
+ "templateId": "AthenaBackpack:BID_356_Punchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_357_Sleepytime": {
+ "templateId": "AthenaBackpack:BID_357_Sleepytime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_358_StreetUrchin": {
+ "templateId": "AthenaBackpack:BID_358_StreetUrchin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_359_MeteorManRemix": {
+ "templateId": "AthenaBackpack:BID_359_MeteorManRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_360_BlackMondayKansas_VCZ9M": {
+ "templateId": "AthenaBackpack:BID_360_BlackMondayKansas_VCZ9M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_361_BlackMondayFemale_R0P2N": {
+ "templateId": "AthenaBackpack:BID_361_BlackMondayFemale_R0P2N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_362_BlackMondayHouston_2I53G": {
+ "templateId": "AthenaBackpack:BID_362_BlackMondayHouston_2I53G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_363_Kurohomura": {
+ "templateId": "AthenaBackpack:BID_363_Kurohomura",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_364_LlamaHero": {
+ "templateId": "AthenaBackpack:BID_364_LlamaHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_365_MascotMilitiaCuddle": {
+ "templateId": "AthenaBackpack:BID_365_MascotMilitiaCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_367_TacticalFishermanMale": {
+ "templateId": "AthenaBackpack:BID_367_TacticalFishermanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_368_RockClimber": {
+ "templateId": "AthenaBackpack:BID_368_RockClimber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_369_CrazyEight": {
+ "templateId": "AthenaBackpack:BID_369_CrazyEight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_370_RebirthMedic": {
+ "templateId": "AthenaBackpack:BID_370_RebirthMedic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_371_Sheath": {
+ "templateId": "AthenaBackpack:BID_371_Sheath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_372_Viper": {
+ "templateId": "AthenaBackpack:BID_372_Viper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_373_HauntLensFlare": {
+ "templateId": "AthenaBackpack:BID_373_HauntLensFlare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_374_CubeRockerPunk_Female": {
+ "templateId": "AthenaBackpack:BID_374_CubeRockerPunk_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_375_BulletBlueFemale": {
+ "templateId": "AthenaBackpack:BID_375_BulletBlueFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_376_CODSquad_Plaid": {
+ "templateId": "AthenaBackpack:BID_376_CODSquad_Plaid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_377_CODSquad_Plaid_Female": {
+ "templateId": "AthenaBackpack:BID_377_CODSquad_Plaid_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_378_FishermanFemale": {
+ "templateId": "AthenaBackpack:BID_378_FishermanFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_379_RedRidingRemix": {
+ "templateId": "AthenaBackpack:BID_379_RedRidingRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_380_CuddleTeamDark": {
+ "templateId": "AthenaBackpack:BID_380_CuddleTeamDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_381_RustyRaiderMotor": {
+ "templateId": "AthenaBackpack:BID_381_RustyRaiderMotor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_382_DarkDinoMale": {
+ "templateId": "AthenaBackpack:BID_382_DarkDinoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_383_DarkDinoFemale": {
+ "templateId": "AthenaBackpack:BID_383_DarkDinoFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_384_NoshHunter": {
+ "templateId": "AthenaBackpack:BID_384_NoshHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_385_Nosh": {
+ "templateId": "AthenaBackpack:BID_385_Nosh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_386_FlowerSkeletonFemale": {
+ "templateId": "AthenaBackpack:BID_386_FlowerSkeletonFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_387_PunkDevil": {
+ "templateId": "AthenaBackpack:BID_387_PunkDevil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_388_DevilRockMale": {
+ "templateId": "AthenaBackpack:BID_388_DevilRockMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_389_GoatRobe": {
+ "templateId": "AthenaBackpack:BID_389_GoatRobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_390_SoccerZombieMale": {
+ "templateId": "AthenaBackpack:BID_390_SoccerZombieMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_391_SoccerZombieFemale": {
+ "templateId": "AthenaBackpack:BID_391_SoccerZombieFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_392_Freak": {
+ "templateId": "AthenaBackpack:BID_392_Freak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_393_GhoulTrooper": {
+ "templateId": "AthenaBackpack:BID_393_GhoulTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_394_Mastermind": {
+ "templateId": "AthenaBackpack:BID_394_Mastermind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_395_Phantom": {
+ "templateId": "AthenaBackpack:BID_395_Phantom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_396_RaptorGlow": {
+ "templateId": "AthenaBackpack:BID_396_RaptorGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_397_SkeletonHunter": {
+ "templateId": "AthenaBackpack:BID_397_SkeletonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_398_Palespooky": {
+ "templateId": "AthenaBackpack:BID_398_Palespooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_399_SpookyNeon": {
+ "templateId": "AthenaBackpack:BID_399_SpookyNeon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_400_HalloweenAlt": {
+ "templateId": "AthenaBackpack:BID_400_HalloweenAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_401_Razor": {
+ "templateId": "AthenaBackpack:BID_401_Razor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_402_TourBus": {
+ "templateId": "AthenaBackpack:BID_402_TourBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_403_JetSkiFemale": {
+ "templateId": "AthenaBackpack:BID_403_JetSkiFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_404_JetSkiMale": {
+ "templateId": "AthenaBackpack:BID_404_JetSkiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_405_ModernWitch": {
+ "templateId": "AthenaBackpack:BID_405_ModernWitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_406_Submariner": {
+ "templateId": "AthenaBackpack:BID_406_Submariner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_407_ShiitakeShaolin": {
+ "templateId": "AthenaBackpack:BID_407_ShiitakeShaolin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_408_WeepingWoods": {
+ "templateId": "AthenaBackpack:BID_408_WeepingWoods",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_409_StreetOpsPink": {
+ "templateId": "AthenaBackpack:BID_409_StreetOpsPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_410_ShirtlessWarpaint": {
+ "templateId": "AthenaBackpack:BID_410_ShirtlessWarpaint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_411_BaneFemale": {
+ "templateId": "AthenaBackpack:BID_411_BaneFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_412_CavalryBandit": {
+ "templateId": "AthenaBackpack:BID_412_CavalryBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_413_ForestQueen": {
+ "templateId": "AthenaBackpack:BID_413_ForestQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_414_ForestDwellerMale": {
+ "templateId": "AthenaBackpack:BID_414_ForestDwellerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_415_TechLlama": {
+ "templateId": "AthenaBackpack:BID_415_TechLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_416_BigChuggus": {
+ "templateId": "AthenaBackpack:BID_416_BigChuggus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_417_BoneSnake": {
+ "templateId": "AthenaBackpack:BID_417_BoneSnake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_418_BulletBlueMale": {
+ "templateId": "AthenaBackpack:BID_418_BulletBlueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_419_Frogman": {
+ "templateId": "AthenaBackpack:BID_419_Frogman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_421_TeriyakiWarrior": {
+ "templateId": "AthenaBackpack:BID_421_TeriyakiWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_422_SnufflesLeader": {
+ "templateId": "AthenaBackpack:BID_422_SnufflesLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_423_HolidayTime": {
+ "templateId": "AthenaBackpack:BID_423_HolidayTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_424_SnowGlobe": {
+ "templateId": "AthenaBackpack:BID_424_SnowGlobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_425_Kane": {
+ "templateId": "AthenaBackpack:BID_425_Kane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_426_GalileoKayak_NS67T": {
+ "templateId": "AthenaBackpack:BID_426_GalileoKayak_NS67T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_427_GalileoSled_ZDWOV": {
+ "templateId": "AthenaBackpack:BID_427_GalileoSled_ZDWOV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_428_GalileoFerry_28UZ3": {
+ "templateId": "AthenaBackpack:BID_428_GalileoFerry_28UZ3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_429_GalileoRocket_ZD0AF": {
+ "templateId": "AthenaBackpack:BID_429_GalileoRocket_ZD0AF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_430_GalileoSpeedBoat_9RXE3": {
+ "templateId": "AthenaBackpack:BID_430_GalileoSpeedBoat_9RXE3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_431_GalileoFlatbed_JV1DD": {
+ "templateId": "AthenaBackpack:BID_431_GalileoFlatbed_JV1DD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_433_NeonAnimal": {
+ "templateId": "AthenaBackpack:BID_433_NeonAnimal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_434_NeonAnimalFemale": {
+ "templateId": "AthenaBackpack:BID_434_NeonAnimalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_435_Constellation": {
+ "templateId": "AthenaBackpack:BID_435_Constellation",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_436_TacticalBear": {
+ "templateId": "AthenaBackpack:BID_436_TacticalBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_437_TNTina": {
+ "templateId": "AthenaBackpack:BID_437_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage7",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_438_SweaterWeather": {
+ "templateId": "AthenaBackpack:BID_438_SweaterWeather",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_439_OrnamentSoldier": {
+ "templateId": "AthenaBackpack:BID_439_OrnamentSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_440_MsAlpine": {
+ "templateId": "AthenaBackpack:BID_440_MsAlpine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_441_HolidayPJ": {
+ "templateId": "AthenaBackpack:BID_441_HolidayPJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_442_Cattus": {
+ "templateId": "AthenaBackpack:BID_442_Cattus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_443_WingedFury": {
+ "templateId": "AthenaBackpack:BID_443_WingedFury",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_444_FestivePug": {
+ "templateId": "AthenaBackpack:BID_444_FestivePug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_445_Elf": {
+ "templateId": "AthenaBackpack:BID_445_Elf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_446_Barefoot": {
+ "templateId": "AthenaBackpack:BID_446_Barefoot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_447_ToyMonkey": {
+ "templateId": "AthenaBackpack:BID_447_ToyMonkey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_448_TechOpsBlueFemale": {
+ "templateId": "AthenaBackpack:BID_448_TechOpsBlueFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_449_MrIceGuy": {
+ "templateId": "AthenaBackpack:BID_449_MrIceGuy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_450_Iceflake": {
+ "templateId": "AthenaBackpack:BID_450_Iceflake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_451_HolidayDeck": {
+ "templateId": "AthenaBackpack:BID_451_HolidayDeck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_452_BandageNinjaBlue": {
+ "templateId": "AthenaBackpack:BID_452_BandageNinjaBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_453_FrogmanFemale": {
+ "templateId": "AthenaBackpack:BID_453_FrogmanFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_454_Gummi": {
+ "templateId": "AthenaBackpack:BID_454_Gummi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_455_NeonGraffitiFemale": {
+ "templateId": "AthenaBackpack:BID_455_NeonGraffitiFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_456_CloakedMale": {
+ "templateId": "AthenaBackpack:BID_456_CloakedMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_457_HoodieBandit": {
+ "templateId": "AthenaBackpack:BID_457_HoodieBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_458_TheGoldenSkeleton": {
+ "templateId": "AthenaBackpack:BID_458_TheGoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_459_CODSquad_Hoodie": {
+ "templateId": "AthenaBackpack:BID_459_CODSquad_Hoodie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_460_SharkAttack": {
+ "templateId": "AthenaBackpack:BID_460_SharkAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_462_ModernMilitaryEclipse": {
+ "templateId": "AthenaBackpack:BID_462_ModernMilitaryEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_463_StreetRat": {
+ "templateId": "AthenaBackpack:BID_463_StreetRat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_464_MartialArtist": {
+ "templateId": "AthenaBackpack:BID_464_MartialArtist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_465_VirtualShadow": {
+ "templateId": "AthenaBackpack:BID_465_VirtualShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_466_TigerFashion": {
+ "templateId": "AthenaBackpack:BID_466_TigerFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_467_DragonRacer": {
+ "templateId": "AthenaBackpack:BID_467_DragonRacer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_468_Cyclone": {
+ "templateId": "AthenaBackpack:BID_468_Cyclone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_469_Wings": {
+ "templateId": "AthenaBackpack:BID_469_Wings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_470_SpyTechHacker": {
+ "templateId": "AthenaBackpack:BID_470_SpyTechHacker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_471_CuteDuo": {
+ "templateId": "AthenaBackpack:BID_471_CuteDuo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_472_DesertOpsCamo": {
+ "templateId": "AthenaBackpack:BID_472_DesertOpsCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_473_Photographer": {
+ "templateId": "AthenaBackpack:BID_473_Photographer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_474_DarkHeart": {
+ "templateId": "AthenaBackpack:BID_474_DarkHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_475_AgentAce": {
+ "templateId": "AthenaBackpack:BID_475_AgentAce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_476_AgentRogue": {
+ "templateId": "AthenaBackpack:BID_476_AgentRogue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_477_BuffCat": {
+ "templateId": "AthenaBackpack:BID_477_BuffCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_478_HenchmanTough": {
+ "templateId": "AthenaBackpack:BID_478_HenchmanTough",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_479_CatBurglar": {
+ "templateId": "AthenaBackpack:BID_479_CatBurglar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_480_Donut": {
+ "templateId": "AthenaBackpack:BID_480_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_481_GraffitiFuture": {
+ "templateId": "AthenaBackpack:BID_481_GraffitiFuture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_482_LongShorts": {
+ "templateId": "AthenaBackpack:BID_482_LongShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_483_Spy": {
+ "templateId": "AthenaBackpack:BID_483_Spy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_484_PugMilitia": {
+ "templateId": "AthenaBackpack:BID_484_PugMilitia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_485_BananaAgent": {
+ "templateId": "AthenaBackpack:BID_485_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_486_WinterHunterMale": {
+ "templateId": "AthenaBackpack:BID_486_WinterHunterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_487_WinterHunterFemale": {
+ "templateId": "AthenaBackpack:BID_487_WinterHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_488_LuckyHero": {
+ "templateId": "AthenaBackpack:BID_488_LuckyHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_489_TwinDark": {
+ "templateId": "AthenaBackpack:BID_489_TwinDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_490_AnarchyAcresFarmer": {
+ "templateId": "AthenaBackpack:BID_490_AnarchyAcresFarmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_491_FlameSkull": {
+ "templateId": "AthenaBackpack:BID_491_FlameSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_492_BlueFlames": {
+ "templateId": "AthenaBackpack:BID_492_BlueFlames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_493_BlueFlamesFemale": {
+ "templateId": "AthenaBackpack:BID_493_BlueFlamesFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_494_StreetFashionEmerald": {
+ "templateId": "AthenaBackpack:BID_494_StreetFashionEmerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_495_PineappleBandit": {
+ "templateId": "AthenaBackpack:BID_495_PineappleBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_496_TeriyakiFishAssassin": {
+ "templateId": "AthenaBackpack:BID_496_TeriyakiFishAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_498_AgentX": {
+ "templateId": "AthenaBackpack:BID_498_AgentX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_499_TargetPractice": {
+ "templateId": "AthenaBackpack:BID_499_TargetPractice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_500_SpyTech": {
+ "templateId": "AthenaBackpack:BID_500_SpyTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_501_SpyTechFemale": {
+ "templateId": "AthenaBackpack:BID_501_SpyTechFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_502_Tailor": {
+ "templateId": "AthenaBackpack:BID_502_Tailor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_503_MinotaurLuck": {
+ "templateId": "AthenaBackpack:BID_503_MinotaurLuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_504_Handyman": {
+ "templateId": "AthenaBackpack:BID_504_Handyman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_505_Informer": {
+ "templateId": "AthenaBackpack:BID_505_Informer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_506_DonutCup": {
+ "templateId": "AthenaBackpack:BID_506_DonutCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_507_DonutPlate": {
+ "templateId": "AthenaBackpack:BID_507_DonutPlate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_508_DonutDish": {
+ "templateId": "AthenaBackpack:BID_508_DonutDish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_509_ChocoBunny": {
+ "templateId": "AthenaBackpack:BID_509_ChocoBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_511_BadEgg": {
+ "templateId": "AthenaBackpack:BID_511_BadEgg",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_512_Hurricane": {
+ "templateId": "AthenaBackpack:BID_512_Hurricane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_513_GraffitiAssassin": {
+ "templateId": "AthenaBackpack:BID_513_GraffitiAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_514_NeonCatSpy": {
+ "templateId": "AthenaBackpack:BID_514_NeonCatSpy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_515_Hostile": {
+ "templateId": "AthenaBackpack:BID_515_Hostile",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_516_RaveNinja": {
+ "templateId": "AthenaBackpack:BID_516_RaveNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_517_Splinter": {
+ "templateId": "AthenaBackpack:BID_517_Splinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_518_HitmanCase": {
+ "templateId": "AthenaBackpack:BID_518_HitmanCase",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_519_Comet": {
+ "templateId": "AthenaBackpack:BID_519_Comet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_520_CycloneUniverse": {
+ "templateId": "AthenaBackpack:BID_520_CycloneUniverse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_521_WildCat": {
+ "templateId": "AthenaBackpack:BID_521_WildCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_522_TechExplorer": {
+ "templateId": "AthenaBackpack:BID_522_TechExplorer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_523_RapVillainess": {
+ "templateId": "AthenaBackpack:BID_523_RapVillainess",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_525_RavenQuillDonut": {
+ "templateId": "AthenaBackpack:BID_525_RavenQuillDonut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_526_FuzzyBearDonut": {
+ "templateId": "AthenaBackpack:BID_526_FuzzyBearDonut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_527_Loofah": {
+ "templateId": "AthenaBackpack:BID_527_Loofah",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_528_SpaceWanderer": {
+ "templateId": "AthenaBackpack:BID_528_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_530_BlackKnightFemale": {
+ "templateId": "AthenaBackpack:BID_530_BlackKnightFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_531_HardcoreSportzFemale": {
+ "templateId": "AthenaBackpack:BID_531_HardcoreSportzFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_532_HardcoreSportzMale": {
+ "templateId": "AthenaBackpack:BID_532_HardcoreSportzMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_533_MechanicalEngineer": {
+ "templateId": "AthenaBackpack:BID_533_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_534_OceanRider": {
+ "templateId": "AthenaBackpack:BID_534_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_535_SandCastle": {
+ "templateId": "AthenaBackpack:BID_535_SandCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_536_Beacon": {
+ "templateId": "AthenaBackpack:BID_536_Beacon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_537_TacticalScuba": {
+ "templateId": "AthenaBackpack:BID_537_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_538_StreetRacerCobraGold": {
+ "templateId": "AthenaBackpack:BID_538_StreetRacerCobraGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_539_RacerZero": {
+ "templateId": "AthenaBackpack:BID_539_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_540_Python": {
+ "templateId": "AthenaBackpack:BID_540_Python",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_541_Gator": {
+ "templateId": "AthenaBackpack:BID_541_Gator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_542_Foam": {
+ "templateId": "AthenaBackpack:BID_542_Foam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_543_FuzzyBearTeddy": {
+ "templateId": "AthenaBackpack:BID_543_FuzzyBearTeddy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_544_BrightGunnerEclipse": {
+ "templateId": "AthenaBackpack:BID_544_BrightGunnerEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_545_RenegadeRaiderFire": {
+ "templateId": "AthenaBackpack:BID_545_RenegadeRaiderFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_546_CavalryBanditGhost": {
+ "templateId": "AthenaBackpack:BID_546_CavalryBanditGhost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_547_HeistGhost": {
+ "templateId": "AthenaBackpack:BID_547_HeistGhost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_548_MastermindGhost": {
+ "templateId": "AthenaBackpack:BID_548_MastermindGhost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_549_Dummeez": {
+ "templateId": "AthenaBackpack:BID_549_Dummeez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_550_JonesyVagabond": {
+ "templateId": "AthenaBackpack:BID_550_JonesyVagabond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_551_CupidDarkFemale": {
+ "templateId": "AthenaBackpack:BID_551_CupidDarkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_552_ConstellationSun": {
+ "templateId": "AthenaBackpack:BID_552_ConstellationSun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_553_Seaweed_NIS9V": {
+ "templateId": "AthenaBackpack:BID_553_Seaweed_NIS9V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_554_Robro": {
+ "templateId": "AthenaBackpack:BID_554_Robro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_555_HeartBreaker": {
+ "templateId": "AthenaBackpack:BID_555_HeartBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_556_SharkSuit": {
+ "templateId": "AthenaBackpack:BID_556_SharkSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_557_SharkSuitFemale": {
+ "templateId": "AthenaBackpack:BID_557_SharkSuitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_558_PunkDevilSummer": {
+ "templateId": "AthenaBackpack:BID_558_PunkDevilSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_559_GreenJacket": {
+ "templateId": "AthenaBackpack:BID_559_GreenJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_560_CandyApple_WTXXO": {
+ "templateId": "AthenaBackpack:BID_560_CandyApple_WTXXO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_561_PeppaRonnie": {
+ "templateId": "AthenaBackpack:BID_561_PeppaRonnie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_562_CelestialFemale": {
+ "templateId": "AthenaBackpack:BID_562_CelestialFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_563_MilitaryFashionSummer": {
+ "templateId": "AthenaBackpack:BID_563_MilitaryFashionSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_564_CandySummer": {
+ "templateId": "AthenaBackpack:BID_564_CandySummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_565_RedRidingSummer": {
+ "templateId": "AthenaBackpack:BID_565_RedRidingSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_566_TeriyakiAtlantis": {
+ "templateId": "AthenaBackpack:BID_566_TeriyakiAtlantis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_567_MsWhip": {
+ "templateId": "AthenaBackpack:BID_567_MsWhip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_568_BananaSummer": {
+ "templateId": "AthenaBackpack:BID_568_BananaSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_569_DirtyDocksMale": {
+ "templateId": "AthenaBackpack:BID_569_DirtyDocksMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_570_DirtyDocksFemale": {
+ "templateId": "AthenaBackpack:BID_570_DirtyDocksFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_571_Tiki": {
+ "templateId": "AthenaBackpack:BID_571_Tiki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_572_Chair": {
+ "templateId": "AthenaBackpack:BID_572_Chair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_573_TV": {
+ "templateId": "AthenaBackpack:BID_573_TV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_575_AnglerFemale": {
+ "templateId": "AthenaBackpack:BID_575_AnglerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_576_Islander": {
+ "templateId": "AthenaBackpack:BID_576_Islander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_577_RaiderPink": {
+ "templateId": "AthenaBackpack:BID_577_RaiderPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_578_SportsFashion": {
+ "templateId": "AthenaBackpack:BID_578_SportsFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_579_FloatillaCaptain": {
+ "templateId": "AthenaBackpack:BID_579_FloatillaCaptain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_580_ParcelPetal": {
+ "templateId": "AthenaBackpack:BID_580_ParcelPetal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_581_ParcelPrankSurprise": {
+ "templateId": "AthenaBackpack:BID_581_ParcelPrankSurprise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_582_ParcelGold": {
+ "templateId": "AthenaBackpack:BID_582_ParcelGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_583_SpaceWandererMale": {
+ "templateId": "AthenaBackpack:BID_583_SpaceWandererMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_584_AntiLlama": {
+ "templateId": "AthenaBackpack:BID_584_AntiLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_585_TipToe_V1T3M": {
+ "templateId": "AthenaBackpack:BID_585_TipToe_V1T3M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_586_Tar_DIJGH": {
+ "templateId": "AthenaBackpack:BID_586_Tar_DIJGH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_587_TripleScoop": {
+ "templateId": "AthenaBackpack:BID_587_TripleScoop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_588_Axl": {
+ "templateId": "AthenaBackpack:BID_588_Axl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_589_LadyAtlantis": {
+ "templateId": "AthenaBackpack:BID_589_LadyAtlantis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_590_MaskedDancer": {
+ "templateId": "AthenaBackpack:BID_590_MaskedDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_591_MultibotStealth": {
+ "templateId": "AthenaBackpack:BID_591_MultibotStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_592_JunkSamurai": {
+ "templateId": "AthenaBackpack:BID_592_JunkSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_593_HightowerSquash": {
+ "templateId": "AthenaBackpack:BID_593_HightowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_594_HightowerHoneydew": {
+ "templateId": "AthenaBackpack:BID_594_HightowerHoneydew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_595_HightowerMango": {
+ "templateId": "AthenaBackpack:BID_595_HightowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_596_HightowerTomato": {
+ "templateId": "AthenaBackpack:BID_596_HightowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_597_HightowerWasabi": {
+ "templateId": "AthenaBackpack:BID_597_HightowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_598_HightowerGrape": {
+ "templateId": "AthenaBackpack:BID_598_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_599_HightowerDate": {
+ "templateId": "AthenaBackpack:BID_599_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_600_HightowerTapas": {
+ "templateId": "AthenaBackpack:BID_600_HightowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_601_Venus": {
+ "templateId": "AthenaBackpack:BID_601_Venus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_602_DarkNinjaPurple_Female": {
+ "templateId": "AthenaBackpack:BID_602_DarkNinjaPurple_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_603_DarkEaglePurple_Male": {
+ "templateId": "AthenaBackpack:BID_603_DarkEaglePurple_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_604_SkullBritecube": {
+ "templateId": "AthenaBackpack:BID_604_SkullBritecube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_605_HightowerDate_Cape": {
+ "templateId": "AthenaBackpack:BID_605_HightowerDate_Cape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_605_Soy_Y0DW7": {
+ "templateId": "AthenaBackpack:BID_605_Soy_Y0DW7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_606_BlackwidowFemale_Corrupt": {
+ "templateId": "AthenaBackpack:BID_606_BlackwidowFemale_Corrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_607_SniperHoodFemale_Corrupt": {
+ "templateId": "AthenaBackpack:BID_607_SniperHoodFemale_Corrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_608_SamuraiArmorUltra_Corrupt": {
+ "templateId": "AthenaBackpack:BID_608_SamuraiArmorUltra_Corrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_609_ElasticCape": {
+ "templateId": "AthenaBackpack:BID_609_ElasticCape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "PetTemperament",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_610_ElasticHologram": {
+ "templateId": "AthenaBackpack:BID_610_ElasticHologram",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "PetTemperament",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_611_KevinCouture": {
+ "templateId": "AthenaBackpack:BID_611_KevinCouture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_612_CloakedAssassin_K7415": {
+ "templateId": "AthenaBackpack:BID_612_CloakedAssassin_K7415",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_613_MythFemale": {
+ "templateId": "AthenaBackpack:BID_613_MythFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_614_Myth": {
+ "templateId": "AthenaBackpack:BID_614_Myth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_615_Backspin_KA0K2": {
+ "templateId": "AthenaBackpack:BID_615_Backspin_KA0K2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_616_Cavalry": {
+ "templateId": "AthenaBackpack:BID_616_Cavalry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_617_StreetFashionGarnet": {
+ "templateId": "AthenaBackpack:BID_617_StreetFashionGarnet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_618_Birthday03": {
+ "templateId": "AthenaBackpack:BID_618_Birthday03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_619_Turbo": {
+ "templateId": "AthenaBackpack:BID_619_Turbo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_620_TeriyakiFishPrincess": {
+ "templateId": "AthenaBackpack:BID_620_TeriyakiFishPrincess",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_621_Poison": {
+ "templateId": "AthenaBackpack:BID_621_Poison",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_622_VampireCasual": {
+ "templateId": "AthenaBackpack:BID_622_VampireCasual",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_623_BlackWidowJacket": {
+ "templateId": "AthenaBackpack:BID_623_BlackWidowJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_624_Palespooky": {
+ "templateId": "AthenaBackpack:BID_624_Palespooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_625_DarkBomberSummer": {
+ "templateId": "AthenaBackpack:BID_625_DarkBomberSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_626_SpookyNeonFemale": {
+ "templateId": "AthenaBackpack:BID_626_SpookyNeonFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_627_DeliSandwich": {
+ "templateId": "AthenaBackpack:BID_627_DeliSandwich",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_628_FlowerSkeletonMale": {
+ "templateId": "AthenaBackpack:BID_628_FlowerSkeletonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_629_LunchBox": {
+ "templateId": "AthenaBackpack:BID_629_LunchBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_630_Famine": {
+ "templateId": "AthenaBackpack:BID_630_Famine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_631_PumpkinPunkMale": {
+ "templateId": "AthenaBackpack:BID_631_PumpkinPunkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_632_PumpkinSpice": {
+ "templateId": "AthenaBackpack:BID_632_PumpkinSpice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_633_FrankieFemale": {
+ "templateId": "AthenaBackpack:BID_633_FrankieFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_634_York_Female": {
+ "templateId": "AthenaBackpack:BID_634_York_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_635_York_Male": {
+ "templateId": "AthenaBackpack:BID_635_York_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_636_RavenQuillSkull": {
+ "templateId": "AthenaBackpack:BID_636_RavenQuillSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_637_FuzzyBearSkull": {
+ "templateId": "AthenaBackpack:BID_637_FuzzyBearSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_638_DurrburgerSkull": {
+ "templateId": "AthenaBackpack:BID_638_DurrburgerSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_639_BabaYaga": {
+ "templateId": "AthenaBackpack:BID_639_BabaYaga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_640_ElfAttackMale": {
+ "templateId": "AthenaBackpack:BID_640_ElfAttackMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_641_Jekyll": {
+ "templateId": "AthenaBackpack:BID_641_Jekyll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_642_Embers": {
+ "templateId": "AthenaBackpack:BID_642_Embers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_643_Tapdance": {
+ "templateId": "AthenaBackpack:BID_643_Tapdance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_644_StreetFashionDiamond": {
+ "templateId": "AthenaBackpack:BID_644_StreetFashionDiamond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_645_NauticalPajamas": {
+ "templateId": "AthenaBackpack:BID_645_NauticalPajamas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_646_NauticalPajamasNight": {
+ "templateId": "AthenaBackpack:BID_646_NauticalPajamasNight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_647_NauticalPajamas_Underwater": {
+ "templateId": "AthenaBackpack:BID_647_NauticalPajamas_Underwater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_648_Blonde": {
+ "templateId": "AthenaBackpack:BID_648_Blonde",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_649_ShockWave": {
+ "templateId": "AthenaBackpack:BID_649_ShockWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_650_Vertigo": {
+ "templateId": "AthenaBackpack:BID_650_Vertigo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_651_EternityFemale": {
+ "templateId": "AthenaBackpack:BID_651_EternityFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_652_RaiderSilverFemale": {
+ "templateId": "AthenaBackpack:BID_652_RaiderSilverFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_653_Football20_1BS75": {
+ "templateId": "AthenaBackpack:BID_653_Football20_1BS75",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_654_Ponytail": {
+ "templateId": "AthenaBackpack:BID_654_Ponytail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_655_PieMan": {
+ "templateId": "AthenaBackpack:BID_655_PieMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_656_AncientGladiatorMale": {
+ "templateId": "AthenaBackpack:BID_656_AncientGladiatorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_657_LexaFemale": {
+ "templateId": "AthenaBackpack:BID_657_LexaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_658_Historian_4RCG3": {
+ "templateId": "AthenaBackpack:BID_658_Historian_4RCG3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_659_FlapjackWrangler": {
+ "templateId": "AthenaBackpack:BID_659_FlapjackWrangler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_660_Shapeshifter": {
+ "templateId": "AthenaBackpack:BID_660_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_661_SpaceFighter": {
+ "templateId": "AthenaBackpack:BID_661_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_662_FutureSamuraiMale": {
+ "templateId": "AthenaBackpack:BID_662_FutureSamuraiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_663_SnowmanFashionMale": {
+ "templateId": "AthenaBackpack:BID_663_SnowmanFashionMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_664_RenegadeRaiderHoliday": {
+ "templateId": "AthenaBackpack:BID_664_RenegadeRaiderHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_665_Jupiter_XD7AK": {
+ "templateId": "AthenaBackpack:BID_665_Jupiter_XD7AK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_666_TeriyakiFishElf": {
+ "templateId": "AthenaBackpack:BID_666_TeriyakiFishElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_667_StarsMale": {
+ "templateId": "AthenaBackpack:BID_667_StarsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_668_StarsFemale": {
+ "templateId": "AthenaBackpack:BID_668_StarsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_669_NeonMale": {
+ "templateId": "AthenaBackpack:BID_669_NeonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_670_NeonFemale": {
+ "templateId": "AthenaBackpack:BID_670_NeonFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_671_Mechstructor": {
+ "templateId": "AthenaBackpack:BID_671_Mechstructor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_672_StreetFashionHoliday": {
+ "templateId": "AthenaBackpack:BID_672_StreetFashionHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_673_ElfFemale": {
+ "templateId": "AthenaBackpack:BID_673_ElfFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_674_SnowboarderMale": {
+ "templateId": "AthenaBackpack:BID_674_SnowboarderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_675_WombatMale_X18U5": {
+ "templateId": "AthenaBackpack:BID_675_WombatMale_X18U5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_676_WombatFemale_6PEJZ": {
+ "templateId": "AthenaBackpack:BID_676_WombatFemale_6PEJZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_677_FancyCandy": {
+ "templateId": "AthenaBackpack:BID_677_FancyCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_678_CardboardCrewHolidayMale": {
+ "templateId": "AthenaBackpack:BID_678_CardboardCrewHolidayMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_679_CardboardCrewHolidayFemale": {
+ "templateId": "AthenaBackpack:BID_679_CardboardCrewHolidayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_680_DriftWinter": {
+ "templateId": "AthenaBackpack:BID_680_DriftWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_681_DriftWinterFox": {
+ "templateId": "AthenaBackpack:BID_681_DriftWinterFox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_682_CherryFemale_RXEIW": {
+ "templateId": "AthenaBackpack:BID_682_CherryFemale_RXEIW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_683_CupidWinterFemale": {
+ "templateId": "AthenaBackpack:BID_683_CupidWinterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_684_HolidayLightsMale": {
+ "templateId": "AthenaBackpack:BID_684_HolidayLightsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_685_PlumRetro_EY7ZM": {
+ "templateId": "AthenaBackpack:BID_685_PlumRetro_EY7ZM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_686_TiramisuMale_1YMN4": {
+ "templateId": "AthenaBackpack:BID_686_TiramisuMale_1YMN4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_687_GrilledCheese_C9FB6": {
+ "templateId": "AthenaBackpack:BID_687_GrilledCheese_C9FB6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_688_Nightmare_S85HI": {
+ "templateId": "AthenaBackpack:BID_688_Nightmare_S85HI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_689_TyphoonRobot_SMLZ7": {
+ "templateId": "AthenaBackpack:BID_689_TyphoonRobot_SMLZ7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_690_TyphoonFemale_1NBFZ": {
+ "templateId": "AthenaBackpack:BID_690_TyphoonFemale_1NBFZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_691_LexaMale": {
+ "templateId": "AthenaBackpack:BID_691_LexaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_692_ConvoyTarantula_34ZM0": {
+ "templateId": "AthenaBackpack:BID_692_ConvoyTarantula_34ZM0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_695_StreetFashionEclipse": {
+ "templateId": "AthenaBackpack:BID_695_StreetFashionEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_696_CombatDoll": {
+ "templateId": "AthenaBackpack:BID_696_CombatDoll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_697_FoxWarrior_G0YTR": {
+ "templateId": "AthenaBackpack:BID_697_FoxWarrior_G0YTR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_698_StreetCuddlesMale": {
+ "templateId": "AthenaBackpack:BID_698_StreetCuddlesMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_699_MainframeMale_2W2M3": {
+ "templateId": "AthenaBackpack:BID_699_MainframeMale_2W2M3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_700_Crush": {
+ "templateId": "AthenaBackpack:BID_700_Crush",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_701_SkirmishMale_5LH4I": {
+ "templateId": "AthenaBackpack:BID_701_SkirmishMale_5LH4I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_702_SkirmishFemale_P9FE3": {
+ "templateId": "AthenaBackpack:BID_702_SkirmishFemale_P9FE3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_703_KeplerMale_ZTFJU": {
+ "templateId": "AthenaBackpack:BID_703_KeplerMale_ZTFJU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_704_KeplerFemale_C0L25": {
+ "templateId": "AthenaBackpack:BID_704_KeplerFemale_C0L25",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_705_AncientGladiatorFemale": {
+ "templateId": "AthenaBackpack:BID_705_AncientGladiatorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_706_CasualBomberLight": {
+ "templateId": "AthenaBackpack:BID_706_CasualBomberLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_707_LlamaHeroWinter_3OQ1V": {
+ "templateId": "AthenaBackpack:BID_707_LlamaHeroWinter_3OQ1V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_708_GingerbreadBuilder": {
+ "templateId": "AthenaBackpack:BID_708_GingerbreadBuilder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_709_SpaceWarrior": {
+ "templateId": "AthenaBackpack:BID_709_SpaceWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_710_SmallFry_GDE1J": {
+ "templateId": "AthenaBackpack:BID_710_SmallFry_GDE1J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_711_CatBurglarFemale": {
+ "templateId": "AthenaBackpack:BID_711_CatBurglarFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_712_LionSoldier": {
+ "templateId": "AthenaBackpack:BID_712_LionSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_713_FNCS21": {
+ "templateId": "AthenaBackpack:BID_713_FNCS21",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_714_Obsidian": {
+ "templateId": "AthenaBackpack:BID_714_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_715_DinoHunterFemale": {
+ "templateId": "AthenaBackpack:BID_715_DinoHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_716_ChickenWarrior": {
+ "templateId": "AthenaBackpack:BID_716_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_717_TowerSentinel": {
+ "templateId": "AthenaBackpack:BID_717_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_718_ProgressiveJonesy": {
+ "templateId": "AthenaBackpack:BID_718_ProgressiveJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_719_CubeNinja": {
+ "templateId": "AthenaBackpack:BID_719_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_720_Temple": {
+ "templateId": "AthenaBackpack:BID_720_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_721_ScholarFemale": {
+ "templateId": "AthenaBackpack:BID_721_ScholarFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_722_NeonCatFashion_KEP9B": {
+ "templateId": "AthenaBackpack:BID_722_NeonCatFashion_KEP9B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_723_DarkMinion": {
+ "templateId": "AthenaBackpack:BID_723_DarkMinion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_724_BananaLeader": {
+ "templateId": "AthenaBackpack:BID_724_BananaLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_725_AssembleR": {
+ "templateId": "AthenaBackpack:BID_725_AssembleR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_726_Figure": {
+ "templateId": "AthenaBackpack:BID_726_Figure",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_727_TurboBall_892OE": {
+ "templateId": "AthenaBackpack:BID_727_TurboBall_892OE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_728_SailorSquadLeader": {
+ "templateId": "AthenaBackpack:BID_728_SailorSquadLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_729_SailorSquadRebel": {
+ "templateId": "AthenaBackpack:BID_729_SailorSquadRebel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_730_SailorSquadRose": {
+ "templateId": "AthenaBackpack:BID_730_SailorSquadRose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_731_BunnyFashion": {
+ "templateId": "AthenaBackpack:BID_731_BunnyFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_732_HipHareMale": {
+ "templateId": "AthenaBackpack:BID_732_HipHareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_733_TheGoldenSkeletonFemale_SG4HF": {
+ "templateId": "AthenaBackpack:BID_733_TheGoldenSkeletonFemale_SG4HF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_734_WickedDuckMale": {
+ "templateId": "AthenaBackpack:BID_734_WickedDuckMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_735_WickedDuckFemale": {
+ "templateId": "AthenaBackpack:BID_735_WickedDuckFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_736_DayTrader_QS4PD": {
+ "templateId": "AthenaBackpack:BID_736_DayTrader_QS4PD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_737_Alchemy_1WW0D": {
+ "templateId": "AthenaBackpack:BID_737_Alchemy_1WW0D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_738_CottonCandy": {
+ "templateId": "AthenaBackpack:BID_738_CottonCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_742_TerrainMan": {
+ "templateId": "AthenaBackpack:BID_742_TerrainMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_743_Accumulate": {
+ "templateId": "AthenaBackpack:BID_743_Accumulate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_744_CavernMale_CF6JE": {
+ "templateId": "AthenaBackpack:BID_744_CavernMale_CF6JE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_745_BuffCatComic_AB1AX": {
+ "templateId": "AthenaBackpack:BID_745_BuffCatComic_AB1AX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_746_ArmoredEngineer": {
+ "templateId": "AthenaBackpack:BID_746_ArmoredEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_747_TacticalRedPunk": {
+ "templateId": "AthenaBackpack:BID_747_TacticalRedPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_748_BicycleMale": {
+ "templateId": "AthenaBackpack:BID_748_BicycleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_749_DinoCollector": {
+ "templateId": "AthenaBackpack:BID_749_DinoCollector",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_750_RaptorKnight": {
+ "templateId": "AthenaBackpack:BID_750_RaptorKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_751_DurrburgerKnight": {
+ "templateId": "AthenaBackpack:BID_751_DurrburgerKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_752_TacoKnight": {
+ "templateId": "AthenaBackpack:BID_752_TacoKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_753_TomatoKnight": {
+ "templateId": "AthenaBackpack:BID_753_TomatoKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_754_CraniumMale": {
+ "templateId": "AthenaBackpack:BID_754_CraniumMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_755_Hardwood_4KH3V": {
+ "templateId": "AthenaBackpack:BID_755_Hardwood_4KH3V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_756_Hardwood_Gold_4DX8C": {
+ "templateId": "AthenaBackpack:BID_756_Hardwood_Gold_4DX8C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_757_Caveman": {
+ "templateId": "AthenaBackpack:BID_757_Caveman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_758_Broccoli_TK4HH": {
+ "templateId": "AthenaBackpack:BID_758_Broccoli_TK4HH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_759_DarkElfFemale": {
+ "templateId": "AthenaBackpack:BID_759_DarkElfFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_760_StoneViper": {
+ "templateId": "AthenaBackpack:BID_760_StoneViper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_761_WastelandWarrior": {
+ "templateId": "AthenaBackpack:BID_761_WastelandWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_762_SpartanFutureFemale": {
+ "templateId": "AthenaBackpack:BID_762_SpartanFutureFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_764_Shrapnel": {
+ "templateId": "AthenaBackpack:BID_764_Shrapnel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_765_DownpourMale_YLV93": {
+ "templateId": "AthenaBackpack:BID_765_DownpourMale_YLV93",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_766_TacticalWoodlandBlue": {
+ "templateId": "AthenaBackpack:BID_766_TacticalWoodlandBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_767_AssembleL": {
+ "templateId": "AthenaBackpack:BID_767_AssembleL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_768_Grim_QR2Q2": {
+ "templateId": "AthenaBackpack:BID_768_Grim_QR2Q2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_769_TowerSentinelMale": {
+ "templateId": "AthenaBackpack:BID_769_TowerSentinelMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_770_SpaceCuddles_X9QET": {
+ "templateId": "AthenaBackpack:BID_770_SpaceCuddles_X9QET",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_771_Lasso_ZN4VA": {
+ "templateId": "AthenaBackpack:BID_771_Lasso_ZN4VA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_772_Lasso_Polo_BL4WE": {
+ "templateId": "AthenaBackpack:BID_772_Lasso_Polo_BL4WE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_773_Carabus": {
+ "templateId": "AthenaBackpack:BID_773_Carabus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_774_AlienTrooper": {
+ "templateId": "AthenaBackpack:BID_774_AlienTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "ClothingColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "006",
+ "005",
+ "001",
+ "003",
+ "002",
+ "004"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "003",
+ "006",
+ "002",
+ "004",
+ "005",
+ "001"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_775_Emperor": {
+ "templateId": "AthenaBackpack:BID_775_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_776_Emperor_Suit": {
+ "templateId": "AthenaBackpack:BID_776_Emperor_Suit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_777_Believer": {
+ "templateId": "AthenaBackpack:BID_777_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_778_Antique": {
+ "templateId": "AthenaBackpack:BID_778_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_779_AntiqueCat": {
+ "templateId": "AthenaBackpack:BID_779_AntiqueCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_780_AntiqueCrazy": {
+ "templateId": "AthenaBackpack:BID_780_AntiqueCrazy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_781_AntiqueHeadphones": {
+ "templateId": "AthenaBackpack:BID_781_AntiqueHeadphones",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_782_Ruckus": {
+ "templateId": "AthenaBackpack:BID_782_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_783_Innovator": {
+ "templateId": "AthenaBackpack:BID_783_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_784_Faux": {
+ "templateId": "AthenaBackpack:BID_784_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_785_Rockstar": {
+ "templateId": "AthenaBackpack:BID_785_Rockstar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_786_GolfMale": {
+ "templateId": "AthenaBackpack:BID_786_GolfMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_787_JonesyCattle": {
+ "templateId": "AthenaBackpack:BID_787_JonesyCattle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_788_JailBirdBumbleFemale": {
+ "templateId": "AthenaBackpack:BID_788_JailBirdBumbleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_789_CavernArmored": {
+ "templateId": "AthenaBackpack:BID_789_CavernArmored",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_790_Firecracker": {
+ "templateId": "AthenaBackpack:BID_790_Firecracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_791_Linguini_GM9A0": {
+ "templateId": "AthenaBackpack:BID_791_Linguini_GM9A0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_792_SlurpMonsterSummer": {
+ "templateId": "AthenaBackpack:BID_792_SlurpMonsterSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_793_HenchmanSummer": {
+ "templateId": "AthenaBackpack:BID_793_HenchmanSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_794_JurassicArchaeologySummer": {
+ "templateId": "AthenaBackpack:BID_794_JurassicArchaeologySummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_795_MechanicalEngineerSummer": {
+ "templateId": "AthenaBackpack:BID_795_MechanicalEngineerSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_796_CatBurglarSummer": {
+ "templateId": "AthenaBackpack:BID_796_CatBurglarSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_797_StreetFashionSummer": {
+ "templateId": "AthenaBackpack:BID_797_StreetFashionSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_798_SummerPopsicle": {
+ "templateId": "AthenaBackpack:BID_798_SummerPopsicle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_799_SummerHotdog": {
+ "templateId": "AthenaBackpack:BID_799_SummerHotdog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_800_Majesty_U8JHQ": {
+ "templateId": "AthenaBackpack:BID_800_Majesty_U8JHQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_801_MajestyTaco_FFH31": {
+ "templateId": "AthenaBackpack:BID_801_MajestyTaco_FFH31",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_802_DarkVikingFireMale": {
+ "templateId": "AthenaBackpack:BID_802_DarkVikingFireMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_803_ScavengerFire": {
+ "templateId": "AthenaBackpack:BID_803_ScavengerFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_804_BandageNinjaFire": {
+ "templateId": "AthenaBackpack:BID_804_BandageNinjaFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_806_Foray_WG30D": {
+ "templateId": "AthenaBackpack:BID_806_Foray_WG30D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_807_Menace": {
+ "templateId": "AthenaBackpack:BID_807_Menace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_808_BlueCheese": {
+ "templateId": "AthenaBackpack:BID_808_BlueCheese",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_809_Dojo": {
+ "templateId": "AthenaBackpack:BID_809_Dojo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_810_Musician": {
+ "templateId": "AthenaBackpack:BID_810_Musician",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_811_BrightBomberMint": {
+ "templateId": "AthenaBackpack:BID_811_BrightBomberMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_812_GoldenSkeletonMint": {
+ "templateId": "AthenaBackpack:BID_812_GoldenSkeletonMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_813_TreasureHunterFashionMint": {
+ "templateId": "AthenaBackpack:BID_813_TreasureHunterFashionMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_814_BuffCatFan_C3DES": {
+ "templateId": "AthenaBackpack:BID_814_BuffCatFan_C3DES",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_815_PliantFemale": {
+ "templateId": "AthenaBackpack:BID_815_PliantFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_816_PliantMale": {
+ "templateId": "AthenaBackpack:BID_816_PliantMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_817_CometSummer": {
+ "templateId": "AthenaBackpack:BID_817_CometSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_818_Buffet_XRF7H": {
+ "templateId": "AthenaBackpack:BID_818_Buffet_XRF7H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_819_Stereo_TE8RC": {
+ "templateId": "AthenaBackpack:BID_819_Stereo_TE8RC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_820_QuarrelFemale_7CW31": {
+ "templateId": "AthenaBackpack:BID_820_QuarrelFemale_7CW31",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_821_QuarrelMale_IKIS8": {
+ "templateId": "AthenaBackpack:BID_821_QuarrelMale_IKIS8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_822_AlienSummer": {
+ "templateId": "AthenaBackpack:BID_822_AlienSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_823_SeesawSlipper": {
+ "templateId": "AthenaBackpack:BID_823_SeesawSlipper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_824_CelestialGlow": {
+ "templateId": "AthenaBackpack:BID_824_CelestialGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_825_VividMale_7L9T0": {
+ "templateId": "AthenaBackpack:BID_825_VividMale_7L9T0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_826_RuckusMini_4EP8L": {
+ "templateId": "AthenaBackpack:BID_826_RuckusMini_4EP8L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_827_AntiquePal_BL5ER": {
+ "templateId": "AthenaBackpack:BID_827_AntiquePal_BL5ER",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_828_Monarch": {
+ "templateId": "AthenaBackpack:BID_828_Monarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_829_ColorBlock": {
+ "templateId": "AthenaBackpack:BID_829_ColorBlock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_830_NinjaWolf_4CWAW": {
+ "templateId": "AthenaBackpack:BID_830_NinjaWolf_4CWAW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_831_PolygonMale": {
+ "templateId": "AthenaBackpack:BID_831_PolygonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_832_Lavish_TV630": {
+ "templateId": "AthenaBackpack:BID_832_Lavish_TV630",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_833_TieDyeFashion": {
+ "templateId": "AthenaBackpack:BID_833_TieDyeFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_834_MaskedWarriorSpring": {
+ "templateId": "AthenaBackpack:BID_834_MaskedWarriorSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_835_Lars": {
+ "templateId": "AthenaBackpack:BID_835_Lars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_836_AlienAgent": {
+ "templateId": "AthenaBackpack:BID_836_AlienAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_837_Dragonfruit_0IZM3": {
+ "templateId": "AthenaBackpack:BID_837_Dragonfruit_0IZM3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_838_AngelDark": {
+ "templateId": "AthenaBackpack:BID_838_AngelDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_839_AlienFloraMale": {
+ "templateId": "AthenaBackpack:BID_839_AlienFloraMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_840_FNCSGreen": {
+ "templateId": "AthenaBackpack:BID_840_FNCSGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_841_Clash": {
+ "templateId": "AthenaBackpack:BID_841_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_842_CerealBox": {
+ "templateId": "AthenaBackpack:BID_842_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_843_SpaceChimp": {
+ "templateId": "AthenaBackpack:BID_843_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_844_GhostHunter": {
+ "templateId": "AthenaBackpack:BID_844_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_845_TeriyakiFishToon": {
+ "templateId": "AthenaBackpack:BID_845_TeriyakiFishToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_846_Division": {
+ "templateId": "AthenaBackpack:BID_846_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_847_PunkKoi": {
+ "templateId": "AthenaBackpack:BID_847_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_848_BuffLlama": {
+ "templateId": "AthenaBackpack:BID_848_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage3",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_849_ClashV_D5UT3": {
+ "templateId": "AthenaBackpack:BID_849_ClashV_D5UT3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_850_TextileRamFemale_2R9WR": {
+ "templateId": "AthenaBackpack:BID_850_TextileRamFemale_2R9WR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_851_TextileKnightMale_MIPJ6": {
+ "templateId": "AthenaBackpack:BID_851_TextileKnightMale_MIPJ6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_852_TextileSparkleFemale_X8KOH": {
+ "templateId": "AthenaBackpack:BID_852_TextileSparkleFemale_X8KOH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_853_TextilePupMale_LFOE4": {
+ "templateId": "AthenaBackpack:BID_853_TextilePupMale_LFOE4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_854_FNBirthday_BA96D": {
+ "templateId": "AthenaBackpack:BID_854_FNBirthday_BA96D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_855_BigBucksDog_S1Y8P": {
+ "templateId": "AthenaBackpack:BID_855_BigBucksDog_S1Y8P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_856_BigBucksDuck_0751N": {
+ "templateId": "AthenaBackpack:BID_856_BigBucksDuck_0751N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_857_BigBucksCat_XTZ62": {
+ "templateId": "AthenaBackpack:BID_857_BigBucksCat_XTZ62",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_858_BigBucksRex_K3JSQ": {
+ "templateId": "AthenaBackpack:BID_858_BigBucksRex_K3JSQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_859_BigBucksPenguin_6NSWA": {
+ "templateId": "AthenaBackpack:BID_859_BigBucksPenguin_6NSWA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_860_BigBucksRaceCar_5T4NY": {
+ "templateId": "AthenaBackpack:BID_860_BigBucksRaceCar_5T4NY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_861_BigBucksTopHat_J5LQQ": {
+ "templateId": "AthenaBackpack:BID_861_BigBucksTopHat_J5LQQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_862_BigBucksBattleship_1JA5G": {
+ "templateId": "AthenaBackpack:BID_862_BigBucksBattleship_1JA5G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_863_Tomcat_5V2TZ": {
+ "templateId": "AthenaBackpack:BID_863_Tomcat_5V2TZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_864_RenegadeSkull": {
+ "templateId": "AthenaBackpack:BID_864_RenegadeSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_865_WerewolfFemale": {
+ "templateId": "AthenaBackpack:BID_865_WerewolfFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_866_CritterCuddle": {
+ "templateId": "AthenaBackpack:BID_866_CritterCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_867_CritterFrenzy_3VYKQ": {
+ "templateId": "AthenaBackpack:BID_867_CritterFrenzy_3VYKQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_868_PsycheMale_CTVM0": {
+ "templateId": "AthenaBackpack:BID_868_PsycheMale_CTVM0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_869_CritterRaven": {
+ "templateId": "AthenaBackpack:BID_869_CritterRaven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_870_CritterManiac_8Y8KK": {
+ "templateId": "AthenaBackpack:BID_870_CritterManiac_8Y8KK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_871_PinkEmo": {
+ "templateId": "AthenaBackpack:BID_871_PinkEmo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_872_Giggle_LN5LR": {
+ "templateId": "AthenaBackpack:BID_872_Giggle_LN5LR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_873_RelishMale_0Q8D9": {
+ "templateId": "AthenaBackpack:BID_873_RelishMale_0Q8D9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_874_RelishFemale_I7B41": {
+ "templateId": "AthenaBackpack:BID_874_RelishFemale_I7B41",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_875_SunriseCastle_91J3L": {
+ "templateId": "AthenaBackpack:BID_875_SunriseCastle_91J3L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_876_SunrisePalace_7JPK6": {
+ "templateId": "AthenaBackpack:BID_876_SunrisePalace_7JPK6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_877_BistroAstronaut_LWL45": {
+ "templateId": "AthenaBackpack:BID_877_BistroAstronaut_LWL45",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_878_BistroSpooky_VPF4T": {
+ "templateId": "AthenaBackpack:BID_878_BistroSpooky_VPF4T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_879_CubeQueen": {
+ "templateId": "AthenaBackpack:BID_879_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_880_SweetTeriyakiRed": {
+ "templateId": "AthenaBackpack:BID_880_SweetTeriyakiRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_881_ScholarGhoul": {
+ "templateId": "AthenaBackpack:BID_881_ScholarGhoul",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_882_EerieGhost_Y9N1T": {
+ "templateId": "AthenaBackpack:BID_882_EerieGhost_Y9N1T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_883_Disguise": {
+ "templateId": "AthenaBackpack:BID_883_Disguise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_884_DisguiseFemale": {
+ "templateId": "AthenaBackpack:BID_884_DisguiseFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_885_TomatoScary": {
+ "templateId": "AthenaBackpack:BID_885_TomatoScary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_886_DriftHorror": {
+ "templateId": "AthenaBackpack:BID_886_DriftHorror",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_887_DurrburgerGold": {
+ "templateId": "AthenaBackpack:BID_887_DurrburgerGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_888_SAM_4LYL3": {
+ "templateId": "AthenaBackpack:BID_888_SAM_4LYL3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage2",
+ "owned": [
+ "Stage2",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_889_FullMoon": {
+ "templateId": "AthenaBackpack:BID_889_FullMoon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_890_UproarBraids_EF68P": {
+ "templateId": "AthenaBackpack:BID_890_UproarBraids_EF68P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_891_ButterJack": {
+ "templateId": "AthenaBackpack:BID_891_ButterJack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_892_JackOLantern": {
+ "templateId": "AthenaBackpack:BID_892_JackOLantern",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle2",
+ "owned": [
+ "Particle2",
+ "Particle1",
+ "Particle3",
+ "Particle4",
+ "Particle5",
+ "Particle6"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1",
+ "Emissive3",
+ "Emissive4",
+ "Emissive5",
+ "Emissive6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_893_ZombieElastic": {
+ "templateId": "AthenaBackpack:BID_893_ZombieElastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_895_ZombieElasticNeon": {
+ "templateId": "AthenaBackpack:BID_895_ZombieElasticNeon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "PetTemperament",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_896_GrasshopperMale_BRT10": {
+ "templateId": "AthenaBackpack:BID_896_GrasshopperMale_BRT10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_897_AshesFemale_DV4RB": {
+ "templateId": "AthenaBackpack:BID_897_AshesFemale_DV4RB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_898_SupersonicPink_FCO9X": {
+ "templateId": "AthenaBackpack:BID_898_SupersonicPink_FCO9X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_899_NeonCatTech": {
+ "templateId": "AthenaBackpack:BID_899_NeonCatTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_900_PeelyTech": {
+ "templateId": "AthenaBackpack:BID_900_PeelyTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_901_CrazyEightTech": {
+ "templateId": "AthenaBackpack:BID_901_CrazyEightTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_902_HeadbandMale": {
+ "templateId": "AthenaBackpack:BID_902_HeadbandMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_903_HeadbandKMale": {
+ "templateId": "AthenaBackpack:BID_903_HeadbandKMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_904_HeadbandSMale": {
+ "templateId": "AthenaBackpack:BID_904_HeadbandSMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_905_HeadbandSFemale": {
+ "templateId": "AthenaBackpack:BID_905_HeadbandSFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_906_GrandeurMale_4JIZO": {
+ "templateId": "AthenaBackpack:BID_906_GrandeurMale_4JIZO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_907_Nucleus_J147F": {
+ "templateId": "AthenaBackpack:BID_907_Nucleus_J147F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_908_AssembleK": {
+ "templateId": "AthenaBackpack:BID_908_AssembleK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_909_HasteMale_EPX5A": {
+ "templateId": "AthenaBackpack:BID_909_HasteMale_EPX5A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_910_FNCS_Purple": {
+ "templateId": "AthenaBackpack:BID_910_FNCS_Purple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_911_LoneWolfMale": {
+ "templateId": "AthenaBackpack:BID_911_LoneWolfMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_912_GumballMale": {
+ "templateId": "AthenaBackpack:BID_912_GumballMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_913_MotorcyclistFemale": {
+ "templateId": "AthenaBackpack:BID_913_MotorcyclistFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_914_IslandNomadFemale": {
+ "templateId": "AthenaBackpack:BID_914_IslandNomadFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_915_ExoSuitFemale": {
+ "templateId": "AthenaBackpack:BID_915_ExoSuitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_916_ParallelComicMale": {
+ "templateId": "AthenaBackpack:BID_916_ParallelComicMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_917_RustyBoltMale_1DGTV": {
+ "templateId": "AthenaBackpack:BID_917_RustyBoltMale_1DGTV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_918_RustyBoltFemale_J4JW1": {
+ "templateId": "AthenaBackpack:BID_918_RustyBoltFemale_J4JW1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_919_DarkPitBlue": {
+ "templateId": "AthenaBackpack:BID_919_DarkPitBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_920_Turtleneck": {
+ "templateId": "AthenaBackpack:BID_920_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_921_Slither_85LFG": {
+ "templateId": "AthenaBackpack:BID_921_Slither_85LFG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_922_SlitherMetal_ZO68K": {
+ "templateId": "AthenaBackpack:BID_922_SlitherMetal_ZO68K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_924_LateralMale_Y2INS": {
+ "templateId": "AthenaBackpack:BID_924_LateralMale_Y2INS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_925_LateralFemale_7RK0Z": {
+ "templateId": "AthenaBackpack:BID_925_LateralFemale_7RK0Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_926_InnovatorFestive_6ZNGC": {
+ "templateId": "AthenaBackpack:BID_926_InnovatorFestive_6ZNGC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_927_LlamaIce": {
+ "templateId": "AthenaBackpack:BID_927_LlamaIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_928_OrbitTeal_R54N6": {
+ "templateId": "AthenaBackpack:BID_928_OrbitTeal_R54N6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_929_TwentyTwo": {
+ "templateId": "AthenaBackpack:BID_929_TwentyTwo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_930_Sunshine": {
+ "templateId": "AthenaBackpack:BID_930_Sunshine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_931_KittyWarrior": {
+ "templateId": "AthenaBackpack:BID_931_KittyWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_932_Peppermint": {
+ "templateId": "AthenaBackpack:BID_932_Peppermint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_933_CatBurglarWinter": {
+ "templateId": "AthenaBackpack:BID_933_CatBurglarWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_934_JurassicArchaeologyWinter": {
+ "templateId": "AthenaBackpack:BID_934_JurassicArchaeologyWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_935_RenegadeRaiderIce": {
+ "templateId": "AthenaBackpack:BID_935_RenegadeRaiderIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_936_KeenFemale_90W2B": {
+ "templateId": "AthenaBackpack:BID_936_KeenFemale_90W2B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_937_KeenMale_YT098": {
+ "templateId": "AthenaBackpack:BID_937_KeenMale_YT098",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_938_FoeMale_F4JVS": {
+ "templateId": "AthenaBackpack:BID_938_FoeMale_F4JVS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_939_Uproar_8Q6E0": {
+ "templateId": "AthenaBackpack:BID_939_Uproar_8Q6E0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_940_PrimalFalcon_CV6IJ": {
+ "templateId": "AthenaBackpack:BID_940_PrimalFalcon_CV6IJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_941_SkullPunk_W8FWD": {
+ "templateId": "AthenaBackpack:BID_941_SkullPunk_W8FWD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_942_LimaBean": {
+ "templateId": "AthenaBackpack:BID_942_LimaBean",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat7",
+ "Mat8",
+ "Mat6",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_943_LlamaLeague": {
+ "templateId": "AthenaBackpack:BID_943_LlamaLeague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_944_Sleek_7PFGZ": {
+ "templateId": "AthenaBackpack:BID_944_Sleek_7PFGZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_945_SleekGlasses_GKUD9": {
+ "templateId": "AthenaBackpack:BID_945_SleekGlasses_GKUD9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_946_Galactic_S1CVQ": {
+ "templateId": "AthenaBackpack:BID_946_Galactic_S1CVQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_947_ZestFemale_1KIDJ": {
+ "templateId": "AthenaBackpack:BID_947_ZestFemale_1KIDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_948_ZestMale_GP8AW": {
+ "templateId": "AthenaBackpack:BID_948_ZestMale_GP8AW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_949_LoveQueen": {
+ "templateId": "AthenaBackpack:BID_949_LoveQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_950_Solstice_APTB0": {
+ "templateId": "AthenaBackpack:BID_950_Solstice_APTB0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_951_ShatterflyEclipse": {
+ "templateId": "AthenaBackpack:BID_951_ShatterflyEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_952_Gimmick_Female_KM10U": {
+ "templateId": "AthenaBackpack:BID_952_Gimmick_Female_KM10U",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_953_Gimmick_1I059": {
+ "templateId": "AthenaBackpack:BID_953_Gimmick_1I059",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_954_Rover_0FV73": {
+ "templateId": "AthenaBackpack:BID_954_Rover_0FV73",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_955_Trey_18FU6": {
+ "templateId": "AthenaBackpack:BID_955_Trey_18FU6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_956_ValentineFashion_V4RF2": {
+ "templateId": "AthenaBackpack:BID_956_ValentineFashion_V4RF2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_957_PeelyToonMale": {
+ "templateId": "AthenaBackpack:BID_957_PeelyToonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_958_WeepingWoodsToon": {
+ "templateId": "AthenaBackpack:BID_958_WeepingWoodsToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_959_LurkFemale": {
+ "templateId": "AthenaBackpack:BID_959_LurkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_960_BunnyPurple": {
+ "templateId": "AthenaBackpack:BID_960_BunnyPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_961_LeatherJacketPurple": {
+ "templateId": "AthenaBackpack:BID_961_LeatherJacketPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_962_Thrive": {
+ "templateId": "AthenaBackpack:BID_962_Thrive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_963_ThriveSpirit": {
+ "templateId": "AthenaBackpack:BID_963_ThriveSpirit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_964_Jade": {
+ "templateId": "AthenaBackpack:BID_964_Jade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_965_AssembleP": {
+ "templateId": "AthenaBackpack:BID_965_AssembleP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_966_PalespookyPancake": {
+ "templateId": "AthenaBackpack:BID_966_PalespookyPancake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_967_FNCSBlue": {
+ "templateId": "AthenaBackpack:BID_967_FNCSBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_968_MysticBookMale": {
+ "templateId": "AthenaBackpack:BID_968_MysticBookMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_969_CyberArmor": {
+ "templateId": "AthenaBackpack:BID_969_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_970_OrderGuard": {
+ "templateId": "AthenaBackpack:BID_970_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_971_Cadet": {
+ "templateId": "AthenaBackpack:BID_971_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_972_KnightCat_Female": {
+ "templateId": "AthenaBackpack:BID_972_KnightCat_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_973_OriginPrisonMale": {
+ "templateId": "AthenaBackpack:BID_973_OriginPrisonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_974_Binary": {
+ "templateId": "AthenaBackpack:BID_974_Binary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_975_JourneyMentor_NFF9C": {
+ "templateId": "AthenaBackpack:BID_975_JourneyMentor_NFF9C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_976_LittleEgg_Female_4EJ99": {
+ "templateId": "AthenaBackpack:BID_976_LittleEgg_Female_4EJ99",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_977_SnowfallFemale_VRIU0": {
+ "templateId": "AthenaBackpack:BID_977_SnowfallFemale_VRIU0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_978_BacteriaFemale_UKDH2": {
+ "templateId": "AthenaBackpack:BID_978_BacteriaFemale_UKDH2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_979_CactusRockerFemale_IF1QA": {
+ "templateId": "AthenaBackpack:BID_979_CactusRockerFemale_IF1QA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_980_CactusRockerMale_7FLSJ": {
+ "templateId": "AthenaBackpack:BID_980_CactusRockerMale_7FLSJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_981_VampireHunterFemale": {
+ "templateId": "AthenaBackpack:BID_981_VampireHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_982_Scrawl_VFI6L": {
+ "templateId": "AthenaBackpack:BID_982_Scrawl_VFI6L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_983_ScrawlDino_AD541": {
+ "templateId": "AthenaBackpack:BID_983_ScrawlDino_AD541",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_984_GnomeCandle": {
+ "templateId": "AthenaBackpack:BID_984_GnomeCandle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_985_CactusDancerMale": {
+ "templateId": "AthenaBackpack:BID_985_CactusDancerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_986_CactusDancerFemale": {
+ "templateId": "AthenaBackpack:BID_986_CactusDancerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_987_Rumble_Female": {
+ "templateId": "AthenaBackpack:BID_987_Rumble_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_988_Rumble": {
+ "templateId": "AthenaBackpack:BID_988_Rumble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_989_CroissantMale": {
+ "templateId": "AthenaBackpack:BID_989_CroissantMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_990_LyricalMale": {
+ "templateId": "AthenaBackpack:BID_990_LyricalMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_991_LyricalFemale": {
+ "templateId": "AthenaBackpack:BID_991_LyricalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_992_BlackbirdMale": {
+ "templateId": "AthenaBackpack:BID_992_BlackbirdMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_993_NightingaleFemale": {
+ "templateId": "AthenaBackpack:BID_993_NightingaleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_994_MockingbirdFemale": {
+ "templateId": "AthenaBackpack:BID_994_MockingbirdFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_995_ForsakeFemale": {
+ "templateId": "AthenaBackpack:BID_995_ForsakeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_997_FNCS20Female": {
+ "templateId": "AthenaBackpack:BID_997_FNCS20Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_998_DarkStormMale": {
+ "templateId": "AthenaBackpack:BID_998_DarkStormMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_999_BinaryTwinFemale": {
+ "templateId": "AthenaBackpack:BID_999_BinaryTwinFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_001_RaspberryFemale": {
+ "templateId": "AthenaBackpack:BID_A_001_RaspberryFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_002_IndigoMale": {
+ "templateId": "AthenaBackpack:BID_A_002_IndigoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_003_Ultralight": {
+ "templateId": "AthenaBackpack:BID_A_003_Ultralight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_004_NeonCatSpeed": {
+ "templateId": "AthenaBackpack:BID_A_004_NeonCatSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_005_ShinyCreatureFemale": {
+ "templateId": "AthenaBackpack:BID_A_005_ShinyCreatureFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_006_CarbideKnightMale": {
+ "templateId": "AthenaBackpack:BID_A_006_CarbideKnightMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_007_SleepyTimePeely": {
+ "templateId": "AthenaBackpack:BID_A_007_SleepyTimePeely",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_008_Flappy_Green": {
+ "templateId": "AthenaBackpack:BID_A_008_Flappy_Green",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_009_Grapefruit": {
+ "templateId": "AthenaBackpack:BID_A_009_Grapefruit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_010_JumbotronS20Male": {
+ "templateId": "AthenaBackpack:BID_A_010_JumbotronS20Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_011_NobleMale": {
+ "templateId": "AthenaBackpack:BID_A_011_NobleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_012_AlfredoMale": {
+ "templateId": "AthenaBackpack:BID_A_012_AlfredoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_013_EternalVanguardFemale": {
+ "templateId": "AthenaBackpack:BID_A_013_EternalVanguardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_014_GlareMale": {
+ "templateId": "AthenaBackpack:BID_A_014_GlareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_015_ModNinjaMale": {
+ "templateId": "AthenaBackpack:BID_A_015_ModNinjaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_016_RavenQuillParrot": {
+ "templateId": "AthenaBackpack:BID_A_016_RavenQuillParrot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_017_NeonGraffitiLava": {
+ "templateId": "AthenaBackpack:BID_A_017_NeonGraffitiLava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_018_ArmadilloMale": {
+ "templateId": "AthenaBackpack:BID_A_018_ArmadilloMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_019_BlizzardBomberFemale": {
+ "templateId": "AthenaBackpack:BID_A_019_BlizzardBomberFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_020_CanaryMale": {
+ "templateId": "AthenaBackpack:BID_A_020_CanaryMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_021_LancelotMale": {
+ "templateId": "AthenaBackpack:BID_A_021_LancelotMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_022_BlueJayFemale": {
+ "templateId": "AthenaBackpack:BID_A_022_BlueJayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_024_FuchsiaFemale": {
+ "templateId": "AthenaBackpack:BID_A_024_FuchsiaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_025_PinkWidowFemale": {
+ "templateId": "AthenaBackpack:BID_A_025_PinkWidowFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_026_CollectableMale": {
+ "templateId": "AthenaBackpack:BID_A_026_CollectableMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_027_SpectacleWebMale": {
+ "templateId": "AthenaBackpack:BID_A_027_SpectacleWebMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_028_RealityBloom": {
+ "templateId": "AthenaBackpack:BID_A_028_RealityBloom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_029_RealmMale": {
+ "templateId": "AthenaBackpack:BID_A_029_RealmMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_030_EnsembleMaskMale": {
+ "templateId": "AthenaBackpack:BID_A_030_EnsembleMaskMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_031_EnsembleFemale": {
+ "templateId": "AthenaBackpack:BID_A_031_EnsembleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_032_EnsembleMaroonMale": {
+ "templateId": "AthenaBackpack:BID_A_032_EnsembleMaroonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_033_RedSleevesMale": {
+ "templateId": "AthenaBackpack:BID_A_033_RedSleevesMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_034_ChiselMale": {
+ "templateId": "AthenaBackpack:BID_A_034_ChiselMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_035_GloomFemale": {
+ "templateId": "AthenaBackpack:BID_A_035_GloomFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_036_TrifleMale": {
+ "templateId": "AthenaBackpack:BID_A_036_TrifleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_037_ParfaitFemale": {
+ "templateId": "AthenaBackpack:BID_A_037_ParfaitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_038_PennantSeas": {
+ "templateId": "AthenaBackpack:BID_A_038_PennantSeas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5",
+ "Particle6",
+ "Particle7",
+ "Particle8",
+ "Particle9",
+ "Particle10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_039_RaysFemale": {
+ "templateId": "AthenaBackpack:BID_A_039_RaysFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_040_BariumFemale": {
+ "templateId": "AthenaBackpack:BID_A_040_BariumFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_041_FNCS21Female": {
+ "templateId": "AthenaBackpack:BID_A_041_FNCS21Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_042_FuzzyBearSummerFemale": {
+ "templateId": "AthenaBackpack:BID_A_042_FuzzyBearSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_043_OhanaMale": {
+ "templateId": "AthenaBackpack:BID_A_043_OhanaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_044_SummerStride": {
+ "templateId": "AthenaBackpack:BID_A_044_SummerStride",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_045_FruitcakeFemale": {
+ "templateId": "AthenaBackpack:BID_A_045_FruitcakeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_046_PunkKoiSummerFemale": {
+ "templateId": "AthenaBackpack:BID_A_046_PunkKoiSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_047_SummerBreeze_Male": {
+ "templateId": "AthenaBackpack:BID_A_047_SummerBreeze_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_048_SummerVivid_InfinityFemale": {
+ "templateId": "AthenaBackpack:BID_A_048_SummerVivid_InfinityFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_049_Sunstar": {
+ "templateId": "AthenaBackpack:BID_A_049_Sunstar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_050_SunTideMale": {
+ "templateId": "AthenaBackpack:BID_A_050_SunTideMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_051_SunBeamFemale": {
+ "templateId": "AthenaBackpack:BID_A_051_SunBeamFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_052_DesertShadowMale": {
+ "templateId": "AthenaBackpack:BID_A_052_DesertShadowMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_053_JumbotronS21Male": {
+ "templateId": "AthenaBackpack:BID_A_053_JumbotronS21Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_054_TurboOrange": {
+ "templateId": "AthenaBackpack:BID_A_054_TurboOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_055_StaminaMale": {
+ "templateId": "AthenaBackpack:BID_A_055_StaminaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_056_StaminaFemale": {
+ "templateId": "AthenaBackpack:BID_A_056_StaminaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_057_StaminaCatMale": {
+ "templateId": "AthenaBackpack:BID_A_057_StaminaCatMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_058_StaminaMale_StandAlone": {
+ "templateId": "AthenaBackpack:BID_A_058_StaminaMale_StandAlone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_059_ChaosFemale": {
+ "templateId": "AthenaBackpack:BID_A_059_ChaosFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_060_WayfareMale": {
+ "templateId": "AthenaBackpack:BID_A_060_WayfareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_061_WayfareFemale": {
+ "templateId": "AthenaBackpack:BID_A_061_WayfareFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_062_WayfareMaskFemale": {
+ "templateId": "AthenaBackpack:BID_A_062_WayfareMaskFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_063_ApexWildMale": {
+ "templateId": "AthenaBackpack:BID_A_063_ApexWildMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_064_ApexWild_RedMale": {
+ "templateId": "AthenaBackpack:BID_A_064_ApexWild_RedMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_065_FutureSamuraiSummerMale": {
+ "templateId": "AthenaBackpack:BID_A_065_FutureSamuraiSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_066_Fog": {
+ "templateId": "AthenaBackpack:BID_A_066_Fog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_067_AstralFemale": {
+ "templateId": "AthenaBackpack:BID_A_067_AstralFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_068_NeonJam": {
+ "templateId": "AthenaBackpack:BID_A_068_NeonJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_069_HandlebarFemale": {
+ "templateId": "AthenaBackpack:BID_A_069_HandlebarFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_A_070_WildCardFemale": {
+ "templateId": "AthenaBackpack:BID_A_070_WildCardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_Empty": {
+ "templateId": "AthenaBackpack:BID_Empty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_NPC_CloakedAssassin": {
+ "templateId": "AthenaBackpack:BID_NPC_CloakedAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_NPC_HightowerDate": {
+ "templateId": "AthenaBackpack:BID_NPC_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_STWHero": {
+ "templateId": "AthenaBackpack:BID_STWHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_STWHeroNoDefaultBackpack": {
+ "templateId": "AthenaBackpack:BID_STWHeroNoDefaultBackpack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:BID_TBD_Cosmos": {
+ "templateId": "AthenaBackpack:BID_TBD_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:BID_TBD_MechanicalEngineer_Owl": {
+ "templateId": "AthenaPet:BID_TBD_MechanicalEngineer_Owl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:BoltonPickaxe": {
+ "templateId": "AthenaPickaxe:BoltonPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_AgentXKoi": {
+ "templateId": "AthenaCharacter:Character_AgentXKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Alien_Robot": {
+ "templateId": "AthenaCharacter:Character_Alien_Robot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_AllKnowing": {
+ "templateId": "AthenaCharacter:Character_AllKnowing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Amour": {
+ "templateId": "AthenaCharacter:Character_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Apprentice": {
+ "templateId": "AthenaCharacter:Character_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ArcticIceBlue": {
+ "templateId": "AthenaCharacter:Character_ArcticIceBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ArcticIceTalus": {
+ "templateId": "AthenaCharacter:Character_ArcticIceTalus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BadBear": {
+ "templateId": "AthenaCharacter:Character_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Ballerina": {
+ "templateId": "AthenaCharacter:Character_Ballerina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BariumDemon": {
+ "templateId": "AthenaCharacter:Character_BariumDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BasilStrong": {
+ "templateId": "AthenaCharacter:Character_BasilStrong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Billy": {
+ "templateId": "AthenaCharacter:Character_Billy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Bites": {
+ "templateId": "AthenaCharacter:Character_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BlingHearts_NPC": {
+ "templateId": "AthenaCharacter:Character_BlingHearts_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BlueGlaze": {
+ "templateId": "AthenaCharacter:Character_BlueGlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BlueJet": {
+ "templateId": "AthenaCharacter:Character_BlueJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BlueMystery_Dark": {
+ "templateId": "AthenaCharacter:Character_BlueMystery_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BoneMarrow": {
+ "templateId": "AthenaCharacter:Character_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Boredom": {
+ "templateId": "AthenaCharacter:Character_Boredom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_BunnyBR": {
+ "templateId": "AthenaCharacter:Character_BunnyBR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Calavera": {
+ "templateId": "AthenaCharacter:Character_Calavera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Candor": {
+ "templateId": "AthenaCharacter:Character_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CavalryAlt": {
+ "templateId": "AthenaCharacter:Character_CavalryAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Chainmail": {
+ "templateId": "AthenaCharacter:Character_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ChaosDarkIce": {
+ "templateId": "AthenaCharacter:Character_ChaosDarkIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ChillCat": {
+ "templateId": "AthenaCharacter:Character_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ChromeDJ_NPC": {
+ "templateId": "AthenaCharacter:Character_ChromeDJ_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CirrusVine": {
+ "templateId": "AthenaCharacter:Character_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Citadel": {
+ "templateId": "AthenaCharacter:Character_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ClearRadius": {
+ "templateId": "AthenaCharacter:Character_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CometDeer": {
+ "templateId": "AthenaCharacter:Character_CometDeer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CometWinter": {
+ "templateId": "AthenaCharacter:Character_CometWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Conscience": {
+ "templateId": "AthenaCharacter:Character_Conscience",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CoyoteTrail": {
+ "templateId": "AthenaCharacter:Character_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CoyoteTrailDark": {
+ "templateId": "AthenaCharacter:Character_CoyoteTrailDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_CrimsonPeak": {
+ "templateId": "AthenaCharacter:Character_CrimsonPeak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DarkAzalea": {
+ "templateId": "AthenaCharacter:Character_DarkAzalea",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Dazzle": {
+ "templateId": "AthenaCharacter:Character_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DefectBlip": {
+ "templateId": "AthenaCharacter:Character_DefectBlip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "RichColor2",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DefectGlitch": {
+ "templateId": "AthenaCharacter:Character_DefectGlitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "RichColor2",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Despair": {
+ "templateId": "AthenaCharacter:Character_Despair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DistantEchoCastle": {
+ "templateId": "AthenaCharacter:Character_DistantEchoCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DistantEchoPilot": {
+ "templateId": "AthenaCharacter:Character_DistantEchoPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DistantEchoPro": {
+ "templateId": "AthenaCharacter:Character_DistantEchoPro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_DualParadox": {
+ "templateId": "AthenaCharacter:Character_DualParadox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Dummy_FNCS": {
+ "templateId": "AthenaCharacter:Character_Dummy_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Ebony": {
+ "templateId": "AthenaCharacter:Character_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Elevate": {
+ "templateId": "AthenaCharacter:Character_Elevate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_EmberRae": {
+ "templateId": "AthenaCharacter:Character_EmberRae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_EmeraldGlassGreen": {
+ "templateId": "AthenaCharacter:Character_EmeraldGlassGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_EmeraldGlassPink": {
+ "templateId": "AthenaCharacter:Character_EmeraldGlassPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_EmeraldGlassRebel": {
+ "templateId": "AthenaCharacter:Character_EmeraldGlassRebel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_EmeraldGlassTransform": {
+ "templateId": "AthenaCharacter:Character_EmeraldGlassTransform",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_FallValleyBlink": {
+ "templateId": "AthenaCharacter:Character_FallValleyBlink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_FallValleyCharge": {
+ "templateId": "AthenaCharacter:Character_FallValleyCharge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_FearlessFlightHero": {
+ "templateId": "AthenaCharacter:Character_FearlessFlightHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_FearlessFlightMenace": {
+ "templateId": "AthenaCharacter:Character_FearlessFlightMenace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GalaxyKnight": {
+ "templateId": "AthenaCharacter:Character_GalaxyKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GelatinGummi": {
+ "templateId": "AthenaCharacter:Character_GelatinGummi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Genius": {
+ "templateId": "AthenaCharacter:Character_Genius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GeniusBlob": {
+ "templateId": "AthenaCharacter:Character_GeniusBlob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GoldenGuard": {
+ "templateId": "AthenaCharacter:Character_GoldenGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme": {
+ "templateId": "AthenaCharacter:Character_GrandScheme",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_Blue": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_Blue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_Grey": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_Grey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_NPC": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_Orange": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_Orange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_Red": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_Red",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_GrandScheme_Yellow": {
+ "templateId": "AthenaCharacter:Character_GrandScheme_Yellow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_HauntKoi": {
+ "templateId": "AthenaCharacter:Character_HauntKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_HeadhunterStar": {
+ "templateId": "AthenaCharacter:Character_HeadhunterStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Headset": {
+ "templateId": "AthenaCharacter:Character_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_HeistSleek": {
+ "templateId": "AthenaCharacter:Character_HeistSleek",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_HeistSleek_NPC": {
+ "templateId": "AthenaCharacter:Character_HeistSleek_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Hitman_Dark": {
+ "templateId": "AthenaCharacter:Character_Hitman_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_HumanBeing": {
+ "templateId": "AthenaCharacter:Character_HumanBeing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Imitator": {
+ "templateId": "AthenaCharacter:Character_Imitator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Imitator_NPC": {
+ "templateId": "AthenaCharacter:Character_Imitator_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Impulse": {
+ "templateId": "AthenaCharacter:Character_Impulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ImpulseSpring": {
+ "templateId": "AthenaCharacter:Character_ImpulseSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ImpulseSpring_B": {
+ "templateId": "AthenaCharacter:Character_ImpulseSpring_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ImpulseSpring_C": {
+ "templateId": "AthenaCharacter:Character_ImpulseSpring_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ImpulseSpring_D": {
+ "templateId": "AthenaCharacter:Character_ImpulseSpring_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ImpulseSpring_E": {
+ "templateId": "AthenaCharacter:Character_ImpulseSpring_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Impulse_B": {
+ "templateId": "AthenaCharacter:Character_Impulse_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Impulse_C": {
+ "templateId": "AthenaCharacter:Character_Impulse_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Impulse_D": {
+ "templateId": "AthenaCharacter:Character_Impulse_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Impulse_E": {
+ "templateId": "AthenaCharacter:Character_Impulse_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24",
+ "Mat25",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Inferno": {
+ "templateId": "AthenaCharacter:Character_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_InspireSpell": {
+ "templateId": "AthenaCharacter:Character_InspireSpell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_IronBlaze": {
+ "templateId": "AthenaCharacter:Character_IronBlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_IvyCross": {
+ "templateId": "AthenaCharacter:Character_IvyCross",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_JonesyOrangeFNCS": {
+ "templateId": "AthenaCharacter:Character_JonesyOrangeFNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_KeyTracker": {
+ "templateId": "AthenaCharacter:Character_KeyTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Knight_Boss_NPC": {
+ "templateId": "AthenaCharacter:Character_Knight_Boss_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Lettuce": {
+ "templateId": "AthenaCharacter:Character_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_LettuceCat": {
+ "templateId": "AthenaCharacter:Character_LettuceCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_LightningDragon": {
+ "templateId": "AthenaCharacter:Character_LightningDragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "ClothingColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Lilac": {
+ "templateId": "AthenaCharacter:Character_Lilac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_LocalZilla": {
+ "templateId": "AthenaCharacter:Character_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Looper": {
+ "templateId": "AthenaCharacter:Character_Looper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_LopexSnow": {
+ "templateId": "AthenaCharacter:Character_LopexSnow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MagicMeadow": {
+ "templateId": "AthenaCharacter:Character_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MasterKeyOrder": {
+ "templateId": "AthenaCharacter:Character_MasterKeyOrder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MechanicalEngineerRev": {
+ "templateId": "AthenaCharacter:Character_MechanicalEngineerRev",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MechPilotSharkSpeed": {
+ "templateId": "AthenaCharacter:Character_MechPilotSharkSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MechPilotSharkVelocity": {
+ "templateId": "AthenaCharacter:Character_MechPilotSharkVelocity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MercurialStorm": {
+ "templateId": "AthenaCharacter:Character_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MetalScout": {
+ "templateId": "AthenaCharacter:Character_MetalScout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Meteorwomen_Alt": {
+ "templateId": "AthenaCharacter:Character_Meteorwomen_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_MirageHike": {
+ "templateId": "AthenaCharacter:Character_MirageHike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Mochi": {
+ "templateId": "AthenaCharacter:Character_Mochi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Mouse": {
+ "templateId": "AthenaCharacter:Character_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Nebula": {
+ "templateId": "AthenaCharacter:Character_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_NightHawk": {
+ "templateId": "AthenaCharacter:Character_NightHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_NitroFlow": {
+ "templateId": "AthenaCharacter:Character_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage4",
+ "Stage2",
+ "Stage3",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Nox": {
+ "templateId": "AthenaCharacter:Character_Nox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_OceanBreeze": {
+ "templateId": "AthenaCharacter:Character_OceanBreeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Patches": {
+ "templateId": "AthenaCharacter:Character_Patches",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Apple": {
+ "templateId": "AthenaCharacter:Character_Pencil_Apple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive4",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive7",
+ "owned": [
+ "Emissive7",
+ "Emissive6",
+ "Emissive8"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Cherry": {
+ "templateId": "AthenaCharacter:Character_Pencil_Cherry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive0",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive3",
+ "Emissive4"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive8",
+ "owned": [
+ "Emissive8",
+ "Emissive7",
+ "Emissive6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Fig": {
+ "templateId": "AthenaCharacter:Character_Pencil_Fig",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive0",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive3",
+ "Emissive4"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive8",
+ "owned": [
+ "Emissive8",
+ "Emissive7",
+ "Emissive6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Grape": {
+ "templateId": "AthenaCharacter:Character_Pencil_Grape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive4",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive7",
+ "owned": [
+ "Emissive7",
+ "Emissive6",
+ "Emissive8"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Guava": {
+ "templateId": "AthenaCharacter:Character_Pencil_Guava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive0",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive3",
+ "Emissive4"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive8",
+ "owned": [
+ "Emissive8",
+ "Emissive7",
+ "Emissive6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Kiwi": {
+ "templateId": "AthenaCharacter:Character_Pencil_Kiwi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive4",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive7",
+ "owned": [
+ "Emissive7",
+ "Emissive6",
+ "Emissive8"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Lime": {
+ "templateId": "AthenaCharacter:Character_Pencil_Lime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive4",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive7",
+ "owned": [
+ "Emissive7",
+ "Emissive6",
+ "Emissive8"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Mango": {
+ "templateId": "AthenaCharacter:Character_Pencil_Mango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive0",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive3",
+ "Emissive4"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive8",
+ "owned": [
+ "Emissive8",
+ "Emissive7",
+ "Emissive6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Pear": {
+ "templateId": "AthenaCharacter:Character_Pencil_Pear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive0",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive3",
+ "Emissive4"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive8",
+ "owned": [
+ "Emissive8",
+ "Emissive7",
+ "Emissive6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Pencil_Raspberry": {
+ "templateId": "AthenaCharacter:Character_Pencil_Raspberry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Slot",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Emissive5",
+ "owned": [
+ "Emissive5",
+ "Emissive4",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Emissive7",
+ "owned": [
+ "Emissive7",
+ "Emissive6",
+ "Emissive8"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage30",
+ "owned": [
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasGlare": {
+ "templateId": "AthenaCharacter:Character_PennantSeasGlare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasGlare_B": {
+ "templateId": "AthenaCharacter:Character_PennantSeasGlare_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasGlare_C": {
+ "templateId": "AthenaCharacter:Character_PennantSeasGlare_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasGlare_D": {
+ "templateId": "AthenaCharacter:Character_PennantSeasGlare_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasGlare_E": {
+ "templateId": "AthenaCharacter:Character_PennantSeasGlare_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasShade": {
+ "templateId": "AthenaCharacter:Character_PennantSeasShade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasShade_B": {
+ "templateId": "AthenaCharacter:Character_PennantSeasShade_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasShade_C": {
+ "templateId": "AthenaCharacter:Character_PennantSeasShade_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasShade_D": {
+ "templateId": "AthenaCharacter:Character_PennantSeasShade_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PennantSeasShade_E": {
+ "templateId": "AthenaCharacter:Character_PennantSeasShade_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Photographer_Holiday": {
+ "templateId": "AthenaCharacter:Character_Photographer_Holiday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PinkJet": {
+ "templateId": "AthenaCharacter:Character_PinkJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PinkSpike": {
+ "templateId": "AthenaCharacter:Character_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PinkTrooperDark": {
+ "templateId": "AthenaCharacter:Character_PinkTrooperDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PlotTwist": {
+ "templateId": "AthenaCharacter:Character_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Possession": {
+ "templateId": "AthenaCharacter:Character_Possession",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PossessionHologram_NPC": {
+ "templateId": "AthenaCharacter:Character_PossessionHologram_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeOrder": {
+ "templateId": "AthenaCharacter:Character_PrimeOrder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_B": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_C": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_D": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_E": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_F": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_G": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_H": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_I": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrimeRedux_J": {
+ "templateId": "AthenaCharacter:Character_PrimeRedux_J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PrisonBreak": {
+ "templateId": "AthenaCharacter:Character_PrisonBreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PumpkinPunk_Glitch": {
+ "templateId": "AthenaCharacter:Character_PumpkinPunk_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_PumpkinSkeleton": {
+ "templateId": "AthenaCharacter:Character_PumpkinSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ReconExpert_FNCS": {
+ "templateId": "AthenaCharacter:Character_ReconExpert_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedOasisApricot": {
+ "templateId": "AthenaCharacter:Character_RedOasisApricot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedOasisBlackberry": {
+ "templateId": "AthenaCharacter:Character_RedOasisBlackberry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedOasisGooseberry": {
+ "templateId": "AthenaCharacter:Character_RedOasisGooseberry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedOasisJackfruit": {
+ "templateId": "AthenaCharacter:Character_RedOasisJackfruit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedOasisPomegranate": {
+ "templateId": "AthenaCharacter:Character_RedOasisPomegranate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RedPepper": {
+ "templateId": "AthenaCharacter:Character_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Robot_Hologram_NPC": {
+ "templateId": "AthenaCharacter:Character_Robot_Hologram_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RockerPunkAlt": {
+ "templateId": "AthenaCharacter:Character_RockerPunkAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RoseDust": {
+ "templateId": "AthenaCharacter:Character_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_RoseForm": {
+ "templateId": "AthenaCharacter:Character_RoseForm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Ruins": {
+ "templateId": "AthenaCharacter:Character_Ruins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Sahara": {
+ "templateId": "AthenaCharacter:Character_Sahara",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SailorSquadLeaderKoi": {
+ "templateId": "AthenaCharacter:Character_SailorSquadLeaderKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ScarletBionic": {
+ "templateId": "AthenaCharacter:Character_ScarletBionic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Scribble": {
+ "templateId": "AthenaCharacter:Character_Scribble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SharpFang": {
+ "templateId": "AthenaCharacter:Character_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_ShinyStar": {
+ "templateId": "AthenaCharacter:Character_ShinyStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Silencer": {
+ "templateId": "AthenaCharacter:Character_Silencer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SirWolf": {
+ "templateId": "AthenaCharacter:Character_SirWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Sparrow": {
+ "templateId": "AthenaCharacter:Character_Sparrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SplitDiamond": {
+ "templateId": "AthenaCharacter:Character_SplitDiamond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SportsFashion_Winter": {
+ "templateId": "AthenaCharacter:Character_SportsFashion_Winter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_StallionAviator": {
+ "templateId": "AthenaCharacter:Character_StallionAviator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_StallionSmoke": {
+ "templateId": "AthenaCharacter:Character_StallionSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_StreetGothSummer": {
+ "templateId": "AthenaCharacter:Character_StreetGothSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SunBurst": {
+ "templateId": "AthenaCharacter:Character_SunBurst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SunBurstAlt": {
+ "templateId": "AthenaCharacter:Character_SunBurstAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Sunlit": {
+ "templateId": "AthenaCharacter:Character_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_SwampKnight": {
+ "templateId": "AthenaCharacter:Character_SwampKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TheHerald": {
+ "templateId": "AthenaCharacter:Character_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TheHerald_NPC": {
+ "templateId": "AthenaCharacter:Character_TheHerald_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TigerRootFame": {
+ "templateId": "AthenaCharacter:Character_TigerRootFame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TigerRootHype": {
+ "templateId": "AthenaCharacter:Character_TigerRootHype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Titanium": {
+ "templateId": "AthenaCharacter:Character_Titanium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Titanium_NPC": {
+ "templateId": "AthenaCharacter:Character_Titanium_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TrainingGroundBot_NPC": {
+ "templateId": "AthenaCharacter:Character_TrainingGroundBot_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_TreasureHunterFashionsFNCS": {
+ "templateId": "AthenaCharacter:Character_TreasureHunterFashionsFNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Troops": {
+ "templateId": "AthenaCharacter:Character_Troops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Veiled": {
+ "templateId": "AthenaCharacter:Character_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Venice": {
+ "templateId": "AthenaCharacter:Character_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_Virtuous": {
+ "templateId": "AthenaCharacter:Character_Virtuous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:Character_VitalPsych": {
+ "templateId": "AthenaCharacter:Character_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage4",
+ "Stage2",
+ "Stage3",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_001_Athena_Commando_F_Default": {
+ "templateId": "AthenaCharacter:CID_001_Athena_Commando_F_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_002_Athena_Commando_F_Default": {
+ "templateId": "AthenaCharacter:CID_002_Athena_Commando_F_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_003_Athena_Commando_F_Default": {
+ "templateId": "AthenaCharacter:CID_003_Athena_Commando_F_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_004_Athena_Commando_F_Default": {
+ "templateId": "AthenaCharacter:CID_004_Athena_Commando_F_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_005_Athena_Commando_M_Default": {
+ "templateId": "AthenaCharacter:CID_005_Athena_Commando_M_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_006_Athena_Commando_M_Default": {
+ "templateId": "AthenaCharacter:CID_006_Athena_Commando_M_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_007_Athena_Commando_M_Default": {
+ "templateId": "AthenaCharacter:CID_007_Athena_Commando_M_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_008_Athena_Commando_M_Default": {
+ "templateId": "AthenaCharacter:CID_008_Athena_Commando_M_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_009_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_009_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_010_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_010_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_011_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_011_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_012_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_012_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_013_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_013_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_014_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_014_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_015_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_015_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_016_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_016_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_017_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_017_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_018_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_018_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_019_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_019_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_020_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_020_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_021_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_021_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_022_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_022_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_023_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_023_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_024_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_024_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_025_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_025_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_026_Athena_Commando_M": {
+ "templateId": "AthenaCharacter:CID_026_Athena_Commando_M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_027_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_027_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_028_Athena_Commando_F": {
+ "templateId": "AthenaCharacter:CID_028_Athena_Commando_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_029_Athena_Commando_F_Halloween": {
+ "templateId": "AthenaCharacter:CID_029_Athena_Commando_F_Halloween",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_030_Athena_Commando_M_Halloween": {
+ "templateId": "AthenaCharacter:CID_030_Athena_Commando_M_Halloween",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_031_Athena_Commando_M_Retro": {
+ "templateId": "AthenaCharacter:CID_031_Athena_Commando_M_Retro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_032_Athena_Commando_M_Medieval": {
+ "templateId": "AthenaCharacter:CID_032_Athena_Commando_M_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_033_Athena_Commando_F_Medieval": {
+ "templateId": "AthenaCharacter:CID_033_Athena_Commando_F_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_034_Athena_Commando_F_Medieval": {
+ "templateId": "AthenaCharacter:CID_034_Athena_Commando_F_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_035_Athena_Commando_M_Medieval": {
+ "templateId": "AthenaCharacter:CID_035_Athena_Commando_M_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_036_Athena_Commando_M_WinterCamo": {
+ "templateId": "AthenaCharacter:CID_036_Athena_Commando_M_WinterCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_037_Athena_Commando_F_WinterCamo": {
+ "templateId": "AthenaCharacter:CID_037_Athena_Commando_F_WinterCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_038_Athena_Commando_M_Disco": {
+ "templateId": "AthenaCharacter:CID_038_Athena_Commando_M_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_039_Athena_Commando_F_Disco": {
+ "templateId": "AthenaCharacter:CID_039_Athena_Commando_F_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_040_Athena_Commando_M_District": {
+ "templateId": "AthenaCharacter:CID_040_Athena_Commando_M_District",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_041_Athena_Commando_F_District": {
+ "templateId": "AthenaCharacter:CID_041_Athena_Commando_F_District",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_042_Athena_Commando_M_Cyberpunk": {
+ "templateId": "AthenaCharacter:CID_042_Athena_Commando_M_Cyberpunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_043_Athena_Commando_F_Stealth": {
+ "templateId": "AthenaCharacter:CID_043_Athena_Commando_F_Stealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_044_Athena_Commando_F_SciPop": {
+ "templateId": "AthenaCharacter:CID_044_Athena_Commando_F_SciPop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_045_Athena_Commando_M_HolidaySweater": {
+ "templateId": "AthenaCharacter:CID_045_Athena_Commando_M_HolidaySweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_046_Athena_Commando_F_HolidaySweater": {
+ "templateId": "AthenaCharacter:CID_046_Athena_Commando_F_HolidaySweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_047_Athena_Commando_F_HolidayReindeer": {
+ "templateId": "AthenaCharacter:CID_047_Athena_Commando_F_HolidayReindeer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_048_Athena_Commando_F_HolidayGingerbread": {
+ "templateId": "AthenaCharacter:CID_048_Athena_Commando_F_HolidayGingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_049_Athena_Commando_M_HolidayGingerbread": {
+ "templateId": "AthenaCharacter:CID_049_Athena_Commando_M_HolidayGingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_050_Athena_Commando_M_HolidayNutcracker": {
+ "templateId": "AthenaCharacter:CID_050_Athena_Commando_M_HolidayNutcracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_051_Athena_Commando_M_HolidayElf": {
+ "templateId": "AthenaCharacter:CID_051_Athena_Commando_M_HolidayElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_052_Athena_Commando_F_PSBlue": {
+ "templateId": "AthenaCharacter:CID_052_Athena_Commando_F_PSBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_053_Athena_Commando_M_SkiDude": {
+ "templateId": "AthenaCharacter:CID_053_Athena_Commando_M_SkiDude",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_054_Athena_Commando_M_SkiDude_USA": {
+ "templateId": "AthenaCharacter:CID_054_Athena_Commando_M_SkiDude_USA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_055_Athena_Commando_M_SkiDude_CAN": {
+ "templateId": "AthenaCharacter:CID_055_Athena_Commando_M_SkiDude_CAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_056_Athena_Commando_M_SkiDude_GBR": {
+ "templateId": "AthenaCharacter:CID_056_Athena_Commando_M_SkiDude_GBR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_057_Athena_Commando_M_SkiDude_FRA": {
+ "templateId": "AthenaCharacter:CID_057_Athena_Commando_M_SkiDude_FRA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_058_Athena_Commando_M_SkiDude_GER": {
+ "templateId": "AthenaCharacter:CID_058_Athena_Commando_M_SkiDude_GER",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_059_Athena_Commando_M_SkiDude_CHN": {
+ "templateId": "AthenaCharacter:CID_059_Athena_Commando_M_SkiDude_CHN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_060_Athena_Commando_M_SkiDude_KOR": {
+ "templateId": "AthenaCharacter:CID_060_Athena_Commando_M_SkiDude_KOR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_061_Athena_Commando_F_SkiGirl": {
+ "templateId": "AthenaCharacter:CID_061_Athena_Commando_F_SkiGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_062_Athena_Commando_F_SkiGirl_USA": {
+ "templateId": "AthenaCharacter:CID_062_Athena_Commando_F_SkiGirl_USA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_063_Athena_Commando_F_SkiGirl_CAN": {
+ "templateId": "AthenaCharacter:CID_063_Athena_Commando_F_SkiGirl_CAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_064_Athena_Commando_F_SkiGirl_GBR": {
+ "templateId": "AthenaCharacter:CID_064_Athena_Commando_F_SkiGirl_GBR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_065_Athena_Commando_F_SkiGirl_FRA": {
+ "templateId": "AthenaCharacter:CID_065_Athena_Commando_F_SkiGirl_FRA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_066_Athena_Commando_F_SkiGirl_GER": {
+ "templateId": "AthenaCharacter:CID_066_Athena_Commando_F_SkiGirl_GER",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_067_Athena_Commando_F_SkiGirl_CHN": {
+ "templateId": "AthenaCharacter:CID_067_Athena_Commando_F_SkiGirl_CHN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_068_Athena_Commando_F_SkiGirl_KOR": {
+ "templateId": "AthenaCharacter:CID_068_Athena_Commando_F_SkiGirl_KOR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_069_Athena_Commando_F_PinkBear": {
+ "templateId": "AthenaCharacter:CID_069_Athena_Commando_F_PinkBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_070_Athena_Commando_M_Cupid": {
+ "templateId": "AthenaCharacter:CID_070_Athena_Commando_M_Cupid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_071_Athena_Commando_M_Wukong": {
+ "templateId": "AthenaCharacter:CID_071_Athena_Commando_M_Wukong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_072_Athena_Commando_M_Scout": {
+ "templateId": "AthenaCharacter:CID_072_Athena_Commando_M_Scout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_073_Athena_Commando_F_Scuba": {
+ "templateId": "AthenaCharacter:CID_073_Athena_Commando_F_Scuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_074_Athena_Commando_F_Stripe": {
+ "templateId": "AthenaCharacter:CID_074_Athena_Commando_F_Stripe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_075_Athena_Commando_F_Stripe": {
+ "templateId": "AthenaCharacter:CID_075_Athena_Commando_F_Stripe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_076_Athena_Commando_F_Sup": {
+ "templateId": "AthenaCharacter:CID_076_Athena_Commando_F_Sup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_077_Athena_Commando_M_Sup": {
+ "templateId": "AthenaCharacter:CID_077_Athena_Commando_M_Sup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_078_Athena_Commando_M_Camo": {
+ "templateId": "AthenaCharacter:CID_078_Athena_Commando_M_Camo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_079_Athena_Commando_F_Camo": {
+ "templateId": "AthenaCharacter:CID_079_Athena_Commando_F_Camo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_080_Athena_Commando_M_Space": {
+ "templateId": "AthenaCharacter:CID_080_Athena_Commando_M_Space",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_081_Athena_Commando_F_Space": {
+ "templateId": "AthenaCharacter:CID_081_Athena_Commando_F_Space",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_082_Athena_Commando_M_Scavenger": {
+ "templateId": "AthenaCharacter:CID_082_Athena_Commando_M_Scavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_083_Athena_Commando_F_Tactical": {
+ "templateId": "AthenaCharacter:CID_083_Athena_Commando_F_Tactical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_084_Athena_Commando_M_Assassin": {
+ "templateId": "AthenaCharacter:CID_084_Athena_Commando_M_Assassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_085_Athena_Commando_M_Twitch": {
+ "templateId": "AthenaCharacter:CID_085_Athena_Commando_M_Twitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_086_Athena_Commando_M_RedSilk": {
+ "templateId": "AthenaCharacter:CID_086_Athena_Commando_M_RedSilk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_087_Athena_Commando_F_RedSilk": {
+ "templateId": "AthenaCharacter:CID_087_Athena_Commando_F_RedSilk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_088_Athena_Commando_M_SpaceBlack": {
+ "templateId": "AthenaCharacter:CID_088_Athena_Commando_M_SpaceBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_089_Athena_Commando_M_RetroGrey": {
+ "templateId": "AthenaCharacter:CID_089_Athena_Commando_M_RetroGrey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_090_Athena_Commando_M_Tactical": {
+ "templateId": "AthenaCharacter:CID_090_Athena_Commando_M_Tactical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_091_Athena_Commando_M_RedShirt": {
+ "templateId": "AthenaCharacter:CID_091_Athena_Commando_M_RedShirt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_092_Athena_Commando_F_RedShirt": {
+ "templateId": "AthenaCharacter:CID_092_Athena_Commando_F_RedShirt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_093_Athena_Commando_M_Dinosaur": {
+ "templateId": "AthenaCharacter:CID_093_Athena_Commando_M_Dinosaur",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_094_Athena_Commando_M_Rider": {
+ "templateId": "AthenaCharacter:CID_094_Athena_Commando_M_Rider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_095_Athena_Commando_M_Founder": {
+ "templateId": "AthenaCharacter:CID_095_Athena_Commando_M_Founder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_096_Athena_Commando_F_Founder": {
+ "templateId": "AthenaCharacter:CID_096_Athena_Commando_F_Founder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_097_Athena_Commando_F_RockerPunk": {
+ "templateId": "AthenaCharacter:CID_097_Athena_Commando_F_RockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_098_Athena_Commando_F_StPatty": {
+ "templateId": "AthenaCharacter:CID_098_Athena_Commando_F_StPatty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_099_Athena_Commando_F_Scathach": {
+ "templateId": "AthenaCharacter:CID_099_Athena_Commando_F_Scathach",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_100_Athena_Commando_M_CuChulainn": {
+ "templateId": "AthenaCharacter:CID_100_Athena_Commando_M_CuChulainn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_101_Athena_Commando_M_Stealth": {
+ "templateId": "AthenaCharacter:CID_101_Athena_Commando_M_Stealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_102_Athena_Commando_M_Raven": {
+ "templateId": "AthenaCharacter:CID_102_Athena_Commando_M_Raven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_103_Athena_Commando_M_Bunny": {
+ "templateId": "AthenaCharacter:CID_103_Athena_Commando_M_Bunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_104_Athena_Commando_F_Bunny": {
+ "templateId": "AthenaCharacter:CID_104_Athena_Commando_F_Bunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_105_Athena_Commando_F_SpaceBlack": {
+ "templateId": "AthenaCharacter:CID_105_Athena_Commando_F_SpaceBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_106_Athena_Commando_F_Taxi": {
+ "templateId": "AthenaCharacter:CID_106_Athena_Commando_F_Taxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_107_Athena_Commando_F_PajamaParty": {
+ "templateId": "AthenaCharacter:CID_107_Athena_Commando_F_PajamaParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_108_Athena_Commando_M_Fishhead": {
+ "templateId": "AthenaCharacter:CID_108_Athena_Commando_M_Fishhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_109_Athena_Commando_M_Pizza": {
+ "templateId": "AthenaCharacter:CID_109_Athena_Commando_M_Pizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_110_Athena_Commando_F_CircuitBreaker": {
+ "templateId": "AthenaCharacter:CID_110_Athena_Commando_F_CircuitBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_111_Athena_Commando_F_Robo": {
+ "templateId": "AthenaCharacter:CID_111_Athena_Commando_F_Robo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_112_Athena_Commando_M_Brite": {
+ "templateId": "AthenaCharacter:CID_112_Athena_Commando_M_Brite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_113_Athena_Commando_M_BlueAce": {
+ "templateId": "AthenaCharacter:CID_113_Athena_Commando_M_BlueAce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_114_Athena_Commando_F_TacticalWoodland": {
+ "templateId": "AthenaCharacter:CID_114_Athena_Commando_F_TacticalWoodland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_115_Athena_Commando_M_CarbideBlue": {
+ "templateId": "AthenaCharacter:CID_115_Athena_Commando_M_CarbideBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_116_Athena_Commando_M_CarbideBlack": {
+ "templateId": "AthenaCharacter:CID_116_Athena_Commando_M_CarbideBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_117_Athena_Commando_M_TacticalJungle": {
+ "templateId": "AthenaCharacter:CID_117_Athena_Commando_M_TacticalJungle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_118_Athena_Commando_F_Valor": {
+ "templateId": "AthenaCharacter:CID_118_Athena_Commando_F_Valor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_119_Athena_Commando_F_Candy": {
+ "templateId": "AthenaCharacter:CID_119_Athena_Commando_F_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_120_Athena_Commando_F_Graffiti": {
+ "templateId": "AthenaCharacter:CID_120_Athena_Commando_F_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_121_Athena_Commando_M_Graffiti": {
+ "templateId": "AthenaCharacter:CID_121_Athena_Commando_M_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_122_Athena_Commando_M_Metal": {
+ "templateId": "AthenaCharacter:CID_122_Athena_Commando_M_Metal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_123_Athena_Commando_F_Metal": {
+ "templateId": "AthenaCharacter:CID_123_Athena_Commando_F_Metal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_124_Athena_Commando_F_AuroraGlow": {
+ "templateId": "AthenaCharacter:CID_124_Athena_Commando_F_AuroraGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_125_Athena_Commando_M_TacticalWoodland": {
+ "templateId": "AthenaCharacter:CID_125_Athena_Commando_M_TacticalWoodland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_126_Athena_Commando_M_AuroraGlow": {
+ "templateId": "AthenaCharacter:CID_126_Athena_Commando_M_AuroraGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_127_Athena_Commando_M_Hazmat": {
+ "templateId": "AthenaCharacter:CID_127_Athena_Commando_M_Hazmat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_128_Athena_Commando_F_Hazmat": {
+ "templateId": "AthenaCharacter:CID_128_Athena_Commando_F_Hazmat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_129_Athena_Commando_M_Deco": {
+ "templateId": "AthenaCharacter:CID_129_Athena_Commando_M_Deco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_130_Athena_Commando_M_Merman": {
+ "templateId": "AthenaCharacter:CID_130_Athena_Commando_M_Merman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_131_Athena_Commando_M_Warpaint": {
+ "templateId": "AthenaCharacter:CID_131_Athena_Commando_M_Warpaint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_132_Athena_Commando_M_Venus": {
+ "templateId": "AthenaCharacter:CID_132_Athena_Commando_M_Venus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_133_Athena_Commando_F_Deco": {
+ "templateId": "AthenaCharacter:CID_133_Athena_Commando_F_Deco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_134_Athena_Commando_M_Jailbird": {
+ "templateId": "AthenaCharacter:CID_134_Athena_Commando_M_Jailbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_135_Athena_Commando_F_Jailbird": {
+ "templateId": "AthenaCharacter:CID_135_Athena_Commando_F_Jailbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_136_Athena_Commando_M_StreetBasketball": {
+ "templateId": "AthenaCharacter:CID_136_Athena_Commando_M_StreetBasketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_137_Athena_Commando_F_StreetBasketball": {
+ "templateId": "AthenaCharacter:CID_137_Athena_Commando_F_StreetBasketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_138_Athena_Commando_M_PSBurnout": {
+ "templateId": "AthenaCharacter:CID_138_Athena_Commando_M_PSBurnout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_139_Athena_Commando_M_FighterPilot": {
+ "templateId": "AthenaCharacter:CID_139_Athena_Commando_M_FighterPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_140_Athena_Commando_M_Visitor": {
+ "templateId": "AthenaCharacter:CID_140_Athena_Commando_M_Visitor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_141_Athena_Commando_M_DarkEagle": {
+ "templateId": "AthenaCharacter:CID_141_Athena_Commando_M_DarkEagle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_142_Athena_Commando_M_WWIIPilot": {
+ "templateId": "AthenaCharacter:CID_142_Athena_Commando_M_WWIIPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_143_Athena_Commando_F_DarkNinja": {
+ "templateId": "AthenaCharacter:CID_143_Athena_Commando_F_DarkNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_144_Athena_Commando_M_SoccerDudeA": {
+ "templateId": "AthenaCharacter:CID_144_Athena_Commando_M_SoccerDudeA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_145_Athena_Commando_M_SoccerDudeB": {
+ "templateId": "AthenaCharacter:CID_145_Athena_Commando_M_SoccerDudeB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_146_Athena_Commando_M_SoccerDudeC": {
+ "templateId": "AthenaCharacter:CID_146_Athena_Commando_M_SoccerDudeC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_147_Athena_Commando_M_SoccerDudeD": {
+ "templateId": "AthenaCharacter:CID_147_Athena_Commando_M_SoccerDudeD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_148_Athena_Commando_F_SoccerGirlA": {
+ "templateId": "AthenaCharacter:CID_148_Athena_Commando_F_SoccerGirlA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_149_Athena_Commando_F_SoccerGirlB": {
+ "templateId": "AthenaCharacter:CID_149_Athena_Commando_F_SoccerGirlB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_150_Athena_Commando_F_SoccerGirlC": {
+ "templateId": "AthenaCharacter:CID_150_Athena_Commando_F_SoccerGirlC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_151_Athena_Commando_F_SoccerGirlD": {
+ "templateId": "AthenaCharacter:CID_151_Athena_Commando_F_SoccerGirlD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "Fortnite",
+ "owned": [
+ "Fortnite",
+ "Argentina",
+ "Australia",
+ "Belgium",
+ "Brazil",
+ "Canada",
+ "Colombia",
+ "Denmark",
+ "Egypt",
+ "England",
+ "France",
+ "Germany",
+ "Iceland",
+ "Italy",
+ "Ireland",
+ "Japan",
+ "Korea",
+ "Mexico",
+ "Netherlands",
+ "NewZealand",
+ "Nigeria",
+ "Norway",
+ "Poland",
+ "Portugal",
+ "Russia",
+ "Saudi",
+ "Spain",
+ "Sweden",
+ "Switzerland",
+ "Terkey",
+ "Uruguay",
+ "USA"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_152_Athena_Commando_F_CarbideOrange": {
+ "templateId": "AthenaCharacter:CID_152_Athena_Commando_F_CarbideOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_153_Athena_Commando_F_CarbideBlack": {
+ "templateId": "AthenaCharacter:CID_153_Athena_Commando_F_CarbideBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_154_Athena_Commando_M_Gumshoe": {
+ "templateId": "AthenaCharacter:CID_154_Athena_Commando_M_Gumshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_155_Athena_Commando_F_Gumshoe": {
+ "templateId": "AthenaCharacter:CID_155_Athena_Commando_F_Gumshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_156_Athena_Commando_F_FuzzyBearInd": {
+ "templateId": "AthenaCharacter:CID_156_Athena_Commando_F_FuzzyBearInd",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_157_Athena_Commando_M_StarsAndStripes": {
+ "templateId": "AthenaCharacter:CID_157_Athena_Commando_M_StarsAndStripes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_158_Athena_Commando_F_StarsAndStripes": {
+ "templateId": "AthenaCharacter:CID_158_Athena_Commando_F_StarsAndStripes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_159_Athena_Commando_M_GumshoeDark": {
+ "templateId": "AthenaCharacter:CID_159_Athena_Commando_M_GumshoeDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_160_Athena_Commando_M_SpeedyRed": {
+ "templateId": "AthenaCharacter:CID_160_Athena_Commando_M_SpeedyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_161_Athena_Commando_M_Drift": {
+ "templateId": "AthenaCharacter:CID_161_Athena_Commando_M_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_162_Athena_Commando_F_StreetRacer": {
+ "templateId": "AthenaCharacter:CID_162_Athena_Commando_F_StreetRacer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_163_Athena_Commando_F_Viking": {
+ "templateId": "AthenaCharacter:CID_163_Athena_Commando_F_Viking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_164_Athena_Commando_M_Viking": {
+ "templateId": "AthenaCharacter:CID_164_Athena_Commando_M_Viking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_165_Athena_Commando_M_DarkViking": {
+ "templateId": "AthenaCharacter:CID_165_Athena_Commando_M_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_166_Athena_Commando_F_Lifeguard": {
+ "templateId": "AthenaCharacter:CID_166_Athena_Commando_F_Lifeguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_167_Athena_Commando_M_TacticalBadass": {
+ "templateId": "AthenaCharacter:CID_167_Athena_Commando_M_TacticalBadass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_168_Athena_Commando_M_Shark": {
+ "templateId": "AthenaCharacter:CID_168_Athena_Commando_M_Shark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_169_Athena_Commando_M_Luchador": {
+ "templateId": "AthenaCharacter:CID_169_Athena_Commando_M_Luchador",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_170_Athena_Commando_F_Luchador": {
+ "templateId": "AthenaCharacter:CID_170_Athena_Commando_F_Luchador",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_171_Athena_Commando_M_SharpDresser": {
+ "templateId": "AthenaCharacter:CID_171_Athena_Commando_M_SharpDresser",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_172_Athena_Commando_F_SharpDresser": {
+ "templateId": "AthenaCharacter:CID_172_Athena_Commando_F_SharpDresser",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_173_Athena_Commando_F_StarfishUniform": {
+ "templateId": "AthenaCharacter:CID_173_Athena_Commando_F_StarfishUniform",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_174_Athena_Commando_F_CarbideWhite": {
+ "templateId": "AthenaCharacter:CID_174_Athena_Commando_F_CarbideWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_175_Athena_Commando_M_Celestial": {
+ "templateId": "AthenaCharacter:CID_175_Athena_Commando_M_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_176_Athena_Commando_M_Lifeguard": {
+ "templateId": "AthenaCharacter:CID_176_Athena_Commando_M_Lifeguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_177_Athena_Commando_M_StreetRacerCobra": {
+ "templateId": "AthenaCharacter:CID_177_Athena_Commando_M_StreetRacerCobra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_178_Athena_Commando_F_StreetRacerCobra": {
+ "templateId": "AthenaCharacter:CID_178_Athena_Commando_F_StreetRacerCobra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_179_Athena_Commando_F_Scuba": {
+ "templateId": "AthenaCharacter:CID_179_Athena_Commando_F_Scuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_180_Athena_Commando_M_Scuba": {
+ "templateId": "AthenaCharacter:CID_180_Athena_Commando_M_Scuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_182_Athena_Commando_M_ModernMilitary": {
+ "templateId": "AthenaCharacter:CID_182_Athena_Commando_M_ModernMilitary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_183_Athena_Commando_M_ModernMilitaryRed": {
+ "templateId": "AthenaCharacter:CID_183_Athena_Commando_M_ModernMilitaryRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_184_Athena_Commando_M_DurrburgerWorker": {
+ "templateId": "AthenaCharacter:CID_184_Athena_Commando_M_DurrburgerWorker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_185_Athena_Commando_M_DurrburgerHero": {
+ "templateId": "AthenaCharacter:CID_185_Athena_Commando_M_DurrburgerHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_186_Athena_Commando_M_Exercise": {
+ "templateId": "AthenaCharacter:CID_186_Athena_Commando_M_Exercise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_187_Athena_Commando_F_FuzzyBearPanda": {
+ "templateId": "AthenaCharacter:CID_187_Athena_Commando_F_FuzzyBearPanda",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_188_Athena_Commando_F_StreetRacerWhite": {
+ "templateId": "AthenaCharacter:CID_188_Athena_Commando_F_StreetRacerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_189_Athena_Commando_F_Exercise": {
+ "templateId": "AthenaCharacter:CID_189_Athena_Commando_F_Exercise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_190_Athena_Commando_M_StreetRacerWhite": {
+ "templateId": "AthenaCharacter:CID_190_Athena_Commando_M_StreetRacerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_191_Athena_Commando_M_SushiChef": {
+ "templateId": "AthenaCharacter:CID_191_Athena_Commando_M_SushiChef",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_192_Athena_Commando_M_Hippie": {
+ "templateId": "AthenaCharacter:CID_192_Athena_Commando_M_Hippie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_193_Athena_Commando_F_Hippie": {
+ "templateId": "AthenaCharacter:CID_193_Athena_Commando_F_Hippie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_194_Athena_Commando_F_RavenQuill": {
+ "templateId": "AthenaCharacter:CID_194_Athena_Commando_F_RavenQuill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_195_Athena_Commando_F_Bling": {
+ "templateId": "AthenaCharacter:CID_195_Athena_Commando_F_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_196_Athena_Commando_M_Biker": {
+ "templateId": "AthenaCharacter:CID_196_Athena_Commando_M_Biker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_197_Athena_Commando_F_Biker": {
+ "templateId": "AthenaCharacter:CID_197_Athena_Commando_F_Biker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_198_Athena_Commando_M_BlueSamurai": {
+ "templateId": "AthenaCharacter:CID_198_Athena_Commando_M_BlueSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_199_Athena_Commando_F_BlueSamurai": {
+ "templateId": "AthenaCharacter:CID_199_Athena_Commando_F_BlueSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_200_Athena_Commando_M_DarkPaintballer": {
+ "templateId": "AthenaCharacter:CID_200_Athena_Commando_M_DarkPaintballer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_201_Athena_Commando_M_DesertOps": {
+ "templateId": "AthenaCharacter:CID_201_Athena_Commando_M_DesertOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_202_Athena_Commando_F_DesertOps": {
+ "templateId": "AthenaCharacter:CID_202_Athena_Commando_F_DesertOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_203_Athena_Commando_M_CloakedStar": {
+ "templateId": "AthenaCharacter:CID_203_Athena_Commando_M_CloakedStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_204_Athena_Commando_M_GarageBand": {
+ "templateId": "AthenaCharacter:CID_204_Athena_Commando_M_GarageBand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_205_Athena_Commando_F_GarageBand": {
+ "templateId": "AthenaCharacter:CID_205_Athena_Commando_F_GarageBand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_206_Athena_Commando_M_Bling": {
+ "templateId": "AthenaCharacter:CID_206_Athena_Commando_M_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_207_Athena_Commando_M_FootballDudeA": {
+ "templateId": "AthenaCharacter:CID_207_Athena_Commando_M_FootballDudeA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_208_Athena_Commando_M_FootballDudeB": {
+ "templateId": "AthenaCharacter:CID_208_Athena_Commando_M_FootballDudeB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_209_Athena_Commando_M_FootballDudeC": {
+ "templateId": "AthenaCharacter:CID_209_Athena_Commando_M_FootballDudeC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_210_Athena_Commando_F_FootballGirlA": {
+ "templateId": "AthenaCharacter:CID_210_Athena_Commando_F_FootballGirlA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_211_Athena_Commando_F_FootballGirlB": {
+ "templateId": "AthenaCharacter:CID_211_Athena_Commando_F_FootballGirlB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_212_Athena_Commando_F_FootballGirlC": {
+ "templateId": "AthenaCharacter:CID_212_Athena_Commando_F_FootballGirlC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_214_Athena_Commando_F_FootballReferee": {
+ "templateId": "AthenaCharacter:CID_214_Athena_Commando_F_FootballReferee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_215_Athena_Commando_M_FootballReferee": {
+ "templateId": "AthenaCharacter:CID_215_Athena_Commando_M_FootballReferee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_216_Athena_Commando_F_Medic": {
+ "templateId": "AthenaCharacter:CID_216_Athena_Commando_F_Medic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_217_Athena_Commando_M_Medic": {
+ "templateId": "AthenaCharacter:CID_217_Athena_Commando_M_Medic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_218_Athena_Commando_M_GreenBeret": {
+ "templateId": "AthenaCharacter:CID_218_Athena_Commando_M_GreenBeret",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_219_Athena_Commando_M_Hacivat": {
+ "templateId": "AthenaCharacter:CID_219_Athena_Commando_M_Hacivat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_220_Athena_Commando_F_Clown": {
+ "templateId": "AthenaCharacter:CID_220_Athena_Commando_F_Clown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_221_Athena_Commando_M_Clown": {
+ "templateId": "AthenaCharacter:CID_221_Athena_Commando_M_Clown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_222_Athena_Commando_F_DarkViking": {
+ "templateId": "AthenaCharacter:CID_222_Athena_Commando_F_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_223_Athena_Commando_M_Dieselpunk": {
+ "templateId": "AthenaCharacter:CID_223_Athena_Commando_M_Dieselpunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_224_Athena_Commando_F_Dieselpunk": {
+ "templateId": "AthenaCharacter:CID_224_Athena_Commando_F_Dieselpunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_225_Athena_Commando_M_Octoberfest": {
+ "templateId": "AthenaCharacter:CID_225_Athena_Commando_M_Octoberfest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_226_Athena_Commando_F_Octoberfest": {
+ "templateId": "AthenaCharacter:CID_226_Athena_Commando_F_Octoberfest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_227_Athena_Commando_F_Vampire": {
+ "templateId": "AthenaCharacter:CID_227_Athena_Commando_F_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_228_Athena_Commando_M_Vampire": {
+ "templateId": "AthenaCharacter:CID_228_Athena_Commando_M_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_229_Athena_Commando_F_DarkBomber": {
+ "templateId": "AthenaCharacter:CID_229_Athena_Commando_F_DarkBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_230_Athena_Commando_M_Werewolf": {
+ "templateId": "AthenaCharacter:CID_230_Athena_Commando_M_Werewolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_231_Athena_Commando_F_RedRiding": {
+ "templateId": "AthenaCharacter:CID_231_Athena_Commando_F_RedRiding",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_232_Athena_Commando_F_HalloweenTomato": {
+ "templateId": "AthenaCharacter:CID_232_Athena_Commando_F_HalloweenTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_233_Athena_Commando_M_FortniteDJ": {
+ "templateId": "AthenaCharacter:CID_233_Athena_Commando_M_FortniteDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_234_Athena_Commando_M_LlamaRider": {
+ "templateId": "AthenaCharacter:CID_234_Athena_Commando_M_LlamaRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_235_Athena_Commando_M_Scarecrow": {
+ "templateId": "AthenaCharacter:CID_235_Athena_Commando_M_Scarecrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_236_Athena_Commando_F_Scarecrow": {
+ "templateId": "AthenaCharacter:CID_236_Athena_Commando_F_Scarecrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_237_Athena_Commando_F_Cowgirl": {
+ "templateId": "AthenaCharacter:CID_237_Athena_Commando_F_Cowgirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_238_Athena_Commando_F_FootballGirlD": {
+ "templateId": "AthenaCharacter:CID_238_Athena_Commando_F_FootballGirlD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_239_Athena_Commando_M_FootballDudeD": {
+ "templateId": "AthenaCharacter:CID_239_Athena_Commando_M_FootballDudeD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "036",
+ "032",
+ "033",
+ "034",
+ "035"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_240_Athena_Commando_F_Plague": {
+ "templateId": "AthenaCharacter:CID_240_Athena_Commando_F_Plague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_241_Athena_Commando_M_Plague": {
+ "templateId": "AthenaCharacter:CID_241_Athena_Commando_M_Plague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_242_Athena_Commando_F_Bullseye": {
+ "templateId": "AthenaCharacter:CID_242_Athena_Commando_F_Bullseye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_243_Athena_Commando_M_PumpkinSlice": {
+ "templateId": "AthenaCharacter:CID_243_Athena_Commando_M_PumpkinSlice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_244_Athena_Commando_M_PumpkinSuit": {
+ "templateId": "AthenaCharacter:CID_244_Athena_Commando_M_PumpkinSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_245_Athena_Commando_F_DurrburgerPjs": {
+ "templateId": "AthenaCharacter:CID_245_Athena_Commando_F_DurrburgerPjs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_246_Athena_Commando_F_Grave": {
+ "templateId": "AthenaCharacter:CID_246_Athena_Commando_F_Grave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "ClothingColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_247_Athena_Commando_M_GuanYu": {
+ "templateId": "AthenaCharacter:CID_247_Athena_Commando_M_GuanYu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_248_Athena_Commando_M_BlackWidow": {
+ "templateId": "AthenaCharacter:CID_248_Athena_Commando_M_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_249_Athena_Commando_F_BlackWidow": {
+ "templateId": "AthenaCharacter:CID_249_Athena_Commando_F_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_250_Athena_Commando_M_EvilCowboy": {
+ "templateId": "AthenaCharacter:CID_250_Athena_Commando_M_EvilCowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_251_Athena_Commando_F_Muertos": {
+ "templateId": "AthenaCharacter:CID_251_Athena_Commando_F_Muertos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_252_Athena_Commando_M_Muertos": {
+ "templateId": "AthenaCharacter:CID_252_Athena_Commando_M_Muertos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_253_Athena_Commando_M_MilitaryFashion2": {
+ "templateId": "AthenaCharacter:CID_253_Athena_Commando_M_MilitaryFashion2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_254_Athena_Commando_M_Zombie": {
+ "templateId": "AthenaCharacter:CID_254_Athena_Commando_M_Zombie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_255_Athena_Commando_F_HalloweenBunny": {
+ "templateId": "AthenaCharacter:CID_255_Athena_Commando_F_HalloweenBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_256_Athena_Commando_M_Pumpkin": {
+ "templateId": "AthenaCharacter:CID_256_Athena_Commando_M_Pumpkin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_257_Athena_Commando_M_SamuraiUltra": {
+ "templateId": "AthenaCharacter:CID_257_Athena_Commando_M_SamuraiUltra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_258_Athena_Commando_F_FuzzyBearHalloween": {
+ "templateId": "AthenaCharacter:CID_258_Athena_Commando_F_FuzzyBearHalloween",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_259_Athena_Commando_M_StreetOps": {
+ "templateId": "AthenaCharacter:CID_259_Athena_Commando_M_StreetOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_260_Athena_Commando_F_StreetOps": {
+ "templateId": "AthenaCharacter:CID_260_Athena_Commando_F_StreetOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_261_Athena_Commando_M_RaptorArcticCamo": {
+ "templateId": "AthenaCharacter:CID_261_Athena_Commando_M_RaptorArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_262_Athena_Commando_M_MadCommander": {
+ "templateId": "AthenaCharacter:CID_262_Athena_Commando_M_MadCommander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_263_Athena_Commando_F_MadCommander": {
+ "templateId": "AthenaCharacter:CID_263_Athena_Commando_F_MadCommander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_264_Athena_Commando_M_AnimalJackets": {
+ "templateId": "AthenaCharacter:CID_264_Athena_Commando_M_AnimalJackets",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_265_Athena_Commando_F_AnimalJackets": {
+ "templateId": "AthenaCharacter:CID_265_Athena_Commando_F_AnimalJackets",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_266_Athena_Commando_F_LlamaRider": {
+ "templateId": "AthenaCharacter:CID_266_Athena_Commando_F_LlamaRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_267_Athena_Commando_M_RobotRed": {
+ "templateId": "AthenaCharacter:CID_267_Athena_Commando_M_RobotRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_268_Athena_Commando_M_RockerPunk": {
+ "templateId": "AthenaCharacter:CID_268_Athena_Commando_M_RockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_269_Athena_Commando_M_Wizard": {
+ "templateId": "AthenaCharacter:CID_269_Athena_Commando_M_Wizard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_270_Athena_Commando_F_Witch": {
+ "templateId": "AthenaCharacter:CID_270_Athena_Commando_F_Witch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_271_Athena_Commando_F_SushiChef": {
+ "templateId": "AthenaCharacter:CID_271_Athena_Commando_F_SushiChef",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_272_Athena_Commando_M_HornedMask": {
+ "templateId": "AthenaCharacter:CID_272_Athena_Commando_M_HornedMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_273_Athena_Commando_F_HornedMask": {
+ "templateId": "AthenaCharacter:CID_273_Athena_Commando_F_HornedMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_274_Athena_Commando_M_Feathers": {
+ "templateId": "AthenaCharacter:CID_274_Athena_Commando_M_Feathers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_275_Athena_Commando_M_SniperHood": {
+ "templateId": "AthenaCharacter:CID_275_Athena_Commando_M_SniperHood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_276_Athena_Commando_F_SniperHood": {
+ "templateId": "AthenaCharacter:CID_276_Athena_Commando_F_SniperHood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_277_Athena_Commando_M_Moth": {
+ "templateId": "AthenaCharacter:CID_277_Athena_Commando_M_Moth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_278_Athena_Commando_M_Yeti": {
+ "templateId": "AthenaCharacter:CID_278_Athena_Commando_M_Yeti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_279_Athena_Commando_M_TacticalSanta": {
+ "templateId": "AthenaCharacter:CID_279_Athena_Commando_M_TacticalSanta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_280_Athena_Commando_M_Snowman": {
+ "templateId": "AthenaCharacter:CID_280_Athena_Commando_M_Snowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_281_Athena_Commando_F_SnowBoard": {
+ "templateId": "AthenaCharacter:CID_281_Athena_Commando_F_SnowBoard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_286_Athena_Commando_F_NeonCat": {
+ "templateId": "AthenaCharacter:CID_286_Athena_Commando_F_NeonCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage3",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_287_Athena_Commando_M_ArcticSniper": {
+ "templateId": "AthenaCharacter:CID_287_Athena_Commando_M_ArcticSniper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_288_Athena_Commando_M_IceKing": {
+ "templateId": "AthenaCharacter:CID_288_Athena_Commando_M_IceKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_290_Athena_Commando_F_BlueBadass": {
+ "templateId": "AthenaCharacter:CID_290_Athena_Commando_F_BlueBadass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_291_Athena_Commando_M_Dieselpunk02": {
+ "templateId": "AthenaCharacter:CID_291_Athena_Commando_M_Dieselpunk02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_292_Athena_Commando_F_Dieselpunk02": {
+ "templateId": "AthenaCharacter:CID_292_Athena_Commando_F_Dieselpunk02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_293_Athena_Commando_M_RavenWinter": {
+ "templateId": "AthenaCharacter:CID_293_Athena_Commando_M_RavenWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_294_Athena_Commando_F_RedKnightWinter": {
+ "templateId": "AthenaCharacter:CID_294_Athena_Commando_F_RedKnightWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_295_Athena_Commando_M_CupidWinter": {
+ "templateId": "AthenaCharacter:CID_295_Athena_Commando_M_CupidWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_296_Athena_Commando_M_Math": {
+ "templateId": "AthenaCharacter:CID_296_Athena_Commando_M_Math",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_297_Athena_Commando_F_Math": {
+ "templateId": "AthenaCharacter:CID_297_Athena_Commando_F_Math",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_298_Athena_Commando_F_IceMaiden": {
+ "templateId": "AthenaCharacter:CID_298_Athena_Commando_F_IceMaiden",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_299_Athena_Commando_M_SnowNinja": {
+ "templateId": "AthenaCharacter:CID_299_Athena_Commando_M_SnowNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_300_Athena_Commando_F_Angel": {
+ "templateId": "AthenaCharacter:CID_300_Athena_Commando_F_Angel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_301_Athena_Commando_M_Rhino": {
+ "templateId": "AthenaCharacter:CID_301_Athena_Commando_M_Rhino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_302_Athena_Commando_F_Nutcracker": {
+ "templateId": "AthenaCharacter:CID_302_Athena_Commando_F_Nutcracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_303_Athena_Commando_F_SnowFairy": {
+ "templateId": "AthenaCharacter:CID_303_Athena_Commando_F_SnowFairy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_304_Athena_Commando_M_Gnome": {
+ "templateId": "AthenaCharacter:CID_304_Athena_Commando_M_Gnome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_308_Athena_Commando_F_FortniteDJ": {
+ "templateId": "AthenaCharacter:CID_308_Athena_Commando_F_FortniteDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_309_Athena_Commando_M_StreetGoth": {
+ "templateId": "AthenaCharacter:CID_309_Athena_Commando_M_StreetGoth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_310_Athena_Commando_F_StreetGoth": {
+ "templateId": "AthenaCharacter:CID_310_Athena_Commando_F_StreetGoth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_311_Athena_Commando_M_Reindeer": {
+ "templateId": "AthenaCharacter:CID_311_Athena_Commando_M_Reindeer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_312_Athena_Commando_F_FunkOps": {
+ "templateId": "AthenaCharacter:CID_312_Athena_Commando_F_FunkOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_313_Athena_Commando_M_KpopFashion": {
+ "templateId": "AthenaCharacter:CID_313_Athena_Commando_M_KpopFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_314_Athena_Commando_M_Krampus": {
+ "templateId": "AthenaCharacter:CID_314_Athena_Commando_M_Krampus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_315_Athena_Commando_M_TeriyakiFish": {
+ "templateId": "AthenaCharacter:CID_315_Athena_Commando_M_TeriyakiFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_316_Athena_Commando_F_WinterHoliday": {
+ "templateId": "AthenaCharacter:CID_316_Athena_Commando_F_WinterHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_317_Athena_Commando_M_WinterGhoul": {
+ "templateId": "AthenaCharacter:CID_317_Athena_Commando_M_WinterGhoul",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_318_Athena_Commando_M_Demon": {
+ "templateId": "AthenaCharacter:CID_318_Athena_Commando_M_Demon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_319_Athena_Commando_F_Nautilus": {
+ "templateId": "AthenaCharacter:CID_319_Athena_Commando_F_Nautilus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_320_Athena_Commando_M_Nautilus": {
+ "templateId": "AthenaCharacter:CID_320_Athena_Commando_M_Nautilus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_321_Athena_Commando_M_MilitaryFashion1": {
+ "templateId": "AthenaCharacter:CID_321_Athena_Commando_M_MilitaryFashion1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_322_Athena_Commando_M_TechOps": {
+ "templateId": "AthenaCharacter:CID_322_Athena_Commando_M_TechOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_323_Athena_Commando_M_Barbarian": {
+ "templateId": "AthenaCharacter:CID_323_Athena_Commando_M_Barbarian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_324_Athena_Commando_F_Barbarian": {
+ "templateId": "AthenaCharacter:CID_324_Athena_Commando_F_Barbarian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_325_Athena_Commando_M_WavyMan": {
+ "templateId": "AthenaCharacter:CID_325_Athena_Commando_M_WavyMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_326_Athena_Commando_F_WavyMan": {
+ "templateId": "AthenaCharacter:CID_326_Athena_Commando_F_WavyMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_327_Athena_Commando_M_BlueMystery": {
+ "templateId": "AthenaCharacter:CID_327_Athena_Commando_M_BlueMystery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_328_Athena_Commando_F_Tennis": {
+ "templateId": "AthenaCharacter:CID_328_Athena_Commando_F_Tennis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_329_Athena_Commando_F_SnowNinja": {
+ "templateId": "AthenaCharacter:CID_329_Athena_Commando_F_SnowNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_330_Athena_Commando_F_IceQueen": {
+ "templateId": "AthenaCharacter:CID_330_Athena_Commando_F_IceQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_331_Athena_Commando_M_Taxi": {
+ "templateId": "AthenaCharacter:CID_331_Athena_Commando_M_Taxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_332_Athena_Commando_M_Prisoner": {
+ "templateId": "AthenaCharacter:CID_332_Athena_Commando_M_Prisoner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_333_Athena_Commando_M_Squishy": {
+ "templateId": "AthenaCharacter:CID_333_Athena_Commando_M_Squishy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_334_Athena_Commando_M_Scrapyard": {
+ "templateId": "AthenaCharacter:CID_334_Athena_Commando_M_Scrapyard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_335_Athena_Commando_F_Scrapyard": {
+ "templateId": "AthenaCharacter:CID_335_Athena_Commando_F_Scrapyard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_336_Athena_Commando_M_DragonMask": {
+ "templateId": "AthenaCharacter:CID_336_Athena_Commando_M_DragonMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_337_Athena_Commando_F_Celestial": {
+ "templateId": "AthenaCharacter:CID_337_Athena_Commando_F_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_338_Athena_Commando_M_DumplingMan": {
+ "templateId": "AthenaCharacter:CID_338_Athena_Commando_M_DumplingMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_339_Athena_Commando_M_RobotTrouble": {
+ "templateId": "AthenaCharacter:CID_339_Athena_Commando_M_RobotTrouble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_340_Athena_Commando_F_RobotTrouble": {
+ "templateId": "AthenaCharacter:CID_340_Athena_Commando_F_RobotTrouble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_341_Athena_Commando_F_SkullBrite": {
+ "templateId": "AthenaCharacter:CID_341_Athena_Commando_F_SkullBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_342_Athena_Commando_M_StreetRacerMetallic": {
+ "templateId": "AthenaCharacter:CID_342_Athena_Commando_M_StreetRacerMetallic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_343_Athena_Commando_M_CupidDark": {
+ "templateId": "AthenaCharacter:CID_343_Athena_Commando_M_CupidDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_344_Athena_Commando_M_IceCream": {
+ "templateId": "AthenaCharacter:CID_344_Athena_Commando_M_IceCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_345_Athena_Commando_M_LoveLlama": {
+ "templateId": "AthenaCharacter:CID_345_Athena_Commando_M_LoveLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_346_Athena_Commando_M_DragonNinja": {
+ "templateId": "AthenaCharacter:CID_346_Athena_Commando_M_DragonNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_347_Athena_Commando_M_PirateProgressive": {
+ "templateId": "AthenaCharacter:CID_347_Athena_Commando_M_PirateProgressive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage8"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_348_Athena_Commando_F_Medusa": {
+ "templateId": "AthenaCharacter:CID_348_Athena_Commando_F_Medusa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_349_Athena_Commando_M_Banana": {
+ "templateId": "AthenaCharacter:CID_349_Athena_Commando_M_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_350_Athena_Commando_M_MasterKey": {
+ "templateId": "AthenaCharacter:CID_350_Athena_Commando_M_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_351_Athena_Commando_F_FireElf": {
+ "templateId": "AthenaCharacter:CID_351_Athena_Commando_F_FireElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_352_Athena_Commando_F_Shiny": {
+ "templateId": "AthenaCharacter:CID_352_Athena_Commando_F_Shiny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_353_Athena_Commando_F_Bandolier": {
+ "templateId": "AthenaCharacter:CID_353_Athena_Commando_F_Bandolier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_354_Athena_Commando_M_MunitionsExpert": {
+ "templateId": "AthenaCharacter:CID_354_Athena_Commando_M_MunitionsExpert",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_355_Athena_Commando_M_Farmer": {
+ "templateId": "AthenaCharacter:CID_355_Athena_Commando_M_Farmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_356_Athena_Commando_F_Farmer": {
+ "templateId": "AthenaCharacter:CID_356_Athena_Commando_F_Farmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_357_Athena_Commando_M_OrangeCamo": {
+ "templateId": "AthenaCharacter:CID_357_Athena_Commando_M_OrangeCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_358_Athena_Commando_M_Aztec": {
+ "templateId": "AthenaCharacter:CID_358_Athena_Commando_M_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_359_Athena_Commando_F_Aztec": {
+ "templateId": "AthenaCharacter:CID_359_Athena_Commando_F_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_360_Athena_Commando_M_TechOpsBlue": {
+ "templateId": "AthenaCharacter:CID_360_Athena_Commando_M_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_361_Athena_Commando_M_BandageNinja": {
+ "templateId": "AthenaCharacter:CID_361_Athena_Commando_M_BandageNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_362_Athena_Commando_F_BandageNinja": {
+ "templateId": "AthenaCharacter:CID_362_Athena_Commando_F_BandageNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_363_Athena_Commando_M_SciOps": {
+ "templateId": "AthenaCharacter:CID_363_Athena_Commando_M_SciOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_364_Athena_Commando_F_SciOps": {
+ "templateId": "AthenaCharacter:CID_364_Athena_Commando_F_SciOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_365_Athena_Commando_M_LuckyRider": {
+ "templateId": "AthenaCharacter:CID_365_Athena_Commando_M_LuckyRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_366_Athena_Commando_M_Tropical": {
+ "templateId": "AthenaCharacter:CID_366_Athena_Commando_M_Tropical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_367_Athena_Commando_F_Tropical": {
+ "templateId": "AthenaCharacter:CID_367_Athena_Commando_F_Tropical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_369_Athena_Commando_F_DevilRock": {
+ "templateId": "AthenaCharacter:CID_369_Athena_Commando_F_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_370_Athena_Commando_M_EvilSuit": {
+ "templateId": "AthenaCharacter:CID_370_Athena_Commando_M_EvilSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_371_Athena_Commando_M_SpeedyMidnight": {
+ "templateId": "AthenaCharacter:CID_371_Athena_Commando_M_SpeedyMidnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_372_Athena_Commando_F_Pirate01": {
+ "templateId": "AthenaCharacter:CID_372_Athena_Commando_F_Pirate01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_373_Athena_Commando_M_Pirate01": {
+ "templateId": "AthenaCharacter:CID_373_Athena_Commando_M_Pirate01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_376_Athena_Commando_M_DarkShaman": {
+ "templateId": "AthenaCharacter:CID_376_Athena_Commando_M_DarkShaman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_377_Athena_Commando_F_DarkShaman": {
+ "templateId": "AthenaCharacter:CID_377_Athena_Commando_F_DarkShaman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_378_Athena_Commando_M_FurnaceFace": {
+ "templateId": "AthenaCharacter:CID_378_Athena_Commando_M_FurnaceFace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_379_Athena_Commando_M_BattleHoundFire": {
+ "templateId": "AthenaCharacter:CID_379_Athena_Commando_M_BattleHoundFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_380_Athena_Commando_F_DarkViking_Fire": {
+ "templateId": "AthenaCharacter:CID_380_Athena_Commando_F_DarkViking_Fire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_381_Athena_Commando_F_BaseballKitbash": {
+ "templateId": "AthenaCharacter:CID_381_Athena_Commando_F_BaseballKitbash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_382_Athena_Commando_M_BaseballKitbash": {
+ "templateId": "AthenaCharacter:CID_382_Athena_Commando_M_BaseballKitbash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_383_Athena_Commando_F_Cacti": {
+ "templateId": "AthenaCharacter:CID_383_Athena_Commando_F_Cacti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_384_Athena_Commando_M_StreetAssassin": {
+ "templateId": "AthenaCharacter:CID_384_Athena_Commando_M_StreetAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_385_Athena_Commando_M_PilotSkull": {
+ "templateId": "AthenaCharacter:CID_385_Athena_Commando_M_PilotSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_386_Athena_Commando_M_StreetOpsStealth": {
+ "templateId": "AthenaCharacter:CID_386_Athena_Commando_M_StreetOpsStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_387_Athena_Commando_F_Golf": {
+ "templateId": "AthenaCharacter:CID_387_Athena_Commando_F_Golf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_388_Athena_Commando_M_TheBomb": {
+ "templateId": "AthenaCharacter:CID_388_Athena_Commando_M_TheBomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_390_Athena_Commando_M_EvilBunny": {
+ "templateId": "AthenaCharacter:CID_390_Athena_Commando_M_EvilBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_391_Athena_Commando_M_HoppityHeist": {
+ "templateId": "AthenaCharacter:CID_391_Athena_Commando_M_HoppityHeist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_392_Athena_Commando_F_BountyBunny": {
+ "templateId": "AthenaCharacter:CID_392_Athena_Commando_F_BountyBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_393_Athena_Commando_M_Shiny": {
+ "templateId": "AthenaCharacter:CID_393_Athena_Commando_M_Shiny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_394_Athena_Commando_M_MoonlightAssassin": {
+ "templateId": "AthenaCharacter:CID_394_Athena_Commando_M_MoonlightAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_395_Athena_Commando_F_ShatterFly": {
+ "templateId": "AthenaCharacter:CID_395_Athena_Commando_F_ShatterFly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_396_Athena_Commando_F_Swashbuckler": {
+ "templateId": "AthenaCharacter:CID_396_Athena_Commando_F_Swashbuckler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_397_Athena_Commando_F_TreasureHunterFashion": {
+ "templateId": "AthenaCharacter:CID_397_Athena_Commando_F_TreasureHunterFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_398_Athena_Commando_M_TreasureHunterFashion": {
+ "templateId": "AthenaCharacter:CID_398_Athena_Commando_M_TreasureHunterFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_399_Athena_Commando_F_AshtonBoardwalk": {
+ "templateId": "AthenaCharacter:CID_399_Athena_Commando_F_AshtonBoardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_400_Athena_Commando_M_AshtonSaltLake": {
+ "templateId": "AthenaCharacter:CID_400_Athena_Commando_M_AshtonSaltLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_401_Athena_Commando_M_Miner": {
+ "templateId": "AthenaCharacter:CID_401_Athena_Commando_M_Miner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_403_Athena_Commando_M_Rooster": {
+ "templateId": "AthenaCharacter:CID_403_Athena_Commando_M_Rooster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_404_Athena_Commando_F_BountyHunter": {
+ "templateId": "AthenaCharacter:CID_404_Athena_Commando_F_BountyHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_405_Athena_Commando_F_Masako": {
+ "templateId": "AthenaCharacter:CID_405_Athena_Commando_F_Masako",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_406_Athena_Commando_M_StormTracker": {
+ "templateId": "AthenaCharacter:CID_406_Athena_Commando_M_StormTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_407_Athena_Commando_M_BattleSuit": {
+ "templateId": "AthenaCharacter:CID_407_Athena_Commando_M_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_408_Athena_Commando_F_StrawberryPilot": {
+ "templateId": "AthenaCharacter:CID_408_Athena_Commando_F_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_409_Athena_Commando_M_BunkerMan": {
+ "templateId": "AthenaCharacter:CID_409_Athena_Commando_M_BunkerMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_410_Athena_Commando_M_CyberScavenger": {
+ "templateId": "AthenaCharacter:CID_410_Athena_Commando_M_CyberScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_411_Athena_Commando_F_CyberScavenger": {
+ "templateId": "AthenaCharacter:CID_411_Athena_Commando_F_CyberScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_412_Athena_Commando_F_Raptor": {
+ "templateId": "AthenaCharacter:CID_412_Athena_Commando_F_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_413_Athena_Commando_M_StreetDemon": {
+ "templateId": "AthenaCharacter:CID_413_Athena_Commando_M_StreetDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_414_Athena_Commando_F_MilitaryFashion": {
+ "templateId": "AthenaCharacter:CID_414_Athena_Commando_F_MilitaryFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_415_Athena_Commando_F_AssassinSuit": {
+ "templateId": "AthenaCharacter:CID_415_Athena_Commando_F_AssassinSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_416_Athena_Commando_M_AssassinSuit": {
+ "templateId": "AthenaCharacter:CID_416_Athena_Commando_M_AssassinSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_418_Athena_Commando_F_Geisha": {
+ "templateId": "AthenaCharacter:CID_418_Athena_Commando_F_Geisha",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_419_Athena_Commando_M_Pug": {
+ "templateId": "AthenaCharacter:CID_419_Athena_Commando_M_Pug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_420_Athena_Commando_F_WhiteTiger": {
+ "templateId": "AthenaCharacter:CID_420_Athena_Commando_F_WhiteTiger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_421_Athena_Commando_M_MaskedWarrior": {
+ "templateId": "AthenaCharacter:CID_421_Athena_Commando_M_MaskedWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_422_Athena_Commando_F_MaskedWarrior": {
+ "templateId": "AthenaCharacter:CID_422_Athena_Commando_F_MaskedWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_423_Athena_Commando_F_Painter": {
+ "templateId": "AthenaCharacter:CID_423_Athena_Commando_F_Painter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_424_Athena_Commando_M_Vigilante": {
+ "templateId": "AthenaCharacter:CID_424_Athena_Commando_M_Vigilante",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_425_Athena_Commando_F_CyberRunner": {
+ "templateId": "AthenaCharacter:CID_425_Athena_Commando_F_CyberRunner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_426_Athena_Commando_F_DemonHunter": {
+ "templateId": "AthenaCharacter:CID_426_Athena_Commando_F_DemonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_427_Athena_Commando_M_DemonHunter": {
+ "templateId": "AthenaCharacter:CID_427_Athena_Commando_M_DemonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_428_Athena_Commando_M_UrbanScavenger": {
+ "templateId": "AthenaCharacter:CID_428_Athena_Commando_M_UrbanScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_429_Athena_Commando_F_NeonLines": {
+ "templateId": "AthenaCharacter:CID_429_Athena_Commando_F_NeonLines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_430_Athena_Commando_M_StormSoldier": {
+ "templateId": "AthenaCharacter:CID_430_Athena_Commando_M_StormSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_431_Athena_Commando_F_StormPilot": {
+ "templateId": "AthenaCharacter:CID_431_Athena_Commando_F_StormPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_432_Athena_Commando_M_BalloonHead": {
+ "templateId": "AthenaCharacter:CID_432_Athena_Commando_M_BalloonHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_433_Athena_Commando_F_TacticalDesert": {
+ "templateId": "AthenaCharacter:CID_433_Athena_Commando_F_TacticalDesert",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_434_Athena_Commando_F_StealthHonor": {
+ "templateId": "AthenaCharacter:CID_434_Athena_Commando_F_StealthHonor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_435_Athena_Commando_M_MunitionsExpertGreenPlastic": {
+ "templateId": "AthenaCharacter:CID_435_Athena_Commando_M_MunitionsExpertGreenPlastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_436_Athena_Commando_M_ReconSpecialist": {
+ "templateId": "AthenaCharacter:CID_436_Athena_Commando_M_ReconSpecialist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_437_Athena_Commando_F_AztecEclipse": {
+ "templateId": "AthenaCharacter:CID_437_Athena_Commando_F_AztecEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_438_Athena_Commando_M_WinterGhoulEclipse": {
+ "templateId": "AthenaCharacter:CID_438_Athena_Commando_M_WinterGhoulEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_439_Athena_Commando_F_SkullBriteEclipse": {
+ "templateId": "AthenaCharacter:CID_439_Athena_Commando_F_SkullBriteEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_440_Athena_Commando_F_BullseyeGreenPlastic": {
+ "templateId": "AthenaCharacter:CID_440_Athena_Commando_F_BullseyeGreenPlastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_441_Athena_Commando_F_CyberScavengerBlue": {
+ "templateId": "AthenaCharacter:CID_441_Athena_Commando_F_CyberScavengerBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_442_Athena_Commando_F_BannerA": {
+ "templateId": "AthenaCharacter:CID_442_Athena_Commando_F_BannerA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_443_Athena_Commando_F_BannerB": {
+ "templateId": "AthenaCharacter:CID_443_Athena_Commando_F_BannerB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_444_Athena_Commando_F_BannerC": {
+ "templateId": "AthenaCharacter:CID_444_Athena_Commando_F_BannerC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_445_Athena_Commando_F_BannerD": {
+ "templateId": "AthenaCharacter:CID_445_Athena_Commando_F_BannerD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_446_Athena_Commando_M_BannerA": {
+ "templateId": "AthenaCharacter:CID_446_Athena_Commando_M_BannerA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_447_Athena_Commando_M_BannerB": {
+ "templateId": "AthenaCharacter:CID_447_Athena_Commando_M_BannerB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_448_Athena_Commando_M_BannerC": {
+ "templateId": "AthenaCharacter:CID_448_Athena_Commando_M_BannerC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_449_Athena_Commando_M_BannerD": {
+ "templateId": "AthenaCharacter:CID_449_Athena_Commando_M_BannerD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_450_Athena_Commando_F_Butterfly": {
+ "templateId": "AthenaCharacter:CID_450_Athena_Commando_F_Butterfly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_451_Athena_Commando_M_Caterpillar": {
+ "templateId": "AthenaCharacter:CID_451_Athena_Commando_M_Caterpillar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_452_Athena_Commando_F_CyberFu": {
+ "templateId": "AthenaCharacter:CID_452_Athena_Commando_F_CyberFu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_453_Athena_Commando_F_GlowBro": {
+ "templateId": "AthenaCharacter:CID_453_Athena_Commando_F_GlowBro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_454_Athena_Commando_M_GlowBro": {
+ "templateId": "AthenaCharacter:CID_454_Athena_Commando_M_GlowBro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_455_Athena_Commando_F_Jellyfish": {
+ "templateId": "AthenaCharacter:CID_455_Athena_Commando_F_Jellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_456_Athena_Commando_F_Sarong": {
+ "templateId": "AthenaCharacter:CID_456_Athena_Commando_F_Sarong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_457_Athena_Commando_F_SpaceGirl": {
+ "templateId": "AthenaCharacter:CID_457_Athena_Commando_F_SpaceGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_458_Athena_Commando_M_TechMage": {
+ "templateId": "AthenaCharacter:CID_458_Athena_Commando_M_TechMage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_459_Athena_Commando_F_Zodiac": {
+ "templateId": "AthenaCharacter:CID_459_Athena_Commando_F_Zodiac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_460_Athena_Commando_F_BriteBomberSummer": {
+ "templateId": "AthenaCharacter:CID_460_Athena_Commando_F_BriteBomberSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_461_Athena_Commando_M_DriftSummer": {
+ "templateId": "AthenaCharacter:CID_461_Athena_Commando_M_DriftSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_462_Athena_Commando_M_HeistSummer": {
+ "templateId": "AthenaCharacter:CID_462_Athena_Commando_M_HeistSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_463_Athena_Commando_M_Hairy": {
+ "templateId": "AthenaCharacter:CID_463_Athena_Commando_M_Hairy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_464_Athena_Commando_M_Flamingo": {
+ "templateId": "AthenaCharacter:CID_464_Athena_Commando_M_Flamingo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_465_Athena_Commando_M_PuffyVest": {
+ "templateId": "AthenaCharacter:CID_465_Athena_Commando_M_PuffyVest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_466_Athena_Commando_M_WeirdObjectsCreature": {
+ "templateId": "AthenaCharacter:CID_466_Athena_Commando_M_WeirdObjectsCreature",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_467_Athena_Commando_M_WeirdObjectsPolice": {
+ "templateId": "AthenaCharacter:CID_467_Athena_Commando_M_WeirdObjectsPolice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_468_Athena_Commando_F_TennisWhite": {
+ "templateId": "AthenaCharacter:CID_468_Athena_Commando_F_TennisWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_469_Athena_Commando_F_BattleSuit": {
+ "templateId": "AthenaCharacter:CID_469_Athena_Commando_F_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_470_Athena_Commando_M_Anarchy": {
+ "templateId": "AthenaCharacter:CID_470_Athena_Commando_M_Anarchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_471_Athena_Commando_F_Bani": {
+ "templateId": "AthenaCharacter:CID_471_Athena_Commando_F_Bani",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_472_Athena_Commando_F_CyberKarate": {
+ "templateId": "AthenaCharacter:CID_472_Athena_Commando_F_CyberKarate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_473_Athena_Commando_M_CyberKarate": {
+ "templateId": "AthenaCharacter:CID_473_Athena_Commando_M_CyberKarate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_474_Athena_Commando_M_Lasagna": {
+ "templateId": "AthenaCharacter:CID_474_Athena_Commando_M_Lasagna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_475_Athena_Commando_M_Multibot": {
+ "templateId": "AthenaCharacter:CID_475_Athena_Commando_M_Multibot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_476_Athena_Commando_F_FutureBiker": {
+ "templateId": "AthenaCharacter:CID_476_Athena_Commando_F_FutureBiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_477_Athena_Commando_F_SpaceSuit": {
+ "templateId": "AthenaCharacter:CID_477_Athena_Commando_F_SpaceSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_478_Athena_Commando_F_WorldCup": {
+ "templateId": "AthenaCharacter:CID_478_Athena_Commando_F_WorldCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_479_Athena_Commando_F_Davinci": {
+ "templateId": "AthenaCharacter:CID_479_Athena_Commando_F_Davinci",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_480_Athena_Commando_F_Bubblegum": {
+ "templateId": "AthenaCharacter:CID_480_Athena_Commando_F_Bubblegum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_481_Athena_Commando_F_Geode": {
+ "templateId": "AthenaCharacter:CID_481_Athena_Commando_F_Geode",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_482_Athena_Commando_F_PizzaPit": {
+ "templateId": "AthenaCharacter:CID_482_Athena_Commando_F_PizzaPit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_483_Athena_Commando_F_GraffitiRemix": {
+ "templateId": "AthenaCharacter:CID_483_Athena_Commando_F_GraffitiRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_484_Athena_Commando_M_KnightRemix": {
+ "templateId": "AthenaCharacter:CID_484_Athena_Commando_M_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_485_Athena_Commando_F_SparkleRemix": {
+ "templateId": "AthenaCharacter:CID_485_Athena_Commando_F_SparkleRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_486_Athena_Commando_F_StreetRacerDrift": {
+ "templateId": "AthenaCharacter:CID_486_Athena_Commando_F_StreetRacerDrift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_487_Athena_Commando_M_DJRemix": {
+ "templateId": "AthenaCharacter:CID_487_Athena_Commando_M_DJRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_488_Athena_Commando_M_RustRemix": {
+ "templateId": "AthenaCharacter:CID_488_Athena_Commando_M_RustRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_489_Athena_Commando_M_VoyagerRemix": {
+ "templateId": "AthenaCharacter:CID_489_Athena_Commando_M_VoyagerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_490_Athena_Commando_M_BlueBadass": {
+ "templateId": "AthenaCharacter:CID_490_Athena_Commando_M_BlueBadass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_491_Athena_Commando_M_BoneWasp": {
+ "templateId": "AthenaCharacter:CID_491_Athena_Commando_M_BoneWasp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_492_Athena_Commando_M_Bronto": {
+ "templateId": "AthenaCharacter:CID_492_Athena_Commando_M_Bronto",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_493_Athena_Commando_F_JurassicArchaeology": {
+ "templateId": "AthenaCharacter:CID_493_Athena_Commando_F_JurassicArchaeology",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_494_Athena_Commando_M_MechPilotShark": {
+ "templateId": "AthenaCharacter:CID_494_Athena_Commando_M_MechPilotShark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_495_Athena_Commando_F_MechPilotShark": {
+ "templateId": "AthenaCharacter:CID_495_Athena_Commando_F_MechPilotShark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_496_Athena_Commando_M_SurvivalSpecialist": {
+ "templateId": "AthenaCharacter:CID_496_Athena_Commando_M_SurvivalSpecialist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_497_Athena_Commando_F_WildWest": {
+ "templateId": "AthenaCharacter:CID_497_Athena_Commando_F_WildWest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_498_Athena_Commando_M_WildWest": {
+ "templateId": "AthenaCharacter:CID_498_Athena_Commando_M_WildWest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_499_Athena_Commando_F_AstronautEvil": {
+ "templateId": "AthenaCharacter:CID_499_Athena_Commando_F_AstronautEvil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_501_Athena_Commando_M_FrostMystery": {
+ "templateId": "AthenaCharacter:CID_501_Athena_Commando_M_FrostMystery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_502_Athena_Commando_F_Reverb": {
+ "templateId": "AthenaCharacter:CID_502_Athena_Commando_F_Reverb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_503_Athena_Commando_F_TacticalWoodlandFuture": {
+ "templateId": "AthenaCharacter:CID_503_Athena_Commando_F_TacticalWoodlandFuture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_504_Athena_Commando_M_Lopex": {
+ "templateId": "AthenaCharacter:CID_504_Athena_Commando_M_Lopex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_505_Athena_Commando_M_MilitiaMascotBurger": {
+ "templateId": "AthenaCharacter:CID_505_Athena_Commando_M_MilitiaMascotBurger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_506_Athena_Commando_M_MilitiaMascotTomato": {
+ "templateId": "AthenaCharacter:CID_506_Athena_Commando_M_MilitiaMascotTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_507_Athena_Commando_M_StarWalker": {
+ "templateId": "AthenaCharacter:CID_507_Athena_Commando_M_StarWalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_508_Athena_Commando_M_Syko": {
+ "templateId": "AthenaCharacter:CID_508_Athena_Commando_M_Syko",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_509_Athena_Commando_M_WiseMaster": {
+ "templateId": "AthenaCharacter:CID_509_Athena_Commando_M_WiseMaster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_510_Athena_Commando_F_AngelEclipse": {
+ "templateId": "AthenaCharacter:CID_510_Athena_Commando_F_AngelEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_511_Athena_Commando_M_CubePaintWildCard": {
+ "templateId": "AthenaCharacter:CID_511_Athena_Commando_M_CubePaintWildCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_512_Athena_Commando_F_CubePaintRedKnight": {
+ "templateId": "AthenaCharacter:CID_512_Athena_Commando_F_CubePaintRedKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_513_Athena_Commando_M_CubePaintJonesy": {
+ "templateId": "AthenaCharacter:CID_513_Athena_Commando_M_CubePaintJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_514_Athena_Commando_F_ToxicKitty": {
+ "templateId": "AthenaCharacter:CID_514_Athena_Commando_F_ToxicKitty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_515_Athena_Commando_M_BarbequeLarry": {
+ "templateId": "AthenaCharacter:CID_515_Athena_Commando_M_BarbequeLarry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_516_Athena_Commando_M_BlackWidowRogue": {
+ "templateId": "AthenaCharacter:CID_516_Athena_Commando_M_BlackWidowRogue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_517_Athena_Commando_M_DarkEagleFire": {
+ "templateId": "AthenaCharacter:CID_517_Athena_Commando_M_DarkEagleFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_518_Athena_Commando_M_WWII_PilotSciFi": {
+ "templateId": "AthenaCharacter:CID_518_Athena_Commando_M_WWII_PilotSciFi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_519_Athena_Commando_M_RaptorBlackOps": {
+ "templateId": "AthenaCharacter:CID_519_Athena_Commando_M_RaptorBlackOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_520_Athena_Commando_M_PaddedArmor": {
+ "templateId": "AthenaCharacter:CID_520_Athena_Commando_M_PaddedArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_521_Athena_Commando_M_TacticalBiker": {
+ "templateId": "AthenaCharacter:CID_521_Athena_Commando_M_TacticalBiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_522_Athena_Commando_M_Bullseye": {
+ "templateId": "AthenaCharacter:CID_522_Athena_Commando_M_Bullseye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_523_Athena_Commando_F_Cupid": {
+ "templateId": "AthenaCharacter:CID_523_Athena_Commando_F_Cupid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_524_Athena_Commando_F_FutureBikerWhite": {
+ "templateId": "AthenaCharacter:CID_524_Athena_Commando_F_FutureBikerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_525_Athena_Commando_F_LemonLime": {
+ "templateId": "AthenaCharacter:CID_525_Athena_Commando_F_LemonLime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_526_Athena_Commando_F_DesertOpsSwamp": {
+ "templateId": "AthenaCharacter:CID_526_Athena_Commando_F_DesertOpsSwamp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_527_Athena_Commando_F_StreetFashionRed": {
+ "templateId": "AthenaCharacter:CID_527_Athena_Commando_F_StreetFashionRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_528_Athena_Commando_M_BlackMondayHouston_7DGBT": {
+ "templateId": "AthenaCharacter:CID_528_Athena_Commando_M_BlackMondayHouston_7DGBT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_529_Athena_Commando_M_BlackMondayKansas_HWD90": {
+ "templateId": "AthenaCharacter:CID_529_Athena_Commando_M_BlackMondayKansas_HWD90",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_530_Athena_Commando_F_BlackMonday_1BV6J": {
+ "templateId": "AthenaCharacter:CID_530_Athena_Commando_F_BlackMonday_1BV6J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_531_Athena_Commando_M_Sleepytime": {
+ "templateId": "AthenaCharacter:CID_531_Athena_Commando_M_Sleepytime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_532_Athena_Commando_F_Punchy": {
+ "templateId": "AthenaCharacter:CID_532_Athena_Commando_F_Punchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_533_Athena_Commando_M_StreetUrchin": {
+ "templateId": "AthenaCharacter:CID_533_Athena_Commando_M_StreetUrchin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_534_Athena_Commando_M_PeelyMech": {
+ "templateId": "AthenaCharacter:CID_534_Athena_Commando_M_PeelyMech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_535_Athena_Commando_M_Traveler": {
+ "templateId": "AthenaCharacter:CID_535_Athena_Commando_M_Traveler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_536_Athena_Commando_F_DurrburgerWorker": {
+ "templateId": "AthenaCharacter:CID_536_Athena_Commando_F_DurrburgerWorker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_537_Athena_Commando_M_Jumpstart": {
+ "templateId": "AthenaCharacter:CID_537_Athena_Commando_M_Jumpstart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_538_Athena_Commando_M_Taco": {
+ "templateId": "AthenaCharacter:CID_538_Athena_Commando_M_Taco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_539_Athena_Commando_F_StreetGothCandy": {
+ "templateId": "AthenaCharacter:CID_539_Athena_Commando_F_StreetGothCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_540_Athena_Commando_M_MeteorManRemix": {
+ "templateId": "AthenaCharacter:CID_540_Athena_Commando_M_MeteorManRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_541_Athena_Commando_M_GraffitiGold": {
+ "templateId": "AthenaCharacter:CID_541_Athena_Commando_M_GraffitiGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_542_Athena_Commando_F_CarbideFrostMystery": {
+ "templateId": "AthenaCharacter:CID_542_Athena_Commando_F_CarbideFrostMystery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_543_Athena_Commando_M_LlamaHero": {
+ "templateId": "AthenaCharacter:CID_543_Athena_Commando_M_LlamaHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_544_Athena_Commando_M_Kurohomura": {
+ "templateId": "AthenaCharacter:CID_544_Athena_Commando_M_Kurohomura",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_545_Athena_Commando_F_SushiNinja": {
+ "templateId": "AthenaCharacter:CID_545_Athena_Commando_F_SushiNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_546_Athena_Commando_F_TacticalRed": {
+ "templateId": "AthenaCharacter:CID_546_Athena_Commando_F_TacticalRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_547_Athena_Commando_F_Meteorwoman": {
+ "templateId": "AthenaCharacter:CID_547_Athena_Commando_F_Meteorwoman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_548_Athena_Commando_M_YellowCamoA": {
+ "templateId": "AthenaCharacter:CID_548_Athena_Commando_M_YellowCamoA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_549_Athena_Commando_M_YellowCamoB": {
+ "templateId": "AthenaCharacter:CID_549_Athena_Commando_M_YellowCamoB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_550_Athena_Commando_M_YellowCamoC": {
+ "templateId": "AthenaCharacter:CID_550_Athena_Commando_M_YellowCamoC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_551_Athena_Commando_M_YellowCamoD": {
+ "templateId": "AthenaCharacter:CID_551_Athena_Commando_M_YellowCamoD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_552_Athena_Commando_F_TaxiUpgrade": {
+ "templateId": "AthenaCharacter:CID_552_Athena_Commando_F_TaxiUpgrade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_553_Athena_Commando_M_BrightGunnerRemix": {
+ "templateId": "AthenaCharacter:CID_553_Athena_Commando_M_BrightGunnerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_554_Athena_Commando_F_MilitiaMascotCuddle": {
+ "templateId": "AthenaCharacter:CID_554_Athena_Commando_F_MilitiaMascotCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA": {
+ "templateId": "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB": {
+ "templateId": "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC": {
+ "templateId": "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD": {
+ "templateId": "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA": {
+ "templateId": "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB": {
+ "templateId": "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC": {
+ "templateId": "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD": {
+ "templateId": "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_564_Athena_Commando_M_TacticalFisherman": {
+ "templateId": "AthenaCharacter:CID_564_Athena_Commando_M_TacticalFisherman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_565_Athena_Commando_F_RockClimber": {
+ "templateId": "AthenaCharacter:CID_565_Athena_Commando_F_RockClimber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_566_Athena_Commando_M_CrazyEight": {
+ "templateId": "AthenaCharacter:CID_566_Athena_Commando_M_CrazyEight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_567_Athena_Commando_F_RebirthMedic": {
+ "templateId": "AthenaCharacter:CID_567_Athena_Commando_F_RebirthMedic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_568_Athena_Commando_M_RebirthSoldier": {
+ "templateId": "AthenaCharacter:CID_568_Athena_Commando_M_RebirthSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_570_Athena_Commando_M_SlurpMonster": {
+ "templateId": "AthenaCharacter:CID_570_Athena_Commando_M_SlurpMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_571_Athena_Commando_F_Sheath": {
+ "templateId": "AthenaCharacter:CID_571_Athena_Commando_F_Sheath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_572_Athena_Commando_M_Viper": {
+ "templateId": "AthenaCharacter:CID_572_Athena_Commando_M_Viper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_573_Athena_Commando_M_Haunt": {
+ "templateId": "AthenaCharacter:CID_573_Athena_Commando_M_Haunt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_574_Athena_Commando_F_CubeRockerPunk": {
+ "templateId": "AthenaCharacter:CID_574_Athena_Commando_F_CubeRockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_575_Athena_Commando_F_BulletBlue": {
+ "templateId": "AthenaCharacter:CID_575_Athena_Commando_F_BulletBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_576_Athena_Commando_M_CODSquadPlaid": {
+ "templateId": "AthenaCharacter:CID_576_Athena_Commando_M_CODSquadPlaid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_577_Athena_Commando_F_CODSquadPlaid": {
+ "templateId": "AthenaCharacter:CID_577_Athena_Commando_F_CODSquadPlaid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_578_Athena_Commando_F_Fisherman": {
+ "templateId": "AthenaCharacter:CID_578_Athena_Commando_F_Fisherman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_579_Athena_Commando_F_RedRidingRemix": {
+ "templateId": "AthenaCharacter:CID_579_Athena_Commando_F_RedRidingRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_580_Athena_Commando_M_CuddleTeamDark": {
+ "templateId": "AthenaCharacter:CID_580_Athena_Commando_M_CuddleTeamDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_581_Athena_Commando_M_DarkDino": {
+ "templateId": "AthenaCharacter:CID_581_Athena_Commando_M_DarkDino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_582_Athena_Commando_F_DarkDino": {
+ "templateId": "AthenaCharacter:CID_582_Athena_Commando_F_DarkDino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_583_Athena_Commando_F_NoshHunter": {
+ "templateId": "AthenaCharacter:CID_583_Athena_Commando_F_NoshHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_584_Athena_Commando_M_Nosh": {
+ "templateId": "AthenaCharacter:CID_584_Athena_Commando_M_Nosh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_585_Athena_Commando_F_FlowerSkeleton": {
+ "templateId": "AthenaCharacter:CID_585_Athena_Commando_F_FlowerSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_586_Athena_Commando_F_PunkDevil": {
+ "templateId": "AthenaCharacter:CID_586_Athena_Commando_F_PunkDevil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_587_Athena_Commando_M_DevilRock": {
+ "templateId": "AthenaCharacter:CID_587_Athena_Commando_M_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_588_Athena_Commando_M_GoatRobe": {
+ "templateId": "AthenaCharacter:CID_588_Athena_Commando_M_GoatRobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_589_Athena_Commando_M_SoccerZombieA": {
+ "templateId": "AthenaCharacter:CID_589_Athena_Commando_M_SoccerZombieA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_590_Athena_Commando_M_SoccerZombieB": {
+ "templateId": "AthenaCharacter:CID_590_Athena_Commando_M_SoccerZombieB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_591_Athena_Commando_M_SoccerZombieC": {
+ "templateId": "AthenaCharacter:CID_591_Athena_Commando_M_SoccerZombieC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_592_Athena_Commando_M_SoccerZombieD": {
+ "templateId": "AthenaCharacter:CID_592_Athena_Commando_M_SoccerZombieD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_593_Athena_Commando_F_SoccerZombieA": {
+ "templateId": "AthenaCharacter:CID_593_Athena_Commando_F_SoccerZombieA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_594_Athena_Commando_F_SoccerZombieB": {
+ "templateId": "AthenaCharacter:CID_594_Athena_Commando_F_SoccerZombieB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_595_Athena_Commando_F_SoccerZombieC": {
+ "templateId": "AthenaCharacter:CID_595_Athena_Commando_F_SoccerZombieC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_596_Athena_Commando_F_SoccerZombieD": {
+ "templateId": "AthenaCharacter:CID_596_Athena_Commando_F_SoccerZombieD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_597_Athena_Commando_M_Freak": {
+ "templateId": "AthenaCharacter:CID_597_Athena_Commando_M_Freak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_598_Athena_Commando_M_Mastermind": {
+ "templateId": "AthenaCharacter:CID_598_Athena_Commando_M_Mastermind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_599_Athena_Commando_M_Phantom": {
+ "templateId": "AthenaCharacter:CID_599_Athena_Commando_M_Phantom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_600_Athena_Commando_M_SkeletonHunter": {
+ "templateId": "AthenaCharacter:CID_600_Athena_Commando_M_SkeletonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_601_Athena_Commando_F_Palespooky": {
+ "templateId": "AthenaCharacter:CID_601_Athena_Commando_F_Palespooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_602_Athena_Commando_M_NanaSplit": {
+ "templateId": "AthenaCharacter:CID_602_Athena_Commando_M_NanaSplit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_603_Athena_Commando_M_SpookyNeon": {
+ "templateId": "AthenaCharacter:CID_603_Athena_Commando_M_SpookyNeon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_604_Athena_Commando_F_Razor": {
+ "templateId": "AthenaCharacter:CID_604_Athena_Commando_F_Razor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_605_Athena_Commando_M_TourBus": {
+ "templateId": "AthenaCharacter:CID_605_Athena_Commando_M_TourBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_606_Athena_Commando_F_JetSki": {
+ "templateId": "AthenaCharacter:CID_606_Athena_Commando_F_JetSki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_607_Athena_Commando_M_JetSki": {
+ "templateId": "AthenaCharacter:CID_607_Athena_Commando_M_JetSki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_608_Athena_Commando_F_ModernWitch": {
+ "templateId": "AthenaCharacter:CID_608_Athena_Commando_F_ModernWitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_609_Athena_Commando_M_Submariner": {
+ "templateId": "AthenaCharacter:CID_609_Athena_Commando_M_Submariner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_610_Athena_Commando_M_ShiitakeShaolin": {
+ "templateId": "AthenaCharacter:CID_610_Athena_Commando_M_ShiitakeShaolin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_611_Athena_Commando_M_WeepingWoods": {
+ "templateId": "AthenaCharacter:CID_611_Athena_Commando_M_WeepingWoods",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_612_Athena_Commando_F_StreetOpsPink": {
+ "templateId": "AthenaCharacter:CID_612_Athena_Commando_F_StreetOpsPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_613_Athena_Commando_M_Columbus_7Y4QE": {
+ "templateId": "AthenaCharacter:CID_613_Athena_Commando_M_Columbus_7Y4QE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_614_Athena_Commando_M_MissingLink": {
+ "templateId": "AthenaCharacter:CID_614_Athena_Commando_M_MissingLink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_615_Athena_Commando_F_Bane": {
+ "templateId": "AthenaCharacter:CID_615_Athena_Commando_F_Bane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_616_Athena_Commando_F_CavalryBandit": {
+ "templateId": "AthenaCharacter:CID_616_Athena_Commando_F_CavalryBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_617_Athena_Commando_F_ForestQueen": {
+ "templateId": "AthenaCharacter:CID_617_Athena_Commando_F_ForestQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_618_Athena_Commando_M_ForestDweller": {
+ "templateId": "AthenaCharacter:CID_618_Athena_Commando_M_ForestDweller",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_619_Athena_Commando_F_TechLlama": {
+ "templateId": "AthenaCharacter:CID_619_Athena_Commando_F_TechLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_620_Athena_Commando_L_BigChuggus": {
+ "templateId": "AthenaCharacter:CID_620_Athena_Commando_L_BigChuggus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_621_Athena_Commando_M_BoneSnake": {
+ "templateId": "AthenaCharacter:CID_621_Athena_Commando_M_BoneSnake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_622_Athena_Commando_M_BulletBlue": {
+ "templateId": "AthenaCharacter:CID_622_Athena_Commando_M_BulletBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_623_Athena_Commando_M_Frogman": {
+ "templateId": "AthenaCharacter:CID_623_Athena_Commando_M_Frogman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_624_Athena_Commando_M_TeriyakiWarrior": {
+ "templateId": "AthenaCharacter:CID_624_Athena_Commando_M_TeriyakiWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_625_Athena_Commando_F_PinkTrooper": {
+ "templateId": "AthenaCharacter:CID_625_Athena_Commando_F_PinkTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_626_Athena_Commando_M_PinkTrooper": {
+ "templateId": "AthenaCharacter:CID_626_Athena_Commando_M_PinkTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_627_Athena_Commando_F_SnufflesLeader": {
+ "templateId": "AthenaCharacter:CID_627_Athena_Commando_F_SnufflesLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_628_Athena_Commando_M_HolidayTime": {
+ "templateId": "AthenaCharacter:CID_628_Athena_Commando_M_HolidayTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_629_Athena_Commando_M_SnowGlobe": {
+ "templateId": "AthenaCharacter:CID_629_Athena_Commando_M_SnowGlobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_630_Athena_Commando_M_Kane": {
+ "templateId": "AthenaCharacter:CID_630_Athena_Commando_M_Kane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_631_Athena_Commando_M_GalileoKayak_VXLDB": {
+ "templateId": "AthenaCharacter:CID_631_Athena_Commando_M_GalileoKayak_VXLDB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW": {
+ "templateId": "AthenaCharacter:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_633_Athena_Commando_M_GalileoFerry_PA3E1": {
+ "templateId": "AthenaCharacter:CID_633_Athena_Commando_M_GalileoFerry_PA3E1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_634_Athena_Commando_F_GalileoRocket_ARVEH": {
+ "templateId": "AthenaCharacter:CID_634_Athena_Commando_F_GalileoRocket_ARVEH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_635_Athena_Commando_M_GalileoSled_FHJVM": {
+ "templateId": "AthenaCharacter:CID_635_Athena_Commando_M_GalileoSled_FHJVM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_636_Athena_Commando_M_GalileoGondola_78MFZ": {
+ "templateId": "AthenaCharacter:CID_636_Athena_Commando_M_GalileoGondola_78MFZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_637_Athena_Commando_M_GalileoOutrigger_7Q0YU": {
+ "templateId": "AthenaCharacter:CID_637_Athena_Commando_M_GalileoOutrigger_7Q0YU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_638_Athena_Commando_M_NeonAnimal": {
+ "templateId": "AthenaCharacter:CID_638_Athena_Commando_M_NeonAnimal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_639_Athena_Commando_F_NeonAnimal": {
+ "templateId": "AthenaCharacter:CID_639_Athena_Commando_F_NeonAnimal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_640_Athena_Commando_M_TacticalBear": {
+ "templateId": "AthenaCharacter:CID_640_Athena_Commando_M_TacticalBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_641_Athena_Commando_M_SweaterWeather": {
+ "templateId": "AthenaCharacter:CID_641_Athena_Commando_M_SweaterWeather",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_642_Athena_Commando_F_ConstellationStar": {
+ "templateId": "AthenaCharacter:CID_642_Athena_Commando_F_ConstellationStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_643_Athena_Commando_M_OrnamentSoldier": {
+ "templateId": "AthenaCharacter:CID_643_Athena_Commando_M_OrnamentSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_644_Athena_Commando_M_Cattus": {
+ "templateId": "AthenaCharacter:CID_644_Athena_Commando_M_Cattus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_645_Athena_Commando_F_Wolly": {
+ "templateId": "AthenaCharacter:CID_645_Athena_Commando_F_Wolly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_646_Athena_Commando_F_ElfAttack": {
+ "templateId": "AthenaCharacter:CID_646_Athena_Commando_F_ElfAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_647_Athena_Commando_F_WingedFury": {
+ "templateId": "AthenaCharacter:CID_647_Athena_Commando_F_WingedFury",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_648_Athena_Commando_F_MsAlpine": {
+ "templateId": "AthenaCharacter:CID_648_Athena_Commando_F_MsAlpine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_649_Athena_Commando_F_HolidayPJ": {
+ "templateId": "AthenaCharacter:CID_649_Athena_Commando_F_HolidayPJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_650_Athena_Commando_F_HolidayPJ_B": {
+ "templateId": "AthenaCharacter:CID_650_Athena_Commando_F_HolidayPJ_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_651_Athena_Commando_F_HolidayPJ_C": {
+ "templateId": "AthenaCharacter:CID_651_Athena_Commando_F_HolidayPJ_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_652_Athena_Commando_F_HolidayPJ_D": {
+ "templateId": "AthenaCharacter:CID_652_Athena_Commando_F_HolidayPJ_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_653_Athena_Commando_F_UglySweaterFrozen": {
+ "templateId": "AthenaCharacter:CID_653_Athena_Commando_F_UglySweaterFrozen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_654_Athena_Commando_F_GiftWrap": {
+ "templateId": "AthenaCharacter:CID_654_Athena_Commando_F_GiftWrap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_655_Athena_Commando_F_Barefoot": {
+ "templateId": "AthenaCharacter:CID_655_Athena_Commando_F_Barefoot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_656_Athena_Commando_M_TeriyakiFishFreezerBurn": {
+ "templateId": "AthenaCharacter:CID_656_Athena_Commando_M_TeriyakiFishFreezerBurn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_657_Athena_Commando_F_TechOpsBlue": {
+ "templateId": "AthenaCharacter:CID_657_Athena_Commando_F_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_658_Athena_Commando_F_ToyMonkey": {
+ "templateId": "AthenaCharacter:CID_658_Athena_Commando_F_ToyMonkey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_659_Athena_Commando_M_MrIceGuy": {
+ "templateId": "AthenaCharacter:CID_659_Athena_Commando_M_MrIceGuy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_660_Athena_Commando_F_BandageNinjaBlue": {
+ "templateId": "AthenaCharacter:CID_660_Athena_Commando_F_BandageNinjaBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_662_Athena_Commando_M_FlameSkull": {
+ "templateId": "AthenaCharacter:CID_662_Athena_Commando_M_FlameSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_663_Athena_Commando_F_Frogman": {
+ "templateId": "AthenaCharacter:CID_663_Athena_Commando_F_Frogman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_664_Athena_Commando_M_Gummi": {
+ "templateId": "AthenaCharacter:CID_664_Athena_Commando_M_Gummi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_665_Athena_Commando_F_NeonGraffiti": {
+ "templateId": "AthenaCharacter:CID_665_Athena_Commando_F_NeonGraffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_666_Athena_Commando_M_ArcticCamo": {
+ "templateId": "AthenaCharacter:CID_666_Athena_Commando_M_ArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_667_Athena_Commando_M_ArcticCamo_Dark": {
+ "templateId": "AthenaCharacter:CID_667_Athena_Commando_M_ArcticCamo_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_668_Athena_Commando_M_ArcticCamo_Gray": {
+ "templateId": "AthenaCharacter:CID_668_Athena_Commando_M_ArcticCamo_Gray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_669_Athena_Commando_M_ArcticCamo_Slate": {
+ "templateId": "AthenaCharacter:CID_669_Athena_Commando_M_ArcticCamo_Slate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_670_Athena_Commando_F_ArcticCamo": {
+ "templateId": "AthenaCharacter:CID_670_Athena_Commando_F_ArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_671_Athena_Commando_F_ArcticCamo_Dark": {
+ "templateId": "AthenaCharacter:CID_671_Athena_Commando_F_ArcticCamo_Dark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_672_Athena_Commando_F_ArcticCamo_Gray": {
+ "templateId": "AthenaCharacter:CID_672_Athena_Commando_F_ArcticCamo_Gray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_673_Athena_Commando_F_ArcticCamo_Slate": {
+ "templateId": "AthenaCharacter:CID_673_Athena_Commando_F_ArcticCamo_Slate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_674_Athena_Commando_F_HoodieBandit": {
+ "templateId": "AthenaCharacter:CID_674_Athena_Commando_F_HoodieBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_675_Athena_Commando_M_TheGoldenSkeleton": {
+ "templateId": "AthenaCharacter:CID_675_Athena_Commando_M_TheGoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_676_Athena_Commando_M_CODSquadHoodie": {
+ "templateId": "AthenaCharacter:CID_676_Athena_Commando_M_CODSquadHoodie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_677_Athena_Commando_M_SharkAttack": {
+ "templateId": "AthenaCharacter:CID_677_Athena_Commando_M_SharkAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_679_Athena_Commando_M_ModernMilitaryEclipse": {
+ "templateId": "AthenaCharacter:CID_679_Athena_Commando_M_ModernMilitaryEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_680_Athena_Commando_M_StreetRat": {
+ "templateId": "AthenaCharacter:CID_680_Athena_Commando_M_StreetRat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_681_Athena_Commando_M_MartialArtist": {
+ "templateId": "AthenaCharacter:CID_681_Athena_Commando_M_MartialArtist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_682_Athena_Commando_M_VirtualShadow": {
+ "templateId": "AthenaCharacter:CID_682_Athena_Commando_M_VirtualShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_683_Athena_Commando_F_TigerFashion": {
+ "templateId": "AthenaCharacter:CID_683_Athena_Commando_F_TigerFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_684_Athena_Commando_F_DragonRacer": {
+ "templateId": "AthenaCharacter:CID_684_Athena_Commando_F_DragonRacer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_685_Athena_Commando_M_TundraYellow": {
+ "templateId": "AthenaCharacter:CID_685_Athena_Commando_M_TundraYellow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_687_Athena_Commando_M_AgentAce": {
+ "templateId": "AthenaCharacter:CID_687_Athena_Commando_M_AgentAce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_688_Athena_Commando_F_AgentRogue": {
+ "templateId": "AthenaCharacter:CID_688_Athena_Commando_F_AgentRogue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_689_Athena_Commando_M_SpyTechHacker": {
+ "templateId": "AthenaCharacter:CID_689_Athena_Commando_M_SpyTechHacker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_690_Athena_Commando_F_Photographer": {
+ "templateId": "AthenaCharacter:CID_690_Athena_Commando_F_Photographer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_691_Athena_Commando_F_TNTina": {
+ "templateId": "AthenaCharacter:CID_691_Athena_Commando_F_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage7",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_692_Athena_Commando_M_HenchmanTough": {
+ "templateId": "AthenaCharacter:CID_692_Athena_Commando_M_HenchmanTough",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_693_Athena_Commando_M_BuffCat": {
+ "templateId": "AthenaCharacter:CID_693_Athena_Commando_M_BuffCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_694_Athena_Commando_M_CatBurglar": {
+ "templateId": "AthenaCharacter:CID_694_Athena_Commando_M_CatBurglar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_695_Athena_Commando_F_DesertOpsCamo": {
+ "templateId": "AthenaCharacter:CID_695_Athena_Commando_F_DesertOpsCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "003",
+ "owned": [
+ "003",
+ "004",
+ "005"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage6",
+ "owned": [
+ "Stage6",
+ "Stage7",
+ "Stage8",
+ "Stage9",
+ "Stage10",
+ "Stage11"
+ ]
+ },
+ {
+ "channel": "Hair",
+ "active": "014",
+ "owned": [
+ "014",
+ "015",
+ "016",
+ "017"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22",
+ "Mat23",
+ "Mat24"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat9",
+ "owned": [
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4",
+ "Emissive5"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "009",
+ "owned": [
+ "009",
+ "010",
+ "011",
+ "012",
+ "013"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_696_Athena_Commando_F_DarkHeart": {
+ "templateId": "AthenaCharacter:CID_696_Athena_Commando_F_DarkHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_697_Athena_Commando_F_GraffitiFuture": {
+ "templateId": "AthenaCharacter:CID_697_Athena_Commando_F_GraffitiFuture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_698_Athena_Commando_M_CuteDuo": {
+ "templateId": "AthenaCharacter:CID_698_Athena_Commando_M_CuteDuo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_699_Athena_Commando_F_BrokenHeart": {
+ "templateId": "AthenaCharacter:CID_699_Athena_Commando_F_BrokenHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_700_Athena_Commando_M_Candy": {
+ "templateId": "AthenaCharacter:CID_700_Athena_Commando_M_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_701_Athena_Commando_M_BananaAgent": {
+ "templateId": "AthenaCharacter:CID_701_Athena_Commando_M_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_702_Athena_Commando_M_AssassinX": {
+ "templateId": "AthenaCharacter:CID_702_Athena_Commando_M_AssassinX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_703_Athena_Commando_M_Cyclone": {
+ "templateId": "AthenaCharacter:CID_703_Athena_Commando_M_Cyclone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_704_Athena_Commando_F_LollipopTrickster": {
+ "templateId": "AthenaCharacter:CID_704_Athena_Commando_F_LollipopTrickster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_705_Athena_Commando_M_Donut": {
+ "templateId": "AthenaCharacter:CID_705_Athena_Commando_M_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_706_Athena_Commando_M_HenchmanBad_34LVU": {
+ "templateId": "AthenaCharacter:CID_706_Athena_Commando_M_HenchmanBad_34LVU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_707_Athena_Commando_M_HenchmanGood_9OBH6": {
+ "templateId": "AthenaCharacter:CID_707_Athena_Commando_M_HenchmanGood_9OBH6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_708_Athena_Commando_M_SoldierSlurp": {
+ "templateId": "AthenaCharacter:CID_708_Athena_Commando_M_SoldierSlurp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_709_Athena_Commando_F_BandolierSlurp": {
+ "templateId": "AthenaCharacter:CID_709_Athena_Commando_F_BandolierSlurp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_710_Athena_Commando_M_FishheadSlurp": {
+ "templateId": "AthenaCharacter:CID_710_Athena_Commando_M_FishheadSlurp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_711_Athena_Commando_M_LongShorts": {
+ "templateId": "AthenaCharacter:CID_711_Athena_Commando_M_LongShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_712_Athena_Commando_M_Spy": {
+ "templateId": "AthenaCharacter:CID_712_Athena_Commando_M_Spy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_713_Athena_Commando_M_MaskedWarriorSpring": {
+ "templateId": "AthenaCharacter:CID_713_Athena_Commando_M_MaskedWarriorSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_714_Athena_Commando_M_AnarchyAcresFarmer": {
+ "templateId": "AthenaCharacter:CID_714_Athena_Commando_M_AnarchyAcresFarmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_715_Athena_Commando_F_TwinDark": {
+ "templateId": "AthenaCharacter:CID_715_Athena_Commando_F_TwinDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_716_Athena_Commando_M_BlueFlames": {
+ "templateId": "AthenaCharacter:CID_716_Athena_Commando_M_BlueFlames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_717_Athena_Commando_F_BlueFlames": {
+ "templateId": "AthenaCharacter:CID_717_Athena_Commando_F_BlueFlames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_718_Athena_Commando_F_LuckyHero": {
+ "templateId": "AthenaCharacter:CID_718_Athena_Commando_F_LuckyHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_719_Athena_Commando_F_Blonde": {
+ "templateId": "AthenaCharacter:CID_719_Athena_Commando_F_Blonde",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_720_Athena_Commando_F_StreetFashionEmerald": {
+ "templateId": "AthenaCharacter:CID_720_Athena_Commando_F_StreetFashionEmerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_721_Athena_Commando_F_PineappleBandit": {
+ "templateId": "AthenaCharacter:CID_721_Athena_Commando_F_PineappleBandit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_722_Athena_Commando_M_TeriyakiFishAssassin": {
+ "templateId": "AthenaCharacter:CID_722_Athena_Commando_M_TeriyakiFishAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_723_Athena_Commando_F_SpyTech": {
+ "templateId": "AthenaCharacter:CID_723_Athena_Commando_F_SpyTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_724_Athena_Commando_M_SpyTech": {
+ "templateId": "AthenaCharacter:CID_724_Athena_Commando_M_SpyTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_725_Athena_Commando_F_AgentX": {
+ "templateId": "AthenaCharacter:CID_725_Athena_Commando_F_AgentX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_726_Athena_Commando_M_TargetPractice": {
+ "templateId": "AthenaCharacter:CID_726_Athena_Commando_M_TargetPractice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_727_Athena_Commando_M_Tailor": {
+ "templateId": "AthenaCharacter:CID_727_Athena_Commando_M_Tailor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_728_Athena_Commando_M_MinotaurLuck": {
+ "templateId": "AthenaCharacter:CID_728_Athena_Commando_M_MinotaurLuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_729_Athena_Commando_M_Neon": {
+ "templateId": "AthenaCharacter:CID_729_Athena_Commando_M_Neon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_730_Athena_Commando_M_Stars": {
+ "templateId": "AthenaCharacter:CID_730_Athena_Commando_M_Stars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_731_Athena_Commando_F_Neon": {
+ "templateId": "AthenaCharacter:CID_731_Athena_Commando_F_Neon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_732_Athena_Commando_F_Stars": {
+ "templateId": "AthenaCharacter:CID_732_Athena_Commando_F_Stars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_733_Athena_Commando_M_BannerRed": {
+ "templateId": "AthenaCharacter:CID_733_Athena_Commando_M_BannerRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_734_Athena_Commando_F_BannerRed": {
+ "templateId": "AthenaCharacter:CID_734_Athena_Commando_F_BannerRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_735_Athena_Commando_M_Informer": {
+ "templateId": "AthenaCharacter:CID_735_Athena_Commando_M_Informer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_736_Athena_Commando_F_DonutDish": {
+ "templateId": "AthenaCharacter:CID_736_Athena_Commando_F_DonutDish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_737_Athena_Commando_F_DonutPlate": {
+ "templateId": "AthenaCharacter:CID_737_Athena_Commando_F_DonutPlate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_738_Athena_Commando_M_DonutCup": {
+ "templateId": "AthenaCharacter:CID_738_Athena_Commando_M_DonutCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_739_Athena_Commando_M_CardboardCrew": {
+ "templateId": "AthenaCharacter:CID_739_Athena_Commando_M_CardboardCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_740_Athena_Commando_F_CardboardCrew": {
+ "templateId": "AthenaCharacter:CID_740_Athena_Commando_F_CardboardCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_741_Athena_Commando_F_HalloweenBunnySpring": {
+ "templateId": "AthenaCharacter:CID_741_Athena_Commando_F_HalloweenBunnySpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_742_Athena_Commando_M_ChocoBunny": {
+ "templateId": "AthenaCharacter:CID_742_Athena_Commando_M_ChocoBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_743_Athena_Commando_M_Handyman": {
+ "templateId": "AthenaCharacter:CID_743_Athena_Commando_M_Handyman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_744_Athena_Commando_F_DuckHero": {
+ "templateId": "AthenaCharacter:CID_744_Athena_Commando_F_DuckHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_745_Athena_Commando_M_RavenQuill": {
+ "templateId": "AthenaCharacter:CID_745_Athena_Commando_M_RavenQuill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_746_Athena_Commando_F_FuzzyBear": {
+ "templateId": "AthenaCharacter:CID_746_Athena_Commando_F_FuzzyBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_747_Athena_Commando_M_BadEgg": {
+ "templateId": "AthenaCharacter:CID_747_Athena_Commando_M_BadEgg",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_748_Athena_Commando_F_Hitman": {
+ "templateId": "AthenaCharacter:CID_748_Athena_Commando_F_Hitman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_749_Athena_Commando_F_GraffitiAssassin": {
+ "templateId": "AthenaCharacter:CID_749_Athena_Commando_F_GraffitiAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_750_Athena_Commando_M_Hurricane": {
+ "templateId": "AthenaCharacter:CID_750_Athena_Commando_M_Hurricane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_751_Athena_Commando_F_NeonCatSpy": {
+ "templateId": "AthenaCharacter:CID_751_Athena_Commando_F_NeonCatSpy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_752_Athena_Commando_M_Comet": {
+ "templateId": "AthenaCharacter:CID_752_Athena_Commando_M_Comet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_753_Athena_Commando_F_Hostile": {
+ "templateId": "AthenaCharacter:CID_753_Athena_Commando_F_Hostile",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_754_Athena_Commando_F_RaveNinja": {
+ "templateId": "AthenaCharacter:CID_754_Athena_Commando_F_RaveNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_755_Athena_Commando_M_Splinter": {
+ "templateId": "AthenaCharacter:CID_755_Athena_Commando_M_Splinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_756_Athena_Commando_M_JonesyAgent": {
+ "templateId": "AthenaCharacter:CID_756_Athena_Commando_M_JonesyAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_757_Athena_Commando_F_WildCat": {
+ "templateId": "AthenaCharacter:CID_757_Athena_Commando_F_WildCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_758_Athena_Commando_M_TechExplorer": {
+ "templateId": "AthenaCharacter:CID_758_Athena_Commando_M_TechExplorer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_759_Athena_Commando_F_RapVillainess": {
+ "templateId": "AthenaCharacter:CID_759_Athena_Commando_F_RapVillainess",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_760_Athena_Commando_F_NeonTightSuit": {
+ "templateId": "AthenaCharacter:CID_760_Athena_Commando_F_NeonTightSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_761_Athena_Commando_M_CycloneSpace": {
+ "templateId": "AthenaCharacter:CID_761_Athena_Commando_M_CycloneSpace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_762_Athena_Commando_M_BrightGunnerSpy": {
+ "templateId": "AthenaCharacter:CID_762_Athena_Commando_M_BrightGunnerSpy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_763_Athena_Commando_F_ShinyJacket": {
+ "templateId": "AthenaCharacter:CID_763_Athena_Commando_F_ShinyJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_764_Athena_Commando_F_Loofah": {
+ "templateId": "AthenaCharacter:CID_764_Athena_Commando_F_Loofah",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_765_Athena_Commando_F_SpaceWanderer": {
+ "templateId": "AthenaCharacter:CID_765_Athena_Commando_F_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_767_Athena_Commando_F_BlackKnight": {
+ "templateId": "AthenaCharacter:CID_767_Athena_Commando_F_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_768_Athena_Commando_F_HardcoreSportz": {
+ "templateId": "AthenaCharacter:CID_768_Athena_Commando_F_HardcoreSportz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_769_Athena_Commando_M_HardcoreSportz": {
+ "templateId": "AthenaCharacter:CID_769_Athena_Commando_M_HardcoreSportz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_770_Athena_Commando_F_MechanicalEngineer": {
+ "templateId": "AthenaCharacter:CID_770_Athena_Commando_F_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_771_Athena_Commando_F_OceanRider": {
+ "templateId": "AthenaCharacter:CID_771_Athena_Commando_F_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_772_Athena_Commando_M_Sandcastle": {
+ "templateId": "AthenaCharacter:CID_772_Athena_Commando_M_Sandcastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_773_Athena_Commando_M_Beacon": {
+ "templateId": "AthenaCharacter:CID_773_Athena_Commando_M_Beacon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_774_Athena_Commando_M_TacticalScuba": {
+ "templateId": "AthenaCharacter:CID_774_Athena_Commando_M_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_775_Athena_Commando_F_StreetRacerCobraGold": {
+ "templateId": "AthenaCharacter:CID_775_Athena_Commando_F_StreetRacerCobraGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_776_Athena_Commando_M_ProfessorPup": {
+ "templateId": "AthenaCharacter:CID_776_Athena_Commando_M_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_777_Athena_Commando_M_RacerZero": {
+ "templateId": "AthenaCharacter:CID_777_Athena_Commando_M_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_778_Athena_Commando_M_Gator": {
+ "templateId": "AthenaCharacter:CID_778_Athena_Commando_M_Gator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_779_Athena_Commando_M_HenchmanGoodShorts": {
+ "templateId": "AthenaCharacter:CID_779_Athena_Commando_M_HenchmanGoodShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_780_Athena_Commando_M_HenchmanBadShorts": {
+ "templateId": "AthenaCharacter:CID_780_Athena_Commando_M_HenchmanBadShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_781_Athena_Commando_F_FuzzyBearTEDDY": {
+ "templateId": "AthenaCharacter:CID_781_Athena_Commando_F_FuzzyBearTEDDY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_782_Athena_Commando_M_BrightGunnerEclipse": {
+ "templateId": "AthenaCharacter:CID_782_Athena_Commando_M_BrightGunnerEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_783_Athena_Commando_M_AquaJacket": {
+ "templateId": "AthenaCharacter:CID_783_Athena_Commando_M_AquaJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_784_Athena_Commando_F_RenegadeRaiderFire": {
+ "templateId": "AthenaCharacter:CID_784_Athena_Commando_F_RenegadeRaiderFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_785_Athena_Commando_F_Python": {
+ "templateId": "AthenaCharacter:CID_785_Athena_Commando_F_Python",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_786_Athena_Commando_F_CavalryBandit_Ghost": {
+ "templateId": "AthenaCharacter:CID_786_Athena_Commando_F_CavalryBandit_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_787_Athena_Commando_M_Heist_Ghost": {
+ "templateId": "AthenaCharacter:CID_787_Athena_Commando_M_Heist_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_788_Athena_Commando_M_Mastermind_Ghost": {
+ "templateId": "AthenaCharacter:CID_788_Athena_Commando_M_Mastermind_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_789_Athena_Commando_M_HenchmanGoodShorts_B": {
+ "templateId": "AthenaCharacter:CID_789_Athena_Commando_M_HenchmanGoodShorts_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_790_Athena_Commando_M_HenchmanGoodShorts_C": {
+ "templateId": "AthenaCharacter:CID_790_Athena_Commando_M_HenchmanGoodShorts_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_791_Athena_Commando_M_HenchmanGoodShorts_D": {
+ "templateId": "AthenaCharacter:CID_791_Athena_Commando_M_HenchmanGoodShorts_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_792_Athena_Commando_M_HenchmanBadShorts_B": {
+ "templateId": "AthenaCharacter:CID_792_Athena_Commando_M_HenchmanBadShorts_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_793_Athena_Commando_M_HenchmanBadShorts_C": {
+ "templateId": "AthenaCharacter:CID_793_Athena_Commando_M_HenchmanBadShorts_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_794_Athena_Commando_M_HenchmanBadShorts_D": {
+ "templateId": "AthenaCharacter:CID_794_Athena_Commando_M_HenchmanBadShorts_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_795_Athena_Commando_M_Dummeez": {
+ "templateId": "AthenaCharacter:CID_795_Athena_Commando_M_Dummeez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_796_Athena_Commando_F_Tank": {
+ "templateId": "AthenaCharacter:CID_796_Athena_Commando_F_Tank",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_797_Athena_Commando_F_Taco": {
+ "templateId": "AthenaCharacter:CID_797_Athena_Commando_F_Taco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_798_Athena_Commando_M_JonesyVagabond": {
+ "templateId": "AthenaCharacter:CID_798_Athena_Commando_M_JonesyVagabond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_799_Athena_Commando_F_CupidDark": {
+ "templateId": "AthenaCharacter:CID_799_Athena_Commando_F_CupidDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_800_Athena_Commando_M_Robro": {
+ "templateId": "AthenaCharacter:CID_800_Athena_Commando_M_Robro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_801_Athena_Commando_F_GolfSummer": {
+ "templateId": "AthenaCharacter:CID_801_Athena_Commando_F_GolfSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_802_Athena_Commando_F_HeartBreaker": {
+ "templateId": "AthenaCharacter:CID_802_Athena_Commando_F_HeartBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_803_Athena_Commando_F_SharkSuit": {
+ "templateId": "AthenaCharacter:CID_803_Athena_Commando_F_SharkSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_804_Athena_Commando_M_SharkSuit": {
+ "templateId": "AthenaCharacter:CID_804_Athena_Commando_M_SharkSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_805_Athena_Commando_F_PunkDevilSummer": {
+ "templateId": "AthenaCharacter:CID_805_Athena_Commando_F_PunkDevilSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_806_Athena_Commando_F_GreenJacket": {
+ "templateId": "AthenaCharacter:CID_806_Athena_Commando_F_GreenJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_807_Athena_Commando_M_CandyApple_B1U7X": {
+ "templateId": "AthenaCharacter:CID_807_Athena_Commando_M_CandyApple_B1U7X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_808_Athena_Commando_F_ConstellationSun": {
+ "templateId": "AthenaCharacter:CID_808_Athena_Commando_F_ConstellationSun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_809_Athena_Commando_M_Seaweed_IXRLQ": {
+ "templateId": "AthenaCharacter:CID_809_Athena_Commando_M_Seaweed_IXRLQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_810_Athena_Commando_M_MilitaryFashionSummer": {
+ "templateId": "AthenaCharacter:CID_810_Athena_Commando_M_MilitaryFashionSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_811_Athena_Commando_F_CandySummer": {
+ "templateId": "AthenaCharacter:CID_811_Athena_Commando_F_CandySummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_812_Athena_Commando_F_RedRidingSummer": {
+ "templateId": "AthenaCharacter:CID_812_Athena_Commando_F_RedRidingSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_813_Athena_Commando_M_TeriyakiAtlantis": {
+ "templateId": "AthenaCharacter:CID_813_Athena_Commando_M_TeriyakiAtlantis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_814_Athena_Commando_M_BananaSummer": {
+ "templateId": "AthenaCharacter:CID_814_Athena_Commando_M_BananaSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_815_Athena_Commando_F_DurrburgerHero": {
+ "templateId": "AthenaCharacter:CID_815_Athena_Commando_F_DurrburgerHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_816_Athena_Commando_F_DirtyDocks": {
+ "templateId": "AthenaCharacter:CID_816_Athena_Commando_F_DirtyDocks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_817_Athena_Commando_M_DirtyDocks": {
+ "templateId": "AthenaCharacter:CID_817_Athena_Commando_M_DirtyDocks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_818_Athena_Commando_F_NeonTightSuit_A": {
+ "templateId": "AthenaCharacter:CID_818_Athena_Commando_F_NeonTightSuit_A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_819_Athena_Commando_F_NeonTightSuit_B": {
+ "templateId": "AthenaCharacter:CID_819_Athena_Commando_F_NeonTightSuit_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_820_Athena_Commando_F_NeonTightSuit_C": {
+ "templateId": "AthenaCharacter:CID_820_Athena_Commando_F_NeonTightSuit_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_822_Athena_Commando_F_Angler": {
+ "templateId": "AthenaCharacter:CID_822_Athena_Commando_F_Angler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_823_Athena_Commando_F_Islander": {
+ "templateId": "AthenaCharacter:CID_823_Athena_Commando_F_Islander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_824_Athena_Commando_F_RaiderPink": {
+ "templateId": "AthenaCharacter:CID_824_Athena_Commando_F_RaiderPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_825_Athena_Commando_F_SportsFashion": {
+ "templateId": "AthenaCharacter:CID_825_Athena_Commando_F_SportsFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_826_Athena_Commando_M_FloatillaCaptain": {
+ "templateId": "AthenaCharacter:CID_826_Athena_Commando_M_FloatillaCaptain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_827_Athena_Commando_M_MultibotStealth": {
+ "templateId": "AthenaCharacter:CID_827_Athena_Commando_M_MultibotStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_828_Athena_Commando_F_Valet": {
+ "templateId": "AthenaCharacter:CID_828_Athena_Commando_F_Valet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_829_Athena_Commando_M_Valet": {
+ "templateId": "AthenaCharacter:CID_829_Athena_Commando_M_Valet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_830_Athena_Commando_M_SpaceWanderer": {
+ "templateId": "AthenaCharacter:CID_830_Athena_Commando_M_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_831_Athena_Commando_F_PIzzaPitMascot": {
+ "templateId": "AthenaCharacter:CID_831_Athena_Commando_F_PIzzaPitMascot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_832_Athena_Commando_F_AntiLlama": {
+ "templateId": "AthenaCharacter:CID_832_Athena_Commando_F_AntiLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_833_Athena_Commando_F_TripleScoop": {
+ "templateId": "AthenaCharacter:CID_833_Athena_Commando_F_TripleScoop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_834_Athena_Commando_M_Axl": {
+ "templateId": "AthenaCharacter:CID_834_Athena_Commando_M_Axl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_835_Athena_Commando_F_LadyAtlantis": {
+ "templateId": "AthenaCharacter:CID_835_Athena_Commando_F_LadyAtlantis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_836_Athena_Commando_M_JonesyFlare": {
+ "templateId": "AthenaCharacter:CID_836_Athena_Commando_M_JonesyFlare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_837_Athena_Commando_M_MaskedDancer": {
+ "templateId": "AthenaCharacter:CID_837_Athena_Commando_M_MaskedDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_838_Athena_Commando_M_JunkSamurai": {
+ "templateId": "AthenaCharacter:CID_838_Athena_Commando_M_JunkSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_839_Athena_Commando_F_HightowerSquash": {
+ "templateId": "AthenaCharacter:CID_839_Athena_Commando_F_HightowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_840_Athena_Commando_M_HightowerGrape": {
+ "templateId": "AthenaCharacter:CID_840_Athena_Commando_M_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_841_Athena_Commando_M_HightowerWasabi": {
+ "templateId": "AthenaCharacter:CID_841_Athena_Commando_M_HightowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_842_Athena_Commando_F_HightowerHoneydew": {
+ "templateId": "AthenaCharacter:CID_842_Athena_Commando_F_HightowerHoneydew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_843_Athena_Commando_M_HightowerTomato_Casual": {
+ "templateId": "AthenaCharacter:CID_843_Athena_Commando_M_HightowerTomato_Casual",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_844_Athena_Commando_F_HightowerMango": {
+ "templateId": "AthenaCharacter:CID_844_Athena_Commando_F_HightowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_845_Athena_Commando_M_HightowerTapas": {
+ "templateId": "AthenaCharacter:CID_845_Athena_Commando_M_HightowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_846_Athena_Commando_M_HightowerDate": {
+ "templateId": "AthenaCharacter:CID_846_Athena_Commando_M_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_847_Athena_Commando_M_Soy_2AS3C": {
+ "templateId": "AthenaCharacter:CID_847_Athena_Commando_M_Soy_2AS3C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_848_Athena_Commando_F_DarkNinjaPurple": {
+ "templateId": "AthenaCharacter:CID_848_Athena_Commando_F_DarkNinjaPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_849_Athena_Commando_M_DarkEaglePurple": {
+ "templateId": "AthenaCharacter:CID_849_Athena_Commando_M_DarkEaglePurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_850_Athena_Commando_F_SkullBriteCube": {
+ "templateId": "AthenaCharacter:CID_850_Athena_Commando_F_SkullBriteCube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_851_Athena_Commando_M_Bittenhead": {
+ "templateId": "AthenaCharacter:CID_851_Athena_Commando_M_Bittenhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_852_Athena_Commando_F_BlackWidowCorrupt": {
+ "templateId": "AthenaCharacter:CID_852_Athena_Commando_F_BlackWidowCorrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_853_Athena_Commando_F_SniperHoodCorrupt": {
+ "templateId": "AthenaCharacter:CID_853_Athena_Commando_F_SniperHoodCorrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_854_Athena_Commando_M_SamuraiUltraArmorCorrupt": {
+ "templateId": "AthenaCharacter:CID_854_Athena_Commando_M_SamuraiUltraArmorCorrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_855_Athena_Commando_M_Elastic": {
+ "templateId": "AthenaCharacter:CID_855_Athena_Commando_M_Elastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_856_Athena_Commando_M_Elastic_B": {
+ "templateId": "AthenaCharacter:CID_856_Athena_Commando_M_Elastic_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_857_Athena_Commando_M_Elastic_C": {
+ "templateId": "AthenaCharacter:CID_857_Athena_Commando_M_Elastic_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_858_Athena_Commando_M_Elastic_D": {
+ "templateId": "AthenaCharacter:CID_858_Athena_Commando_M_Elastic_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_859_Athena_Commando_M_Elastic_E": {
+ "templateId": "AthenaCharacter:CID_859_Athena_Commando_M_Elastic_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Color",
+ "owned": [
+ "Color",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_860_Athena_Commando_F_Elastic": {
+ "templateId": "AthenaCharacter:CID_860_Athena_Commando_F_Elastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_861_Athena_Commando_F_Elastic_B": {
+ "templateId": "AthenaCharacter:CID_861_Athena_Commando_F_Elastic_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_862_Athena_Commando_F_Elastic_C": {
+ "templateId": "AthenaCharacter:CID_862_Athena_Commando_F_Elastic_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_863_Athena_Commando_F_Elastic_D": {
+ "templateId": "AthenaCharacter:CID_863_Athena_Commando_F_Elastic_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "000",
+ "owned": [
+ "000",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_864_Athena_Commando_F_Elastic_E": {
+ "templateId": "AthenaCharacter:CID_864_Athena_Commando_F_Elastic_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Hair",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10",
+ "Mat11",
+ "Mat12",
+ "Mat13",
+ "Mat14",
+ "Mat15",
+ "Mat16",
+ "Mat17",
+ "Mat18",
+ "Mat19",
+ "Mat20",
+ "Mat21",
+ "Mat22"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage0"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "003"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "001",
+ "owned": [
+ "001",
+ "002"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_865_Athena_Commando_F_CloakedAssassin_1XKHT": {
+ "templateId": "AthenaCharacter:CID_865_Athena_Commando_F_CloakedAssassin_1XKHT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_866_Athena_Commando_F_Myth": {
+ "templateId": "AthenaCharacter:CID_866_Athena_Commando_F_Myth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_867_Athena_Commando_M_Myth": {
+ "templateId": "AthenaCharacter:CID_867_Athena_Commando_M_Myth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_868_Athena_Commando_M_Backspin_3U6CA": {
+ "templateId": "AthenaCharacter:CID_868_Athena_Commando_M_Backspin_3U6CA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_869_Athena_Commando_F_Cavalry": {
+ "templateId": "AthenaCharacter:CID_869_Athena_Commando_F_Cavalry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_870_Athena_Commando_M_KevinCouture": {
+ "templateId": "AthenaCharacter:CID_870_Athena_Commando_M_KevinCouture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_871_Athena_Commando_F_StreetFashionGarnet": {
+ "templateId": "AthenaCharacter:CID_871_Athena_Commando_F_StreetFashionGarnet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_872_Athena_Commando_F_TeriyakiFishPrincess": {
+ "templateId": "AthenaCharacter:CID_872_Athena_Commando_F_TeriyakiFishPrincess",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_873_Athena_Commando_M_RebirthDefaultE": {
+ "templateId": "AthenaCharacter:CID_873_Athena_Commando_M_RebirthDefaultE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_874_Athena_Commando_M_RebirthDefaultF": {
+ "templateId": "AthenaCharacter:CID_874_Athena_Commando_M_RebirthDefaultF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_875_Athena_Commando_M_RebirthDefaultG": {
+ "templateId": "AthenaCharacter:CID_875_Athena_Commando_M_RebirthDefaultG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_876_Athena_Commando_M_RebirthDefaultH": {
+ "templateId": "AthenaCharacter:CID_876_Athena_Commando_M_RebirthDefaultH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_877_Athena_Commando_M_RebirthDefaultI": {
+ "templateId": "AthenaCharacter:CID_877_Athena_Commando_M_RebirthDefaultI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_878_Athena_Commando_F_RebirthDefault_E": {
+ "templateId": "AthenaCharacter:CID_878_Athena_Commando_F_RebirthDefault_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_879_Athena_Commando_F_RebirthDefault_F": {
+ "templateId": "AthenaCharacter:CID_879_Athena_Commando_F_RebirthDefault_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_880_Athena_Commando_F_RebirthDefault_G": {
+ "templateId": "AthenaCharacter:CID_880_Athena_Commando_F_RebirthDefault_G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_881_Athena_Commando_F_RebirthDefault_H": {
+ "templateId": "AthenaCharacter:CID_881_Athena_Commando_F_RebirthDefault_H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_882_Athena_Commando_F_RebirthDefault_I": {
+ "templateId": "AthenaCharacter:CID_882_Athena_Commando_F_RebirthDefault_I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_883_Athena_Commando_M_ChOneJonesy": {
+ "templateId": "AthenaCharacter:CID_883_Athena_Commando_M_ChOneJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_883_Athena_M_3L_LOD2": {
+ "templateId": "AthenaCharacter:CID_883_Athena_M_3L_LOD2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_883_Athena_M_FN_Jonesy": {
+ "templateId": "AthenaCharacter:CID_883_Athena_M_FN_Jonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_884_Athena_Commando_F_ChOneRamirez": {
+ "templateId": "AthenaCharacter:CID_884_Athena_Commando_F_ChOneRamirez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_885_Athena_Commando_M_ChOneHawk": {
+ "templateId": "AthenaCharacter:CID_885_Athena_Commando_M_ChOneHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_886_Athena_Commando_M_ChOneRenegade": {
+ "templateId": "AthenaCharacter:CID_886_Athena_Commando_M_ChOneRenegade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_887_Athena_Commando_M_ChOneSpitfire": {
+ "templateId": "AthenaCharacter:CID_887_Athena_Commando_M_ChOneSpitfire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_888_Athena_Commando_F_ChOneBanshee": {
+ "templateId": "AthenaCharacter:CID_888_Athena_Commando_F_ChOneBanshee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_889_Athena_Commando_F_ChOneWildcat": {
+ "templateId": "AthenaCharacter:CID_889_Athena_Commando_F_ChOneWildcat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_890_Athena_Commando_F_ChOneHeadhunter": {
+ "templateId": "AthenaCharacter:CID_890_Athena_Commando_F_ChOneHeadhunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_891_Athena_Commando_M_LunchBox": {
+ "templateId": "AthenaCharacter:CID_891_Athena_Commando_M_LunchBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_892_Athena_Commando_F_VampireCasual": {
+ "templateId": "AthenaCharacter:CID_892_Athena_Commando_F_VampireCasual",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_893_Athena_Commando_F_BlackWidowJacket": {
+ "templateId": "AthenaCharacter:CID_893_Athena_Commando_F_BlackWidowJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_894_Athena_Commando_M_Palespooky": {
+ "templateId": "AthenaCharacter:CID_894_Athena_Commando_M_Palespooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_895_Athena_Commando_M_DeliSandwich": {
+ "templateId": "AthenaCharacter:CID_895_Athena_Commando_M_DeliSandwich",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_896_Athena_Commando_F_SpookyNeon": {
+ "templateId": "AthenaCharacter:CID_896_Athena_Commando_F_SpookyNeon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_897_Athena_Commando_F_DarkBomberSummer": {
+ "templateId": "AthenaCharacter:CID_897_Athena_Commando_F_DarkBomberSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_898_Athena_Commando_M_FlowerSkeleton": {
+ "templateId": "AthenaCharacter:CID_898_Athena_Commando_M_FlowerSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_899_Athena_Commando_F_Poison": {
+ "templateId": "AthenaCharacter:CID_899_Athena_Commando_F_Poison",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_900_Athena_Commando_M_Famine": {
+ "templateId": "AthenaCharacter:CID_900_Athena_Commando_M_Famine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_901_Athena_Commando_F_PumpkinSpice": {
+ "templateId": "AthenaCharacter:CID_901_Athena_Commando_F_PumpkinSpice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_902_Athena_Commando_M_PumpkinPunk": {
+ "templateId": "AthenaCharacter:CID_902_Athena_Commando_M_PumpkinPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_903_Athena_Commando_F_Frankie": {
+ "templateId": "AthenaCharacter:CID_903_Athena_Commando_F_Frankie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_904_Athena_Commando_M_Jekyll": {
+ "templateId": "AthenaCharacter:CID_904_Athena_Commando_M_Jekyll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_905_Athena_Commando_M_York": {
+ "templateId": "AthenaCharacter:CID_905_Athena_Commando_M_York",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_906_Athena_Commando_M_York_B": {
+ "templateId": "AthenaCharacter:CID_906_Athena_Commando_M_York_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_907_Athena_Commando_M_York_C": {
+ "templateId": "AthenaCharacter:CID_907_Athena_Commando_M_York_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_908_Athena_Commando_M_York_D": {
+ "templateId": "AthenaCharacter:CID_908_Athena_Commando_M_York_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_909_Athena_Commando_M_York_E": {
+ "templateId": "AthenaCharacter:CID_909_Athena_Commando_M_York_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_910_Athena_Commando_F_York": {
+ "templateId": "AthenaCharacter:CID_910_Athena_Commando_F_York",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_911_Athena_Commando_F_York_B": {
+ "templateId": "AthenaCharacter:CID_911_Athena_Commando_F_York_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_912_Athena_Commando_F_York_C": {
+ "templateId": "AthenaCharacter:CID_912_Athena_Commando_F_York_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_913_Athena_Commando_F_York_D": {
+ "templateId": "AthenaCharacter:CID_913_Athena_Commando_F_York_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_914_Athena_Commando_F_York_E": {
+ "templateId": "AthenaCharacter:CID_914_Athena_Commando_F_York_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_915_Athena_Commando_F_RavenQuillSkull": {
+ "templateId": "AthenaCharacter:CID_915_Athena_Commando_F_RavenQuillSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_916_Athena_Commando_F_FuzzyBearSkull": {
+ "templateId": "AthenaCharacter:CID_916_Athena_Commando_F_FuzzyBearSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_917_Athena_Commando_M_DurrburgerSkull": {
+ "templateId": "AthenaCharacter:CID_917_Athena_Commando_M_DurrburgerSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_918_Athena_Commando_M_TeriyakiFishSkull": {
+ "templateId": "AthenaCharacter:CID_918_Athena_Commando_M_TeriyakiFishSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_919_Athena_Commando_F_BabaYaga": {
+ "templateId": "AthenaCharacter:CID_919_Athena_Commando_F_BabaYaga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_920_Athena_Commando_M_PartyTrooper": {
+ "templateId": "AthenaCharacter:CID_920_Athena_Commando_M_PartyTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_921_Athena_Commando_F_ParcelPetal": {
+ "templateId": "AthenaCharacter:CID_921_Athena_Commando_F_ParcelPetal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_922_Athena_Commando_M_ParcelPrank": {
+ "templateId": "AthenaCharacter:CID_922_Athena_Commando_M_ParcelPrank",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_923_Athena_Commando_M_ParcelGold": {
+ "templateId": "AthenaCharacter:CID_923_Athena_Commando_M_ParcelGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_924_Athena_Commando_M_Embers": {
+ "templateId": "AthenaCharacter:CID_924_Athena_Commando_M_Embers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_925_Athena_Commando_F_TapDance": {
+ "templateId": "AthenaCharacter:CID_925_Athena_Commando_F_TapDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_926_Athena_Commando_F_StreetFashionDiamond": {
+ "templateId": "AthenaCharacter:CID_926_Athena_Commando_F_StreetFashionDiamond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_927_Athena_Commando_M_NauticalPajamas": {
+ "templateId": "AthenaCharacter:CID_927_Athena_Commando_M_NauticalPajamas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_928_Athena_Commando_M_NauticalPajamas_B": {
+ "templateId": "AthenaCharacter:CID_928_Athena_Commando_M_NauticalPajamas_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_929_Athena_Commando_M_NauticalPajamas_C": {
+ "templateId": "AthenaCharacter:CID_929_Athena_Commando_M_NauticalPajamas_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_930_Athena_Commando_M_NauticalPajamas_D": {
+ "templateId": "AthenaCharacter:CID_930_Athena_Commando_M_NauticalPajamas_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_931_Athena_Commando_M_NauticalPajamas_E": {
+ "templateId": "AthenaCharacter:CID_931_Athena_Commando_M_NauticalPajamas_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_932_Athena_Commando_M_ShockWave": {
+ "templateId": "AthenaCharacter:CID_932_Athena_Commando_M_ShockWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_933_Athena_Commando_F_FuturePink": {
+ "templateId": "AthenaCharacter:CID_933_Athena_Commando_F_FuturePink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_934_Athena_Commando_M_Vertigo": {
+ "templateId": "AthenaCharacter:CID_934_Athena_Commando_M_Vertigo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_935_Athena_Commando_F_Eternity": {
+ "templateId": "AthenaCharacter:CID_935_Athena_Commando_F_Eternity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_936_Athena_Commando_F_RaiderSilver": {
+ "templateId": "AthenaCharacter:CID_936_Athena_Commando_F_RaiderSilver",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_937_Athena_Commando_M_Football20_UIC2Q": {
+ "templateId": "AthenaCharacter:CID_937_Athena_Commando_M_Football20_UIC2Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_938_Athena_Commando_M_Football20_B_I18W6": {
+ "templateId": "AthenaCharacter:CID_938_Athena_Commando_M_Football20_B_I18W6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_939_Athena_Commando_M_Football20_C_9OP0F": {
+ "templateId": "AthenaCharacter:CID_939_Athena_Commando_M_Football20_C_9OP0F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_940_Athena_Commando_M_Football20_D_ZID7Q": {
+ "templateId": "AthenaCharacter:CID_940_Athena_Commando_M_Football20_D_ZID7Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_941_Athena_Commando_M_Football20_E_KNWUY": {
+ "templateId": "AthenaCharacter:CID_941_Athena_Commando_M_Football20_E_KNWUY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_942_Athena_Commando_F_Football20_YQUPK": {
+ "templateId": "AthenaCharacter:CID_942_Athena_Commando_F_Football20_YQUPK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_943_Athena_Commando_F_Football20_B_GR3WN": {
+ "templateId": "AthenaCharacter:CID_943_Athena_Commando_F_Football20_B_GR3WN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_944_Athena_Commando_F_Football20_C_FO6IY": {
+ "templateId": "AthenaCharacter:CID_944_Athena_Commando_F_Football20_C_FO6IY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_945_Athena_Commando_F_Football20_D_G1UYT": {
+ "templateId": "AthenaCharacter:CID_945_Athena_Commando_F_Football20_D_G1UYT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_946_Athena_Commando_F_Football20_E_EFKP3": {
+ "templateId": "AthenaCharacter:CID_946_Athena_Commando_F_Football20_E_EFKP3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "063",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024",
+ "025",
+ "026",
+ "027",
+ "028",
+ "029",
+ "030",
+ "031",
+ "032",
+ "033",
+ "034",
+ "035",
+ "036",
+ "037",
+ "038",
+ "039",
+ "040",
+ "041",
+ "042",
+ "043",
+ "044",
+ "045",
+ "046",
+ "047",
+ "048",
+ "049",
+ "050",
+ "051",
+ "052",
+ "053",
+ "054",
+ "055",
+ "056",
+ "057",
+ "058",
+ "059",
+ "060",
+ "061",
+ "062",
+ "064",
+ "065"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_947_Athena_Commando_M_Football20Referee_IN7EY": {
+ "templateId": "AthenaCharacter:CID_947_Athena_Commando_M_Football20Referee_IN7EY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_948_Athena_Commando_M_Football20Referee_B_QPXTH": {
+ "templateId": "AthenaCharacter:CID_948_Athena_Commando_M_Football20Referee_B_QPXTH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY": {
+ "templateId": "AthenaCharacter:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_950_Athena_Commando_M_Football20Referee_D_MIHME": {
+ "templateId": "AthenaCharacter:CID_950_Athena_Commando_M_Football20Referee_D_MIHME",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA": {
+ "templateId": "AthenaCharacter:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_952_Athena_Commando_F_Football20Referee_ZX4IC": {
+ "templateId": "AthenaCharacter:CID_952_Athena_Commando_F_Football20Referee_ZX4IC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q": {
+ "templateId": "AthenaCharacter:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_954_Athena_Commando_F_Football20Referee_C_NAQ0G": {
+ "templateId": "AthenaCharacter:CID_954_Athena_Commando_F_Football20Referee_C_NAQ0G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL": {
+ "templateId": "AthenaCharacter:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6": {
+ "templateId": "AthenaCharacter:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_957_Athena_Commando_F_Ponytail": {
+ "templateId": "AthenaCharacter:CID_957_Athena_Commando_F_Ponytail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_958_Athena_Commando_M_PieMan": {
+ "templateId": "AthenaCharacter:CID_958_Athena_Commando_M_PieMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_959_Athena_Commando_M_Corny": {
+ "templateId": "AthenaCharacter:CID_959_Athena_Commando_M_Corny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_960_Athena_Commando_M_Cosmos": {
+ "templateId": "AthenaCharacter:CID_960_Athena_Commando_M_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Stage5",
+ "owned": [
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage7",
+ "owned": [
+ "Stage7",
+ "Stage8"
+ ]
+ },
+ {
+ "channel": "Numeric",
+ "active": "Stage9",
+ "owned": [
+ "Stage9",
+ "Stage10"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Stage11",
+ "owned": [
+ "Stage11",
+ "Stage12"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_961_Athena_Commando_F_Shapeshifter": {
+ "templateId": "AthenaCharacter:CID_961_Athena_Commando_F_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_962_Athena_Commando_M_FlapjackWrangler": {
+ "templateId": "AthenaCharacter:CID_962_Athena_Commando_M_FlapjackWrangler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_963_Athena_Commando_F_Lexa": {
+ "templateId": "AthenaCharacter:CID_963_Athena_Commando_F_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_964_Athena_Commando_M_Historian_869BC": {
+ "templateId": "AthenaCharacter:CID_964_Athena_Commando_M_Historian_869BC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_965_Athena_Commando_F_SpaceFighter": {
+ "templateId": "AthenaCharacter:CID_965_Athena_Commando_F_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_966_Athena_Commando_M_FutureSamurai": {
+ "templateId": "AthenaCharacter:CID_966_Athena_Commando_M_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_967_Athena_Commando_M_AncientGladiator": {
+ "templateId": "AthenaCharacter:CID_967_Athena_Commando_M_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage5",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat5",
+ "Mat4",
+ "Mat6"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_968_Athena_Commando_M_TeriyakiFishElf": {
+ "templateId": "AthenaCharacter:CID_968_Athena_Commando_M_TeriyakiFishElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_969_Athena_Commando_M_SnowmanFashion": {
+ "templateId": "AthenaCharacter:CID_969_Athena_Commando_M_SnowmanFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_970_Athena_Commando_F_RenegadeRaiderHoliday": {
+ "templateId": "AthenaCharacter:CID_970_Athena_Commando_F_RenegadeRaiderHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_971_Athena_Commando_M_Jupiter_S0Z6M": {
+ "templateId": "AthenaCharacter:CID_971_Athena_Commando_M_Jupiter_S0Z6M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_972_Athena_Commando_F_ArcticCamoWoods": {
+ "templateId": "AthenaCharacter:CID_972_Athena_Commando_F_ArcticCamoWoods",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_973_Athena_Commando_F_Mechstructor": {
+ "templateId": "AthenaCharacter:CID_973_Athena_Commando_F_Mechstructor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_974_Athena_Commando_F_StreetFashionHoliday": {
+ "templateId": "AthenaCharacter:CID_974_Athena_Commando_F_StreetFashionHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_975_Athena_Commando_F_Cherry_B8XN5": {
+ "templateId": "AthenaCharacter:CID_975_Athena_Commando_F_Cherry_B8XN5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_976_Athena_Commando_F_Wombat_0GRTQ": {
+ "templateId": "AthenaCharacter:CID_976_Athena_Commando_F_Wombat_0GRTQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_977_Athena_Commando_M_Wombat_R7Q8K": {
+ "templateId": "AthenaCharacter:CID_977_Athena_Commando_M_Wombat_R7Q8K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_978_Athena_Commando_M_FancyCandy": {
+ "templateId": "AthenaCharacter:CID_978_Athena_Commando_M_FancyCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_979_Athena_Commando_M_Snowboarder": {
+ "templateId": "AthenaCharacter:CID_979_Athena_Commando_M_Snowboarder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_980_Athena_Commando_F_Elf": {
+ "templateId": "AthenaCharacter:CID_980_Athena_Commando_F_Elf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_981_Athena_Commando_M_JonesyHoliday": {
+ "templateId": "AthenaCharacter:CID_981_Athena_Commando_M_JonesyHoliday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_982_Athena_Commando_M_DriftWinter": {
+ "templateId": "AthenaCharacter:CID_982_Athena_Commando_M_DriftWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_983_Athena_Commando_F_CupidWinter": {
+ "templateId": "AthenaCharacter:CID_983_Athena_Commando_F_CupidWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_984_Athena_Commando_M_HolidayLights": {
+ "templateId": "AthenaCharacter:CID_984_Athena_Commando_M_HolidayLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_985_Athena_Commando_M_TipToe_5L424": {
+ "templateId": "AthenaCharacter:CID_985_Athena_Commando_M_TipToe_5L424",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_986_Athena_Commando_M_PlumRetro_4AJA2": {
+ "templateId": "AthenaCharacter:CID_986_Athena_Commando_M_PlumRetro_4AJA2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_987_Athena_Commando_M_Frostbyte": {
+ "templateId": "AthenaCharacter:CID_987_Athena_Commando_M_Frostbyte",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_988_Athena_Commando_M_Tiramisu_5KHZP": {
+ "templateId": "AthenaCharacter:CID_988_Athena_Commando_M_Tiramisu_5KHZP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_989_Athena_Commando_M_ProgressiveJonesy": {
+ "templateId": "AthenaCharacter:CID_989_Athena_Commando_M_ProgressiveJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage6",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_990_Athena_Commando_M_GrilledCheese_SNX4K": {
+ "templateId": "AthenaCharacter:CID_990_Athena_Commando_M_GrilledCheese_SNX4K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_991_Athena_Commando_M_Nightmare_NM1C8": {
+ "templateId": "AthenaCharacter:CID_991_Athena_Commando_M_Nightmare_NM1C8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_992_Athena_Commando_F_Typhoon_LPFU6": {
+ "templateId": "AthenaCharacter:CID_992_Athena_Commando_F_Typhoon_LPFU6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_993_Athena_Commando_M_TyphoonRobot_2YRGV": {
+ "templateId": "AthenaCharacter:CID_993_Athena_Commando_M_TyphoonRobot_2YRGV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_994_Athena_Commando_M_Lexa": {
+ "templateId": "AthenaCharacter:CID_994_Athena_Commando_M_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_995_Athena_Commando_M_GlobalFB_H5OIJ": {
+ "templateId": "AthenaCharacter:CID_995_Athena_Commando_M_GlobalFB_H5OIJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "011",
+ "owned": [
+ "011",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_996_Athena_Commando_M_GlobalFB_B_RVED4": {
+ "templateId": "AthenaCharacter:CID_996_Athena_Commando_M_GlobalFB_B_RVED4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "010",
+ "owned": [
+ "010",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H": {
+ "templateId": "AthenaCharacter:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "012",
+ "owned": [
+ "012",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8": {
+ "templateId": "AthenaCharacter:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "007",
+ "owned": [
+ "007",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_999_Athena_Commando_M_GlobalFB_E_OISU6": {
+ "templateId": "AthenaCharacter:CID_999_Athena_Commando_M_GlobalFB_E_OISU6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W": {
+ "templateId": "AthenaCharacter:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "009",
+ "owned": [
+ "009",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64": {
+ "templateId": "AthenaCharacter:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "017",
+ "owned": [
+ "017",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J": {
+ "templateId": "AthenaCharacter:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "019",
+ "owned": [
+ "019",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5": {
+ "templateId": "AthenaCharacter:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "002",
+ "owned": [
+ "002",
+ "001",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I": {
+ "templateId": "AthenaCharacter:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "016",
+ "owned": [
+ "016",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "014",
+ "015",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022",
+ "023",
+ "024"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_006_Athena_Commando_M_ConvoyTarantula_641PZ": {
+ "templateId": "AthenaCharacter:CID_A_006_Athena_Commando_M_ConvoyTarantula_641PZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_007_Athena_Commando_F_StreetFashionEclipse": {
+ "templateId": "AthenaCharacter:CID_A_007_Athena_Commando_F_StreetFashionEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_008_Athena_Commando_F_CombatDoll": {
+ "templateId": "AthenaCharacter:CID_A_008_Athena_Commando_F_CombatDoll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_009_Athena_Commando_F_FoxWarrior_21B9R": {
+ "templateId": "AthenaCharacter:CID_A_009_Athena_Commando_F_FoxWarrior_21B9R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_010_Athena_Commando_M_Tar_46FMC": {
+ "templateId": "AthenaCharacter:CID_A_010_Athena_Commando_M_Tar_46FMC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_011_Athena_Commando_M_StreetCuddles": {
+ "templateId": "AthenaCharacter:CID_A_011_Athena_Commando_M_StreetCuddles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_012_Athena_Commando_M_Mainframe_V7Q8R": {
+ "templateId": "AthenaCharacter:CID_A_012_Athena_Commando_M_Mainframe_V7Q8R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_013_Athena_Commando_M_Mainframe_B_70Z5M": {
+ "templateId": "AthenaCharacter:CID_A_013_Athena_Commando_M_Mainframe_B_70Z5M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_014_Athena_Commando_M_Mainframe_C_YVDOL": {
+ "templateId": "AthenaCharacter:CID_A_014_Athena_Commando_M_Mainframe_C_YVDOL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_015_Athena_Commando_M_Mainframe_D_S625D": {
+ "templateId": "AthenaCharacter:CID_A_015_Athena_Commando_M_Mainframe_D_S625D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_016_Athena_Commando_M_Mainframe_E_KPZJL": {
+ "templateId": "AthenaCharacter:CID_A_016_Athena_Commando_M_Mainframe_E_KPZJL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_017_Athena_Commando_F_Mainframe_CYL17": {
+ "templateId": "AthenaCharacter:CID_A_017_Athena_Commando_F_Mainframe_CYL17",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_018_Athena_Commando_F_Mainframe_B_T6GY4": {
+ "templateId": "AthenaCharacter:CID_A_018_Athena_Commando_F_Mainframe_B_T6GY4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_019_Athena_Commando_F_Mainframe_C_U5RI4": {
+ "templateId": "AthenaCharacter:CID_A_019_Athena_Commando_F_Mainframe_C_U5RI4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_020_Athena_Commando_F_Mainframe_D_ZHVEM": {
+ "templateId": "AthenaCharacter:CID_A_020_Athena_Commando_F_Mainframe_D_ZHVEM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_021_Athena_Commando_F_Mainframe_E_L34E4": {
+ "templateId": "AthenaCharacter:CID_A_021_Athena_Commando_F_Mainframe_E_L34E4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_022_Athena_Commando_F_Crush": {
+ "templateId": "AthenaCharacter:CID_A_022_Athena_Commando_F_Crush",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_023_Athena_Commando_M_Skirmish_W1N7H": {
+ "templateId": "AthenaCharacter:CID_A_023_Athena_Commando_M_Skirmish_W1N7H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_024_Athena_Commando_F_Skirmish_QW2BQ": {
+ "templateId": "AthenaCharacter:CID_A_024_Athena_Commando_F_Skirmish_QW2BQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_025_Athena_Commando_M_Kepler_UEN6V": {
+ "templateId": "AthenaCharacter:CID_A_025_Athena_Commando_M_Kepler_UEN6V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_026_Athena_Commando_F_Kepler_2G59M": {
+ "templateId": "AthenaCharacter:CID_A_026_Athena_Commando_F_Kepler_2G59M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_027_Athena_Commando_F_CasualBomberLight": {
+ "templateId": "AthenaCharacter:CID_A_027_Athena_Commando_F_CasualBomberLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_028_Athena_Commando_F_AncientGladiator": {
+ "templateId": "AthenaCharacter:CID_A_028_Athena_Commando_F_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_029_Athena_Commando_M_LlamaHeroWinter_C83TZ": {
+ "templateId": "AthenaCharacter:CID_A_029_Athena_Commando_M_LlamaHeroWinter_C83TZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_031_Athena_Commando_M_Builder": {
+ "templateId": "AthenaCharacter:CID_A_031_Athena_Commando_M_Builder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_032_Athena_Commando_M_SpaceWarrior": {
+ "templateId": "AthenaCharacter:CID_A_032_Athena_Commando_M_SpaceWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_033_Athena_Commando_M_SmallFry_Z73EK": {
+ "templateId": "AthenaCharacter:CID_A_033_Athena_Commando_M_SmallFry_Z73EK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_034_Athena_Commando_F_CatBurglar": {
+ "templateId": "AthenaCharacter:CID_A_034_Athena_Commando_F_CatBurglar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_035_Athena_Commando_M_LionSoldier": {
+ "templateId": "AthenaCharacter:CID_A_035_Athena_Commando_M_LionSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_036_Athena_Commando_F_Obsidian": {
+ "templateId": "AthenaCharacter:CID_A_036_Athena_Commando_F_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_037_Athena_Commando_F_DinoHunter": {
+ "templateId": "AthenaCharacter:CID_A_037_Athena_Commando_F_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_038_Athena_Commando_F_TowerSentinel": {
+ "templateId": "AthenaCharacter:CID_A_038_Athena_Commando_F_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_039_Athena_Commando_M_ChickenWarrior": {
+ "templateId": "AthenaCharacter:CID_A_039_Athena_Commando_M_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_040_Athena_Commando_F_Temple": {
+ "templateId": "AthenaCharacter:CID_A_040_Athena_Commando_F_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_041_Athena_Commando_M_CubeNinja": {
+ "templateId": "AthenaCharacter:CID_A_041_Athena_Commando_M_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_042_Athena_Commando_F_Scholar": {
+ "templateId": "AthenaCharacter:CID_A_042_Athena_Commando_F_Scholar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_043_Athena_Commando_M_DarkMinion": {
+ "templateId": "AthenaCharacter:CID_A_043_Athena_Commando_M_DarkMinion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_044_Athena_Commando_F_NeonCatFashion_64JW3": {
+ "templateId": "AthenaCharacter:CID_A_044_Athena_Commando_F_NeonCatFashion_64JW3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_045_Athena_Commando_M_BananaLeader": {
+ "templateId": "AthenaCharacter:CID_A_045_Athena_Commando_M_BananaLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_046_Athena_Commando_F_AssembleR": {
+ "templateId": "AthenaCharacter:CID_A_046_Athena_Commando_F_AssembleR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_047_Athena_Commando_F_Windwalker": {
+ "templateId": "AthenaCharacter:CID_A_047_Athena_Commando_F_Windwalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_048_Athena_Commando_F_SailorSquadLeader": {
+ "templateId": "AthenaCharacter:CID_A_048_Athena_Commando_F_SailorSquadLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_049_Athena_Commando_F_SailorSquadRebel": {
+ "templateId": "AthenaCharacter:CID_A_049_Athena_Commando_F_SailorSquadRebel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_050_Athena_Commando_F_SailorSquadRose": {
+ "templateId": "AthenaCharacter:CID_A_050_Athena_Commando_F_SailorSquadRose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_051_Athena_Commando_M_HipHare": {
+ "templateId": "AthenaCharacter:CID_A_051_Athena_Commando_M_HipHare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_052_Athena_Commando_F_BunnyFashion": {
+ "templateId": "AthenaCharacter:CID_A_052_Athena_Commando_F_BunnyFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_053_Athena_Commando_F_BunnyFashion_B": {
+ "templateId": "AthenaCharacter:CID_A_053_Athena_Commando_F_BunnyFashion_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_054_Athena_Commando_F_BunnyFashion_C": {
+ "templateId": "AthenaCharacter:CID_A_054_Athena_Commando_F_BunnyFashion_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_055_Athena_Commando_F_BunnyFashion_D": {
+ "templateId": "AthenaCharacter:CID_A_055_Athena_Commando_F_BunnyFashion_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_056_Athena_Commando_F_BunnyFashion_E": {
+ "templateId": "AthenaCharacter:CID_A_056_Athena_Commando_F_BunnyFashion_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_057_Athena_Commando_F_TheGoldenSkeleton": {
+ "templateId": "AthenaCharacter:CID_A_057_Athena_Commando_F_TheGoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_058_Athena_Commando_F_WickedDuck": {
+ "templateId": "AthenaCharacter:CID_A_058_Athena_Commando_F_WickedDuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_059_Athena_Commando_M_WickedDuck": {
+ "templateId": "AthenaCharacter:CID_A_059_Athena_Commando_M_WickedDuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_060_Athena_Commando_M_Daytrader_8MRO2": {
+ "templateId": "AthenaCharacter:CID_A_060_Athena_Commando_M_Daytrader_8MRO2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_061_Athena_Commando_M_PaddedArmorOrder": {
+ "templateId": "AthenaCharacter:CID_A_061_Athena_Commando_M_PaddedArmorOrder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_062_Athena_Commando_F_Alchemy_XD6GP": {
+ "templateId": "AthenaCharacter:CID_A_062_Athena_Commando_F_Alchemy_XD6GP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_063_Athena_Commando_F_CottonCandy": {
+ "templateId": "AthenaCharacter:CID_A_063_Athena_Commando_F_CottonCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_064_Athena_Commando_F_SurvivalSpecialistAutumn": {
+ "templateId": "AthenaCharacter:CID_A_064_Athena_Commando_F_SurvivalSpecialistAutumn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_068_Athena_Commando_M_TerrainMan": {
+ "templateId": "AthenaCharacter:CID_A_068_Athena_Commando_M_TerrainMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_069_Athena_Commando_M_Accumulate": {
+ "templateId": "AthenaCharacter:CID_A_069_Athena_Commando_M_Accumulate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_070_Athena_Commando_M_Cavern_3I6I1": {
+ "templateId": "AthenaCharacter:CID_A_070_Athena_Commando_M_Cavern_3I6I1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_071_Athena_Commando_M_Cranium": {
+ "templateId": "AthenaCharacter:CID_A_071_Athena_Commando_M_Cranium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_072_Athena_Commando_M_BuffCatComic_XG5XC": {
+ "templateId": "AthenaCharacter:CID_A_072_Athena_Commando_M_BuffCatComic_XG5XC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_073_Athena_Commando_F_TacoKnight": {
+ "templateId": "AthenaCharacter:CID_A_073_Athena_Commando_F_TacoKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_074_Athena_Commando_M_TomatoKnight": {
+ "templateId": "AthenaCharacter:CID_A_074_Athena_Commando_M_TomatoKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_075_Athena_Commando_M_DurrburgerKnight": {
+ "templateId": "AthenaCharacter:CID_A_075_Athena_Commando_M_DurrburgerKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_076_Athena_Commando_F_DinoCollector": {
+ "templateId": "AthenaCharacter:CID_A_076_Athena_Commando_F_DinoCollector",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_077_Athena_Commando_F_ArmoredEngineer": {
+ "templateId": "AthenaCharacter:CID_A_077_Athena_Commando_F_ArmoredEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_078_Athena_Commando_M_Bicycle": {
+ "templateId": "AthenaCharacter:CID_A_078_Athena_Commando_M_Bicycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_079_Athena_Commando_M_RaptorKnight": {
+ "templateId": "AthenaCharacter:CID_A_079_Athena_Commando_M_RaptorKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_080_Athena_Commando_M_Hardwood_I15AL": {
+ "templateId": "AthenaCharacter:CID_A_080_Athena_Commando_M_Hardwood_I15AL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "031",
+ "020",
+ "021",
+ "022",
+ "023",
+ "030",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29": {
+ "templateId": "AthenaCharacter:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "031",
+ "020",
+ "021",
+ "022",
+ "023",
+ "030",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC": {
+ "templateId": "AthenaCharacter:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "031",
+ "020",
+ "021",
+ "022",
+ "023",
+ "030",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN": {
+ "templateId": "AthenaCharacter:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "031",
+ "020",
+ "021",
+ "022",
+ "023",
+ "030",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS": {
+ "templateId": "AthenaCharacter:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "031",
+ "020",
+ "021",
+ "022",
+ "023",
+ "030",
+ "024",
+ "025",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1": {
+ "templateId": "AthenaCharacter:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "030",
+ "020",
+ "021",
+ "022",
+ "023",
+ "031",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA": {
+ "templateId": "AthenaCharacter:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "030",
+ "020",
+ "021",
+ "022",
+ "023",
+ "031",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16": {
+ "templateId": "AthenaCharacter:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "030",
+ "020",
+ "021",
+ "022",
+ "023",
+ "031",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2": {
+ "templateId": "AthenaCharacter:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "030",
+ "020",
+ "021",
+ "022",
+ "023",
+ "031",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH": {
+ "templateId": "AthenaCharacter:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "027",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "028",
+ "017",
+ "018",
+ "029",
+ "019",
+ "030",
+ "020",
+ "021",
+ "022",
+ "023",
+ "031",
+ "024",
+ "025",
+ "026",
+ "032",
+ "033"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_090_Athena_Commando_M_Caveman": {
+ "templateId": "AthenaCharacter:CID_A_090_Athena_Commando_M_Caveman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_091_Athena_Commando_F_DarkElf": {
+ "templateId": "AthenaCharacter:CID_A_091_Athena_Commando_F_DarkElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_092_Athena_Commando_M_Broccoli_PR297": {
+ "templateId": "AthenaCharacter:CID_A_092_Athena_Commando_M_Broccoli_PR297",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_093_Athena_Commando_F_StoneViper": {
+ "templateId": "AthenaCharacter:CID_A_093_Athena_Commando_F_StoneViper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_094_Athena_Commando_F_Cavern_33LMC": {
+ "templateId": "AthenaCharacter:CID_A_094_Athena_Commando_F_Cavern_33LMC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_095_Athena_Commando_M_DoubleAgentGrey": {
+ "templateId": "AthenaCharacter:CID_A_095_Athena_Commando_M_DoubleAgentGrey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_096_Athena_Commando_F_TaxiUpgradedMulticolor": {
+ "templateId": "AthenaCharacter:CID_A_096_Athena_Commando_F_TaxiUpgradedMulticolor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_097_Athena_Commando_F_WastelandWarrior": {
+ "templateId": "AthenaCharacter:CID_A_097_Athena_Commando_F_WastelandWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_098_Athena_Commando_F_SpartanFuture": {
+ "templateId": "AthenaCharacter:CID_A_098_Athena_Commando_F_SpartanFuture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_099_Athena_Commando_F_Shrapnel": {
+ "templateId": "AthenaCharacter:CID_A_099_Athena_Commando_F_Shrapnel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_100_Athena_Commando_M_Downpour_KC39P": {
+ "templateId": "AthenaCharacter:CID_A_100_Athena_Commando_M_Downpour_KC39P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_101_Athena_Commando_M_TacticalWoodlandBlue": {
+ "templateId": "AthenaCharacter:CID_A_101_Athena_Commando_M_TacticalWoodlandBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_102_Athena_Commando_M_AssembleL": {
+ "templateId": "AthenaCharacter:CID_A_102_Athena_Commando_M_AssembleL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_103_Athena_Commando_M_Grim_VM52M": {
+ "templateId": "AthenaCharacter:CID_A_103_Athena_Commando_M_Grim_VM52M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_104_Athena_Commando_M_TowerSentinel": {
+ "templateId": "AthenaCharacter:CID_A_104_Athena_Commando_M_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_105_Athena_Commando_F_SpaceCuddles_5TEVA": {
+ "templateId": "AthenaCharacter:CID_A_105_Athena_Commando_F_SpaceCuddles_5TEVA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_106_Athena_Commando_F_FuturePinkGoal": {
+ "templateId": "AthenaCharacter:CID_A_106_Athena_Commando_F_FuturePinkGoal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_107_Athena_Commando_M_Lasso_JHZA3": {
+ "templateId": "AthenaCharacter:CID_A_107_Athena_Commando_M_Lasso_JHZA3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_108_Athena_Commando_M_LassoPolo_8GAM0": {
+ "templateId": "AthenaCharacter:CID_A_108_Athena_Commando_M_LassoPolo_8GAM0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_109_Athena_Commando_M_Emperor": {
+ "templateId": "AthenaCharacter:CID_A_109_Athena_Commando_M_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_110_Athena_Commando_M_AlienTrooper": {
+ "templateId": "AthenaCharacter:CID_A_110_Athena_Commando_M_AlienTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "003",
+ "owned": [
+ "003",
+ "005",
+ "002",
+ "004",
+ "006",
+ "000",
+ "001"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage4",
+ "owned": [
+ "Stage4",
+ "Stage2",
+ "Stage7",
+ "Stage1",
+ "Stage3",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat4",
+ "Mat1",
+ "Mat5",
+ "Mat6",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Mat6",
+ "owned": [
+ "Mat6",
+ "Mat5",
+ "Mat2",
+ "Mat0",
+ "Mat4",
+ "Mat1",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Hair",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006"
+ ]
+ },
+ {
+ "channel": "Numeric",
+ "active": "000",
+ "owned": [
+ "000",
+ "005",
+ "001",
+ "002",
+ "003",
+ "004",
+ "006"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "003",
+ "002",
+ "005",
+ "004",
+ "006",
+ "001"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "003",
+ "006",
+ "002",
+ "004",
+ "005",
+ "001"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_111_Athena_Commando_M_Faux": {
+ "templateId": "AthenaCharacter:CID_A_111_Athena_Commando_M_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_112_Athena_Commando_M_Ruckus": {
+ "templateId": "AthenaCharacter:CID_A_112_Athena_Commando_M_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_113_Athena_Commando_F_Innovator": {
+ "templateId": "AthenaCharacter:CID_A_113_Athena_Commando_F_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage3",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_114_Athena_Commando_F_Believer": {
+ "templateId": "AthenaCharacter:CID_A_114_Athena_Commando_F_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_115_Athena_Commando_M_Antique": {
+ "templateId": "AthenaCharacter:CID_A_115_Athena_Commando_M_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_116_Athena_Commando_M_Invader": {
+ "templateId": "AthenaCharacter:CID_A_116_Athena_Commando_M_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_117_Athena_Commando_F_Rockstar": {
+ "templateId": "AthenaCharacter:CID_A_117_Athena_Commando_F_Rockstar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_118_Athena_Commando_M_JonesyCattle": {
+ "templateId": "AthenaCharacter:CID_A_118_Athena_Commando_M_JonesyCattle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_119_Athena_Commando_M_Golf": {
+ "templateId": "AthenaCharacter:CID_A_119_Athena_Commando_M_Golf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_120_Athena_Commando_M_Golf_B": {
+ "templateId": "AthenaCharacter:CID_A_120_Athena_Commando_M_Golf_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_121_Athena_Commando_M_Golf_C": {
+ "templateId": "AthenaCharacter:CID_A_121_Athena_Commando_M_Golf_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_122_Athena_Commando_M_Golf_D": {
+ "templateId": "AthenaCharacter:CID_A_122_Athena_Commando_M_Golf_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_123_Athena_Commando_M_Golf_E": {
+ "templateId": "AthenaCharacter:CID_A_123_Athena_Commando_M_Golf_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_124_Athena_Commando_M_CavernArmored": {
+ "templateId": "AthenaCharacter:CID_A_124_Athena_Commando_M_CavernArmored",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_125_Athena_Commando_M_Firecracker": {
+ "templateId": "AthenaCharacter:CID_A_125_Athena_Commando_M_Firecracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_126_Athena_Commando_M_Linguini_PX0QU": {
+ "templateId": "AthenaCharacter:CID_A_126_Athena_Commando_M_Linguini_PX0QU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_127_Athena_Commando_F_MechanicalEngineerSummer": {
+ "templateId": "AthenaCharacter:CID_A_127_Athena_Commando_F_MechanicalEngineerSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_128_Athena_Commando_M_Menace": {
+ "templateId": "AthenaCharacter:CID_A_128_Athena_Commando_M_Menace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_129_Athena_Commando_M_CatBurglarSummer": {
+ "templateId": "AthenaCharacter:CID_A_129_Athena_Commando_M_CatBurglarSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_130_Athena_Commando_M_HenchmanSummer": {
+ "templateId": "AthenaCharacter:CID_A_130_Athena_Commando_M_HenchmanSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_131_Athena_Commando_F_JurassicArchaeologySummer": {
+ "templateId": "AthenaCharacter:CID_A_131_Athena_Commando_F_JurassicArchaeologySummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_132_Athena_Commando_M_ScavengerFire": {
+ "templateId": "AthenaCharacter:CID_A_132_Athena_Commando_M_ScavengerFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_133_Athena_Commando_M_DarkVikingFire": {
+ "templateId": "AthenaCharacter:CID_A_133_Athena_Commando_M_DarkVikingFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_134_Athena_Commando_F_BandageNinjaFire": {
+ "templateId": "AthenaCharacter:CID_A_134_Athena_Commando_F_BandageNinjaFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_135_Athena_Commando_F_StreetFashionSummer": {
+ "templateId": "AthenaCharacter:CID_A_135_Athena_Commando_F_StreetFashionSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_136_Athena_Commando_M_Majesty_YR1GJ": {
+ "templateId": "AthenaCharacter:CID_A_136_Athena_Commando_M_Majesty_YR1GJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_137_Athena_Commando_M_MajestyBlue_3RVJS": {
+ "templateId": "AthenaCharacter:CID_A_137_Athena_Commando_M_MajestyBlue_3RVJS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_138_Athena_Commando_F_Foray_YQPB0": {
+ "templateId": "AthenaCharacter:CID_A_138_Athena_Commando_F_Foray_YQPB0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_139_Athena_Commando_M_Foray_SD8AA": {
+ "templateId": "AthenaCharacter:CID_A_139_Athena_Commando_M_Foray_SD8AA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_140_Athena_Commando_M_BlueCheese": {
+ "templateId": "AthenaCharacter:CID_A_140_Athena_Commando_M_BlueCheese",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_141_Athena_Commando_M_Dojo": {
+ "templateId": "AthenaCharacter:CID_A_141_Athena_Commando_M_Dojo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_142_Athena_Commando_M_Pliant": {
+ "templateId": "AthenaCharacter:CID_A_142_Athena_Commando_M_Pliant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_143_Athena_Commando_M_Pliant_B": {
+ "templateId": "AthenaCharacter:CID_A_143_Athena_Commando_M_Pliant_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_144_Athena_Commando_M_Pliant_C": {
+ "templateId": "AthenaCharacter:CID_A_144_Athena_Commando_M_Pliant_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_145_Athena_Commando_M_Pliant_D": {
+ "templateId": "AthenaCharacter:CID_A_145_Athena_Commando_M_Pliant_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_146_Athena_Commando_M_Pliant_E": {
+ "templateId": "AthenaCharacter:CID_A_146_Athena_Commando_M_Pliant_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_147_Athena_Commando_F_Pliant": {
+ "templateId": "AthenaCharacter:CID_A_147_Athena_Commando_F_Pliant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_148_Athena_Commando_F_Pliant_B": {
+ "templateId": "AthenaCharacter:CID_A_148_Athena_Commando_F_Pliant_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_149_Athena_Commando_F_Pliant_C": {
+ "templateId": "AthenaCharacter:CID_A_149_Athena_Commando_F_Pliant_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_150_Athena_Commando_F_Pliant_D": {
+ "templateId": "AthenaCharacter:CID_A_150_Athena_Commando_F_Pliant_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_151_Athena_Commando_F_Pliant_E": {
+ "templateId": "AthenaCharacter:CID_A_151_Athena_Commando_F_Pliant_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_152_Athena_Commando_F_Musician": {
+ "templateId": "AthenaCharacter:CID_A_152_Athena_Commando_F_Musician",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_153_Athena_Commando_F_BuffCatFan_TS2DR": {
+ "templateId": "AthenaCharacter:CID_A_153_Athena_Commando_F_BuffCatFan_TS2DR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_154_Athena_Commando_F_TreasureHunterFashionMint": {
+ "templateId": "AthenaCharacter:CID_A_154_Athena_Commando_F_TreasureHunterFashionMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_155_Athena_Commando_F_BrightBomberMint": {
+ "templateId": "AthenaCharacter:CID_A_155_Athena_Commando_F_BrightBomberMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_156_Athena_Commando_M_GoldenSkeletonMint": {
+ "templateId": "AthenaCharacter:CID_A_156_Athena_Commando_M_GoldenSkeletonMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_157_Athena_Commando_F_Stereo_3A08Z": {
+ "templateId": "AthenaCharacter:CID_A_157_Athena_Commando_F_Stereo_3A08Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_158_Athena_Commando_F_Buffet_YC20H": {
+ "templateId": "AthenaCharacter:CID_A_158_Athena_Commando_F_Buffet_YC20H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_159_Athena_Commando_M_Cashier_7K3F0": {
+ "templateId": "AthenaCharacter:CID_A_159_Athena_Commando_M_Cashier_7K3F0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_160_Athena_Commando_M_SeesawSlipper": {
+ "templateId": "AthenaCharacter:CID_A_160_Athena_Commando_M_SeesawSlipper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_161_Athena_Commando_M_Quarrel_SLXQG": {
+ "templateId": "AthenaCharacter:CID_A_161_Athena_Commando_M_Quarrel_SLXQG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_162_Athena_Commando_F_Quarrel_E5D63": {
+ "templateId": "AthenaCharacter:CID_A_162_Athena_Commando_F_Quarrel_E5D63",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_163_Athena_Commando_M_Stands": {
+ "templateId": "AthenaCharacter:CID_A_163_Athena_Commando_M_Stands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_164_Athena_Commando_M_Stands_B": {
+ "templateId": "AthenaCharacter:CID_A_164_Athena_Commando_M_Stands_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_165_Athena_Commando_M_Stands_C": {
+ "templateId": "AthenaCharacter:CID_A_165_Athena_Commando_M_Stands_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_166_Athena_Commando_M_Stands_D": {
+ "templateId": "AthenaCharacter:CID_A_166_Athena_Commando_M_Stands_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_167_Athena_Commando_M_Stands_E": {
+ "templateId": "AthenaCharacter:CID_A_167_Athena_Commando_M_Stands_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_168_Athena_Commando_F_Stands": {
+ "templateId": "AthenaCharacter:CID_A_168_Athena_Commando_F_Stands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_169_Athena_Commando_F_Stands_B": {
+ "templateId": "AthenaCharacter:CID_A_169_Athena_Commando_F_Stands_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_170_Athena_Commando_F_Stands_C": {
+ "templateId": "AthenaCharacter:CID_A_170_Athena_Commando_F_Stands_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_171_Athena_Commando_F_Stands_D": {
+ "templateId": "AthenaCharacter:CID_A_171_Athena_Commando_F_Stands_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_172_Athena_Commando_F_Stands_E": {
+ "templateId": "AthenaCharacter:CID_A_172_Athena_Commando_F_Stands_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G": {
+ "templateId": "AthenaCharacter:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_174_Athena_Commando_F_CelestialGlow": {
+ "templateId": "AthenaCharacter:CID_A_174_Athena_Commando_F_CelestialGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_175_Athena_Commando_M_AlienSummer": {
+ "templateId": "AthenaCharacter:CID_A_175_Athena_Commando_M_AlienSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "011",
+ "owned": [
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "017",
+ "016"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_176_Athena_Commando_F_TieDyeFashion": {
+ "templateId": "AthenaCharacter:CID_A_176_Athena_Commando_F_TieDyeFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat6",
+ "owned": [
+ "Mat6",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_177_Athena_Commando_F_TieDyeFashion_B": {
+ "templateId": "AthenaCharacter:CID_A_177_Athena_Commando_F_TieDyeFashion_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_178_Athena_Commando_F_TieDyeFashion_C": {
+ "templateId": "AthenaCharacter:CID_A_178_Athena_Commando_F_TieDyeFashion_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_179_Athena_Commando_F_TieDyeFashion_D": {
+ "templateId": "AthenaCharacter:CID_A_179_Athena_Commando_F_TieDyeFashion_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat4",
+ "owned": [
+ "Mat4",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_180_Athena_Commando_F_TieDyeFashion_E": {
+ "templateId": "AthenaCharacter:CID_A_180_Athena_Commando_F_TieDyeFashion_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_181_Athena_Commando_M_RuckusMini_A6VG6": {
+ "templateId": "AthenaCharacter:CID_A_181_Athena_Commando_M_RuckusMini_A6VG6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_182_Athena_Commando_M_Vivid_LZGQ3": {
+ "templateId": "AthenaCharacter:CID_A_182_Athena_Commando_M_Vivid_LZGQ3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_183_Athena_Commando_M_AntiquePal_S7A9W": {
+ "templateId": "AthenaCharacter:CID_A_183_Athena_Commando_M_AntiquePal_S7A9W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_184_Athena_Commando_M_NinjaWolf_F09O3": {
+ "templateId": "AthenaCharacter:CID_A_184_Athena_Commando_M_NinjaWolf_F09O3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_185_Athena_Commando_M_Polygon": {
+ "templateId": "AthenaCharacter:CID_A_185_Athena_Commando_M_Polygon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_186_Athena_Commando_M_Lars": {
+ "templateId": "AthenaCharacter:CID_A_186_Athena_Commando_M_Lars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_187_Athena_Commando_F_Monarch": {
+ "templateId": "AthenaCharacter:CID_A_187_Athena_Commando_F_Monarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_188_Athena_Commando_M_ColorBlock": {
+ "templateId": "AthenaCharacter:CID_A_188_Athena_Commando_M_ColorBlock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_189_Athena_Commando_M_Lavish_HUU31": {
+ "templateId": "AthenaCharacter:CID_A_189_Athena_Commando_M_Lavish_HUU31",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_190_Athena_Commando_M_AlienAgent": {
+ "templateId": "AthenaCharacter:CID_A_190_Athena_Commando_M_AlienAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_191_Athena_Commando_M_AlienFlora": {
+ "templateId": "AthenaCharacter:CID_A_191_Athena_Commando_M_AlienFlora",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_192_Athena_Commando_F_Suspenders": {
+ "templateId": "AthenaCharacter:CID_A_192_Athena_Commando_F_Suspenders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_193_Athena_Commando_M_Dragonfruit_7N3A3": {
+ "templateId": "AthenaCharacter:CID_A_193_Athena_Commando_M_Dragonfruit_7N3A3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_194_Athena_Commando_F_AngelDark": {
+ "templateId": "AthenaCharacter:CID_A_194_Athena_Commando_F_AngelDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_195_Athena_Commando_M_Crisis": {
+ "templateId": "AthenaCharacter:CID_A_195_Athena_Commando_M_Crisis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_196_Athena_Commando_F_FNCSGreen": {
+ "templateId": "AthenaCharacter:CID_A_196_Athena_Commando_F_FNCSGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_197_Athena_Commando_M_Clash": {
+ "templateId": "AthenaCharacter:CID_A_197_Athena_Commando_M_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_198_Athena_Commando_M_CerealBox": {
+ "templateId": "AthenaCharacter:CID_A_198_Athena_Commando_M_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_199_Athena_Commando_M_SpaceChimp": {
+ "templateId": "AthenaCharacter:CID_A_199_Athena_Commando_M_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_200_Athena_Commando_F_GhostHunter": {
+ "templateId": "AthenaCharacter:CID_A_200_Athena_Commando_F_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_201_Athena_Commando_M_TeriyakiFishToon": {
+ "templateId": "AthenaCharacter:CID_A_201_Athena_Commando_M_TeriyakiFishToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "039",
+ "041",
+ "042",
+ "044",
+ "031",
+ "046",
+ "047",
+ "022",
+ "034",
+ "035",
+ "032",
+ "023",
+ "027",
+ "024",
+ "036",
+ "025",
+ "026",
+ "033",
+ "040",
+ "037",
+ "029"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "PetTemperament",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "Hair",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "Numeric",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ },
+ {
+ "channel": "ProfileBanner",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "000"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_202_Athena_Commando_F_Division": {
+ "templateId": "AthenaCharacter:CID_A_202_Athena_Commando_F_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_203_Athena_Commando_F_PunkKoi": {
+ "templateId": "AthenaCharacter:CID_A_203_Athena_Commando_F_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_204_Athena_Commando_M_ClashV_SQNVJ": {
+ "templateId": "AthenaCharacter:CID_A_204_Athena_Commando_M_ClashV_SQNVJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_205_Athena_Commando_F_TextileRam_GMRJ0": {
+ "templateId": "AthenaCharacter:CID_A_205_Athena_Commando_F_TextileRam_GMRJ0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_206_Athena_Commando_F_TextileSparkle_V8YSA": {
+ "templateId": "AthenaCharacter:CID_A_206_Athena_Commando_F_TextileSparkle_V8YSA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive2",
+ "owned": [
+ "Emissive2",
+ "Emissive0"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_207_Athena_Commando_M_TextileKnight_9TE8L": {
+ "templateId": "AthenaCharacter:CID_A_207_Athena_Commando_M_TextileKnight_9TE8L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_208_Athena_Commando_M_TextilePup_C85OD": {
+ "templateId": "AthenaCharacter:CID_A_208_Athena_Commando_M_TextilePup_C85OD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_209_Athena_Commando_F_Werewolf": {
+ "templateId": "AthenaCharacter:CID_A_209_Athena_Commando_F_Werewolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_210_Athena_Commando_F_RenegadeSkull": {
+ "templateId": "AthenaCharacter:CID_A_210_Athena_Commando_F_RenegadeSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_211_Athena_Commando_M_Psyche_JWQP3": {
+ "templateId": "AthenaCharacter:CID_A_211_Athena_Commando_M_Psyche_JWQP3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_212_Athena_Commando_M_Tomcat_M1Z6G": {
+ "templateId": "AthenaCharacter:CID_A_212_Athena_Commando_M_Tomcat_M1Z6G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_213_Athena_Commando_M_CritterCuddle": {
+ "templateId": "AthenaCharacter:CID_A_213_Athena_Commando_M_CritterCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_214_Athena_Commando_M_CritterFrenzy_YDM1L": {
+ "templateId": "AthenaCharacter:CID_A_214_Athena_Commando_M_CritterFrenzy_YDM1L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_215_Athena_Commando_F_SunriseCastle_48TIZ": {
+ "templateId": "AthenaCharacter:CID_A_215_Athena_Commando_F_SunriseCastle_48TIZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_216_Athena_Commando_M_SunrisePalace_BBQY0": {
+ "templateId": "AthenaCharacter:CID_A_216_Athena_Commando_M_SunrisePalace_BBQY0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_217_Athena_Commando_M_CritterRaven": {
+ "templateId": "AthenaCharacter:CID_A_217_Athena_Commando_M_CritterRaven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_218_Athena_Commando_M_CritterManiac_KV6J0": {
+ "templateId": "AthenaCharacter:CID_A_218_Athena_Commando_M_CritterManiac_KV6J0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_219_Athena_Commando_M_Giggle_C2UK0": {
+ "templateId": "AthenaCharacter:CID_A_219_Athena_Commando_M_Giggle_C2UK0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_220_Athena_Commando_F_PinkEmo": {
+ "templateId": "AthenaCharacter:CID_A_220_Athena_Commando_F_PinkEmo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_221_Athena_Commando_M_Relish_8364H": {
+ "templateId": "AthenaCharacter:CID_A_221_Athena_Commando_M_Relish_8364H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_222_Athena_Commando_F_Relish_G6S5T": {
+ "templateId": "AthenaCharacter:CID_A_222_Athena_Commando_F_Relish_G6S5T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ": {
+ "templateId": "AthenaCharacter:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_224_Athena_Commando_F_ScholarGhoul": {
+ "templateId": "AthenaCharacter:CID_A_224_Athena_Commando_F_ScholarGhoul",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_225_Athena_Commando_F_CubeQueen": {
+ "templateId": "AthenaCharacter:CID_A_225_Athena_Commando_F_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_226_Athena_Commando_M_SweetTeriyakiRed": {
+ "templateId": "AthenaCharacter:CID_A_226_Athena_Commando_M_SweetTeriyakiRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_227_Athena_Commando_F_BistroAstronaut_JJLK5": {
+ "templateId": "AthenaCharacter:CID_A_227_Athena_Commando_F_BistroAstronaut_JJLK5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_228_Athena_Commando_M_DisguiseBlack": {
+ "templateId": "AthenaCharacter:CID_A_228_Athena_Commando_M_DisguiseBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage8"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_229_Athena_Commando_F_DisguiseBlack": {
+ "templateId": "AthenaCharacter:CID_A_229_Athena_Commando_F_DisguiseBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage5",
+ "owned": [
+ "Stage5",
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage6",
+ "Stage7",
+ "Stage8"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat5",
+ "owned": [
+ "Mat5",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_230_Athena_Commando_M_DriftHorror": {
+ "templateId": "AthenaCharacter:CID_A_230_Athena_Commando_M_DriftHorror",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_231_Athena_Commando_F_Ashes_TKGK9": {
+ "templateId": "AthenaCharacter:CID_A_231_Athena_Commando_F_Ashes_TKGK9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_232_Athena_Commando_F_CritterStreak_YILHR": {
+ "templateId": "AthenaCharacter:CID_A_232_Athena_Commando_F_CritterStreak_YILHR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_233_Athena_Commando_M_Grasshopper_5GTT3": {
+ "templateId": "AthenaCharacter:CID_A_233_Athena_Commando_M_Grasshopper_5GTT3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK": {
+ "templateId": "AthenaCharacter:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY": {
+ "templateId": "AthenaCharacter:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8": {
+ "templateId": "AthenaCharacter:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK": {
+ "templateId": "AthenaCharacter:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1": {
+ "templateId": "AthenaCharacter:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7": {
+ "templateId": "AthenaCharacter:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1": {
+ "templateId": "AthenaCharacter:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I": {
+ "templateId": "AthenaCharacter:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X": {
+ "templateId": "AthenaCharacter:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24": {
+ "templateId": "AthenaCharacter:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_244_Athena_Commando_M_ZombieElastic": {
+ "templateId": "AthenaCharacter:CID_A_244_Athena_Commando_M_ZombieElastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_245_Athena_Commando_M_ZombieElastic_B": {
+ "templateId": "AthenaCharacter:CID_A_245_Athena_Commando_M_ZombieElastic_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "004",
+ "owned": [
+ "004",
+ "000",
+ "001",
+ "002",
+ "003",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_246_Athena_Commando_M_ZombieElastic_C": {
+ "templateId": "AthenaCharacter:CID_A_246_Athena_Commando_M_ZombieElastic_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "003",
+ "owned": [
+ "003",
+ "000",
+ "001",
+ "002",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_247_Athena_Commando_M_ZombieElastic_D": {
+ "templateId": "AthenaCharacter:CID_A_247_Athena_Commando_M_ZombieElastic_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "005",
+ "owned": [
+ "005",
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_248_Athena_Commando_M_ZombieElastic_E": {
+ "templateId": "AthenaCharacter:CID_A_248_Athena_Commando_M_ZombieElastic_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "001",
+ "owned": [
+ "001",
+ "000",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_249_Athena_Commando_F_ZombieElastic": {
+ "templateId": "AthenaCharacter:CID_A_249_Athena_Commando_F_ZombieElastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_250_Athena_Commando_F_ZombieElastic_B": {
+ "templateId": "AthenaCharacter:CID_A_250_Athena_Commando_F_ZombieElastic_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "006",
+ "owned": [
+ "006",
+ "000",
+ "001",
+ "002",
+ "003",
+ "004",
+ "005"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_251_Athena_Commando_F_ZombieElastic_C": {
+ "templateId": "AthenaCharacter:CID_A_251_Athena_Commando_F_ZombieElastic_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "002",
+ "owned": [
+ "002",
+ "000",
+ "001",
+ "003",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_252_Athena_Commando_F_ZombieElastic_D": {
+ "templateId": "AthenaCharacter:CID_A_252_Athena_Commando_F_ZombieElastic_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "004",
+ "owned": [
+ "004",
+ "000",
+ "001",
+ "002",
+ "003",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_253_Athena_Commando_F_ZombieElastic_E": {
+ "templateId": "AthenaCharacter:CID_A_253_Athena_Commando_F_ZombieElastic_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Pattern",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "003",
+ "owned": [
+ "003",
+ "000",
+ "001",
+ "002",
+ "004",
+ "005",
+ "006"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_254_Athena_Commando_M_ButterJack": {
+ "templateId": "AthenaCharacter:CID_A_254_Athena_Commando_M_ButterJack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_255_Athena_Commando_F_SAM_QA7ZS": {
+ "templateId": "AthenaCharacter:CID_A_255_Athena_Commando_F_SAM_QA7ZS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_256_Athena_Commando_F_UproarBraids_8IOZW": {
+ "templateId": "AthenaCharacter:CID_A_256_Athena_Commando_F_UproarBraids_8IOZW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_257_Athena_Commando_M_CatBurglar_Ghost": {
+ "templateId": "AthenaCharacter:CID_A_257_Athena_Commando_M_CatBurglar_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_258_Athena_Commando_F_NeonCatTech": {
+ "templateId": "AthenaCharacter:CID_A_258_Athena_Commando_F_NeonCatTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_259_Athena_Commando_M_PeelyTech": {
+ "templateId": "AthenaCharacter:CID_A_259_Athena_Commando_M_PeelyTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_260_Athena_Commando_M_CrazyEightTech": {
+ "templateId": "AthenaCharacter:CID_A_260_Athena_Commando_M_CrazyEightTech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_261_Athena_Commando_M_Headband": {
+ "templateId": "AthenaCharacter:CID_A_261_Athena_Commando_M_Headband",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_262_Athena_Commando_M_HeadbandK": {
+ "templateId": "AthenaCharacter:CID_A_262_Athena_Commando_M_HeadbandK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_263_Athena_Commando_M_HeadbandS": {
+ "templateId": "AthenaCharacter:CID_A_263_Athena_Commando_M_HeadbandS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_264_Athena_Commando_F_HeadbandS": {
+ "templateId": "AthenaCharacter:CID_A_264_Athena_Commando_F_HeadbandS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_265_Athena_Commando_M_Grandeur_TBC0O": {
+ "templateId": "AthenaCharacter:CID_A_265_Athena_Commando_M_Grandeur_TBC0O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_266_Athena_Commando_F_Grandeur_9CO1M": {
+ "templateId": "AthenaCharacter:CID_A_266_Athena_Commando_F_Grandeur_9CO1M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_267_Athena_Commando_M_Nucleus_XVIVU": {
+ "templateId": "AthenaCharacter:CID_A_267_Athena_Commando_M_Nucleus_XVIVU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_268_Athena_Commando_M_AssembleK": {
+ "templateId": "AthenaCharacter:CID_A_268_Athena_Commando_M_AssembleK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_269_Athena_Commando_F_HasteStreet_B563I": {
+ "templateId": "AthenaCharacter:CID_A_269_Athena_Commando_F_HasteStreet_B563I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_270_Athena_Commando_M_HasteDouble_8GQHC": {
+ "templateId": "AthenaCharacter:CID_A_270_Athena_Commando_M_HasteDouble_8GQHC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_271_Athena_Commando_M_FNCS_Purple": {
+ "templateId": "AthenaCharacter:CID_A_271_Athena_Commando_M_FNCS_Purple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_272_Athena_Commando_F_Prime": {
+ "templateId": "AthenaCharacter:CID_A_272_Athena_Commando_F_Prime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_273_Athena_Commando_F_Prime_B": {
+ "templateId": "AthenaCharacter:CID_A_273_Athena_Commando_F_Prime_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_274_Athena_Commando_F_Prime_C": {
+ "templateId": "AthenaCharacter:CID_A_274_Athena_Commando_F_Prime_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_275_Athena_Commando_F_Prime_D": {
+ "templateId": "AthenaCharacter:CID_A_275_Athena_Commando_F_Prime_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_276_Athena_Commando_F_Prime_E": {
+ "templateId": "AthenaCharacter:CID_A_276_Athena_Commando_F_Prime_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_277_Athena_Commando_F_Prime_F": {
+ "templateId": "AthenaCharacter:CID_A_277_Athena_Commando_F_Prime_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_278_Athena_Commando_F_Prime_G": {
+ "templateId": "AthenaCharacter:CID_A_278_Athena_Commando_F_Prime_G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_279_Athena_Commando_M_Prime": {
+ "templateId": "AthenaCharacter:CID_A_279_Athena_Commando_M_Prime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_280_Athena_Commando_M_Prime_B": {
+ "templateId": "AthenaCharacter:CID_A_280_Athena_Commando_M_Prime_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_281_Athena_Commando_M_Prime_C": {
+ "templateId": "AthenaCharacter:CID_A_281_Athena_Commando_M_Prime_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_282_Athena_Commando_M_Prime_D": {
+ "templateId": "AthenaCharacter:CID_A_282_Athena_Commando_M_Prime_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_283_Athena_Commando_M_Prime_E": {
+ "templateId": "AthenaCharacter:CID_A_283_Athena_Commando_M_Prime_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_284_Athena_Commando_M_Prime_F": {
+ "templateId": "AthenaCharacter:CID_A_284_Athena_Commando_M_Prime_F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_285_Athena_Commando_M_Prime_G": {
+ "templateId": "AthenaCharacter:CID_A_285_Athena_Commando_M_Prime_G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_286_Athena_Commando_M_Turtleneck": {
+ "templateId": "AthenaCharacter:CID_A_286_Athena_Commando_M_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_287_Athena_Commando_M_LoneWolf": {
+ "templateId": "AthenaCharacter:CID_A_287_Athena_Commando_M_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage4",
+ "owned": [
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat11",
+ "owned": [
+ "Mat11",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_288_Athena_Commando_M_BuffLlama": {
+ "templateId": "AthenaCharacter:CID_A_288_Athena_Commando_M_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat3",
+ "Mat2",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_289_Athena_Commando_M_Gumball": {
+ "templateId": "AthenaCharacter:CID_A_289_Athena_Commando_M_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_290_Athena_Commando_F_Motorcyclist": {
+ "templateId": "AthenaCharacter:CID_A_290_Athena_Commando_F_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "Mat3",
+ "owned": [
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_291_Athena_Commando_F_IslandNomad": {
+ "templateId": "AthenaCharacter:CID_A_291_Athena_Commando_F_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage8",
+ "Stage9",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage18",
+ "Stage19",
+ "Stage20",
+ "Stage27",
+ "Stage28",
+ "Stage29",
+ "Stage21",
+ "Stage23",
+ "Stage22",
+ "Stage15",
+ "Stage16",
+ "Stage17",
+ "Stage24",
+ "Stage25",
+ "Stage26",
+ "Stage30",
+ "Stage31",
+ "Stage32"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_292_Athena_Commando_F_ExoSuit": {
+ "templateId": "AthenaCharacter:CID_A_292_Athena_Commando_F_ExoSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Mat3",
+ "owned": [
+ "Mat3",
+ "Mat4"
+ ]
+ },
+ {
+ "channel": "ClothingColor",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_293_Athena_Commando_M_ParallelComic": {
+ "templateId": "AthenaCharacter:CID_A_293_Athena_Commando_M_ParallelComic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_294_Athena_Commando_F_RustyBolt_DB20X": {
+ "templateId": "AthenaCharacter:CID_A_294_Athena_Commando_F_RustyBolt_DB20X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_295_Athena_Commando_M_RustyBolt_FEHJ0": {
+ "templateId": "AthenaCharacter:CID_A_295_Athena_Commando_M_RustyBolt_FEHJ0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_296_Athena_Commando_M_DarkPit": {
+ "templateId": "AthenaCharacter:CID_A_296_Athena_Commando_M_DarkPit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_297_Athena_Commando_F_Network": {
+ "templateId": "AthenaCharacter:CID_A_297_Athena_Commando_F_Network",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_298_Athena_Commando_M_Slither_EJ6DB": {
+ "templateId": "AthenaCharacter:CID_A_298_Athena_Commando_M_Slither_EJ6DB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_299_Athena_Commando_M_Slither_B_1X28D": {
+ "templateId": "AthenaCharacter:CID_A_299_Athena_Commando_M_Slither_B_1X28D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_300_Athena_Commando_M_Slither_C_IJ94B": {
+ "templateId": "AthenaCharacter:CID_A_300_Athena_Commando_M_Slither_C_IJ94B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_301_Athena_Commando_M_Slither_D_O7BM2": {
+ "templateId": "AthenaCharacter:CID_A_301_Athena_Commando_M_Slither_D_O7BM2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_302_Athena_Commando_M_Slither_E_U47BK": {
+ "templateId": "AthenaCharacter:CID_A_302_Athena_Commando_M_Slither_E_U47BK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_303_Athena_Commando_F_Slither_D0YX9": {
+ "templateId": "AthenaCharacter:CID_A_303_Athena_Commando_F_Slither_D0YX9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ": {
+ "templateId": "AthenaCharacter:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9": {
+ "templateId": "AthenaCharacter:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_306_Athena_Commando_F_Slither_D_I6D2O": {
+ "templateId": "AthenaCharacter:CID_A_306_Athena_Commando_F_Slither_D_I6D2O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8": {
+ "templateId": "AthenaCharacter:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_308_Athena_Commando_F_Sunshine": {
+ "templateId": "AthenaCharacter:CID_A_308_Athena_Commando_F_Sunshine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_309_Athena_Commando_M_OrbitTeal_9RBJL": {
+ "templateId": "AthenaCharacter:CID_A_309_Athena_Commando_M_OrbitTeal_9RBJL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_310_Athena_Commando_F_ScholarFestive": {
+ "templateId": "AthenaCharacter:CID_A_310_Athena_Commando_F_ScholarFestive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_311_Athena_Commando_F_ScholarFestiveWinter": {
+ "templateId": "AthenaCharacter:CID_A_311_Athena_Commando_F_ScholarFestiveWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_312_Athena_Commando_F_RainbowHat": {
+ "templateId": "AthenaCharacter:CID_A_312_Athena_Commando_F_RainbowHat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_313_Athena_Commando_M_BlizzardBomber": {
+ "templateId": "AthenaCharacter:CID_A_313_Athena_Commando_M_BlizzardBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P": {
+ "templateId": "AthenaCharacter:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_315_Athena_Commando_M_NightCapsule_B31L1": {
+ "templateId": "AthenaCharacter:CID_A_315_Athena_Commando_M_NightCapsule_B31L1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_316_Athena_Commando_M_Lateral_K8XD9": {
+ "templateId": "AthenaCharacter:CID_A_316_Athena_Commando_M_Lateral_K8XD9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_317_Athena_Commando_F_Lateral_HIKN9": {
+ "templateId": "AthenaCharacter:CID_A_317_Athena_Commando_F_Lateral_HIKN9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_318_Athena_Commando_M_KittyWarrior": {
+ "templateId": "AthenaCharacter:CID_A_318_Athena_Commando_M_KittyWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_319_Athena_Commando_F_Peppermint": {
+ "templateId": "AthenaCharacter:CID_A_319_Athena_Commando_F_Peppermint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_320_Athena_Commando_M_CatburglarWinter": {
+ "templateId": "AthenaCharacter:CID_A_320_Athena_Commando_M_CatburglarWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_321_Athena_Commando_F_JurassicArchaeologyWinter": {
+ "templateId": "AthenaCharacter:CID_A_321_Athena_Commando_F_JurassicArchaeologyWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_322_Athena_Commando_F_RenegadeRaiderIce": {
+ "templateId": "AthenaCharacter:CID_A_322_Athena_Commando_F_RenegadeRaiderIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_323_Athena_Commando_M_BananaWinter": {
+ "templateId": "AthenaCharacter:CID_A_323_Athena_Commando_M_BananaWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_324_Athena_Commando_F_InnovatorFestive_3FUPH": {
+ "templateId": "AthenaCharacter:CID_A_324_Athena_Commando_F_InnovatorFestive_3FUPH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_325_Athena_Commando_F_Scout": {
+ "templateId": "AthenaCharacter:CID_A_325_Athena_Commando_F_Scout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_326_Athena_Commando_M_SharpDresserBlack": {
+ "templateId": "AthenaCharacter:CID_A_326_Athena_Commando_M_SharpDresserBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_327_Athena_Commando_M_SkullPunk_9QTQI": {
+ "templateId": "AthenaCharacter:CID_A_327_Athena_Commando_M_SkullPunk_9QTQI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_328_Athena_Commando_M_Foe_S31ZA": {
+ "templateId": "AthenaCharacter:CID_A_328_Athena_Commando_M_Foe_S31ZA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_329_Athena_Commando_F_Uproar_I5N5Z": {
+ "templateId": "AthenaCharacter:CID_A_329_Athena_Commando_F_Uproar_I5N5Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_330_Athena_Commando_M_Keen_2DTXM": {
+ "templateId": "AthenaCharacter:CID_A_330_Athena_Commando_M_Keen_2DTXM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_331_Athena_Commando_F_Keen_B4LF5": {
+ "templateId": "AthenaCharacter:CID_A_331_Athena_Commando_F_Keen_B4LF5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_332_Athena_Commando_F_PrimalFalcon_3ITKM": {
+ "templateId": "AthenaCharacter:CID_A_332_Athena_Commando_F_PrimalFalcon_3ITKM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_333_Athena_Commando_M_Solstice_C1YP3": {
+ "templateId": "AthenaCharacter:CID_A_333_Athena_Commando_M_Solstice_C1YP3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_334_Athena_Commando_M_Sleek_U06KF": {
+ "templateId": "AthenaCharacter:CID_A_334_Athena_Commando_M_Sleek_U06KF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_335_Athena_Commando_M_SleekGlasses_8SYX2": {
+ "templateId": "AthenaCharacter:CID_A_335_Athena_Commando_M_SleekGlasses_8SYX2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_336_Athena_Commando_M_Zest_66JC5": {
+ "templateId": "AthenaCharacter:CID_A_336_Athena_Commando_M_Zest_66JC5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_337_Athena_Commando_F_Zest_ZBXGN": {
+ "templateId": "AthenaCharacter:CID_A_337_Athena_Commando_F_Zest_ZBXGN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_338_Athena_Commando_F_Galactic_HN9DO": {
+ "templateId": "AthenaCharacter:CID_A_338_Athena_Commando_F_Galactic_HN9DO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_339_Athena_Commando_F_LoveQueen": {
+ "templateId": "AthenaCharacter:CID_A_339_Athena_Commando_F_LoveQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_340_Athena_Commando_M_Gimmick_HK68X": {
+ "templateId": "AthenaCharacter:CID_A_340_Athena_Commando_M_Gimmick_HK68X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_341_Athena_Commando_F_Gimmick_RB41V": {
+ "templateId": "AthenaCharacter:CID_A_341_Athena_Commando_F_Gimmick_RB41V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_342_Athena_Commando_M_Rover_WKA61": {
+ "templateId": "AthenaCharacter:CID_A_342_Athena_Commando_M_Rover_WKA61",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_343_Athena_Commando_F_Rover_KR41G": {
+ "templateId": "AthenaCharacter:CID_A_343_Athena_Commando_F_Rover_KR41G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H": {
+ "templateId": "AthenaCharacter:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38": {
+ "templateId": "AthenaCharacter:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU": {
+ "templateId": "AthenaCharacter:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9": {
+ "templateId": "AthenaCharacter:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat3",
+ "owned": [
+ "Mat3",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6": {
+ "templateId": "AthenaCharacter:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W": {
+ "templateId": "AthenaCharacter:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C": {
+ "templateId": "AthenaCharacter:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45": {
+ "templateId": "AthenaCharacter:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3": {
+ "templateId": "AthenaCharacter:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat3",
+ "owned": [
+ "Mat3",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60": {
+ "templateId": "AthenaCharacter:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat1",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_354_Athena_Commando_F_ShatterFlyEclipse": {
+ "templateId": "AthenaCharacter:CID_A_354_Athena_Commando_F_ShatterFlyEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_355_Athena_Commando_M_PeelyToon": {
+ "templateId": "AthenaCharacter:CID_A_355_Athena_Commando_M_PeelyToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_356_Athena_Commando_M_WeepingWoodsToon": {
+ "templateId": "AthenaCharacter:CID_A_356_Athena_Commando_M_WeepingWoodsToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_357_Athena_Commando_F_ValentineFashion_B3S3R": {
+ "templateId": "AthenaCharacter:CID_A_357_Athena_Commando_F_ValentineFashion_B3S3R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_358_Athena_Commando_F_Lurk": {
+ "templateId": "AthenaCharacter:CID_A_358_Athena_Commando_F_Lurk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_359_Athena_Commando_F_BunnyPurple": {
+ "templateId": "AthenaCharacter:CID_A_359_Athena_Commando_F_BunnyPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_360_Athena_Commando_F_LeatherJacketPurple": {
+ "templateId": "AthenaCharacter:CID_A_360_Athena_Commando_F_LeatherJacketPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_361_Athena_Commando_F_Thrive": {
+ "templateId": "AthenaCharacter:CID_A_361_Athena_Commando_F_Thrive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_362_Athena_Commando_F_ThriveSpirit": {
+ "templateId": "AthenaCharacter:CID_A_362_Athena_Commando_F_ThriveSpirit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_363_Athena_Commando_M_Journey": {
+ "templateId": "AthenaCharacter:CID_A_363_Athena_Commando_M_Journey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_364_Athena_Commando_F_Jade": {
+ "templateId": "AthenaCharacter:CID_A_364_Athena_Commando_F_Jade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_365_Athena_Commando_F_FNCS_Blue": {
+ "templateId": "AthenaCharacter:CID_A_365_Athena_Commando_F_FNCS_Blue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_366_Athena_Commando_M_AssembleP": {
+ "templateId": "AthenaCharacter:CID_A_366_Athena_Commando_M_AssembleP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_367_Athena_Commando_M_Mystic": {
+ "templateId": "AthenaCharacter:CID_A_367_Athena_Commando_M_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_368_Athena_Commando_M_Sienna": {
+ "templateId": "AthenaCharacter:CID_A_368_Athena_Commando_M_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_369_Athena_Commando_F_CyberArmor": {
+ "templateId": "AthenaCharacter:CID_A_369_Athena_Commando_F_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage3",
+ "Stage2",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_370_Athena_Commando_M_OrderGuard": {
+ "templateId": "AthenaCharacter:CID_A_370_Athena_Commando_M_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage4",
+ "Stage3",
+ "Stage5",
+ "Stage6",
+ "Stage7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_371_Athena_Commando_F_Cadet": {
+ "templateId": "AthenaCharacter:CID_A_371_Athena_Commando_F_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_372_Athena_Commando_F_KnightCat": {
+ "templateId": "AthenaCharacter:CID_A_372_Athena_Commando_F_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_373_Athena_Commando_M_OriginPrisoner": {
+ "templateId": "AthenaCharacter:CID_A_373_Athena_Commando_M_OriginPrisoner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_374_Athena_Commando_F_Binary": {
+ "templateId": "AthenaCharacter:CID_A_374_Athena_Commando_F_Binary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_375_Athena_Commando_F_Snowfall_WXW2T": {
+ "templateId": "AthenaCharacter:CID_A_375_Athena_Commando_F_Snowfall_WXW2T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage4",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_376_Athena_Commando_F_JourneyMentor_66VFP": {
+ "templateId": "AthenaCharacter:CID_A_376_Athena_Commando_F_JourneyMentor_66VFP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_377_Athena_Commando_F_LittleEgg_OMNB5": {
+ "templateId": "AthenaCharacter:CID_A_377_Athena_Commando_F_LittleEgg_OMNB5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_378_Athena_Commando_F_Bacteria_8JYGU": {
+ "templateId": "AthenaCharacter:CID_A_378_Athena_Commando_F_Bacteria_8JYGU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_379_Athena_Commando_F_VampireHunter": {
+ "templateId": "AthenaCharacter:CID_A_379_Athena_Commando_F_VampireHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_380_Athena_Commando_M_CactusRocker_SBI3T": {
+ "templateId": "AthenaCharacter:CID_A_380_Athena_Commando_M_CactusRocker_SBI3T",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_381_Athena_Commando_F_CactusRocker_3HTBV": {
+ "templateId": "AthenaCharacter:CID_A_381_Athena_Commando_F_CactusRocker_3HTBV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_382_Athena_Commando_M_CactusDancer": {
+ "templateId": "AthenaCharacter:CID_A_382_Athena_Commando_M_CactusDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_383_Athena_Commando_F_CactusDancer": {
+ "templateId": "AthenaCharacter:CID_A_383_Athena_Commando_F_CactusDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_384_Athena_Commando_M_Rumble": {
+ "templateId": "AthenaCharacter:CID_A_384_Athena_Commando_M_Rumble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_385_Athena_Commando_F_Rumble": {
+ "templateId": "AthenaCharacter:CID_A_385_Athena_Commando_F_Rumble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_386_Athena_Commando_M_Croissant": {
+ "templateId": "AthenaCharacter:CID_A_386_Athena_Commando_M_Croissant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_387_Athena_Commando_M_Lyrical": {
+ "templateId": "AthenaCharacter:CID_A_387_Athena_Commando_M_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_388_Athena_Commando_F_Lyrical": {
+ "templateId": "AthenaCharacter:CID_A_388_Athena_Commando_F_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_390_Athena_Commando_M_Blackbird": {
+ "templateId": "AthenaCharacter:CID_A_390_Athena_Commando_M_Blackbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_391_Athena_Commando_F_Nightingale": {
+ "templateId": "AthenaCharacter:CID_A_391_Athena_Commando_F_Nightingale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_392_Athena_Commando_F_Mockingbird": {
+ "templateId": "AthenaCharacter:CID_A_392_Athena_Commando_F_Mockingbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_393_Athena_Commando_F_Forsake": {
+ "templateId": "AthenaCharacter:CID_A_393_Athena_Commando_F_Forsake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_394_Athena_Commando_M_DarkStorm": {
+ "templateId": "AthenaCharacter:CID_A_394_Athena_Commando_M_DarkStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_395_Athena_Commando_F_BinaryTwin": {
+ "templateId": "AthenaCharacter:CID_A_395_Athena_Commando_F_BinaryTwin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_396_Athena_Commando_F_Raspberry": {
+ "templateId": "AthenaCharacter:CID_A_396_Athena_Commando_F_Raspberry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_397_Athena_Commando_M_Indigo": {
+ "templateId": "AthenaCharacter:CID_A_397_Athena_Commando_M_Indigo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_398_Athena_Commando_F_NeonCatSpeed": {
+ "templateId": "AthenaCharacter:CID_A_398_Athena_Commando_F_NeonCatSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_399_Athena_Commando_F_Ultralight": {
+ "templateId": "AthenaCharacter:CID_A_399_Athena_Commando_F_Ultralight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_400_Athena_Commando_F_ShinyCreature": {
+ "templateId": "AthenaCharacter:CID_A_400_Athena_Commando_F_ShinyCreature",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_401_Athena_Commando_M_CarbideKnight": {
+ "templateId": "AthenaCharacter:CID_A_401_Athena_Commando_M_CarbideKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_402_Athena_Commando_F_RebirthFresh": {
+ "templateId": "AthenaCharacter:CID_A_402_Athena_Commando_F_RebirthFresh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_403_Athena_Commando_F_RebirthFresh_B": {
+ "templateId": "AthenaCharacter:CID_A_403_Athena_Commando_F_RebirthFresh_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_404_Athena_Commando_F_RebirthFresh_C": {
+ "templateId": "AthenaCharacter:CID_A_404_Athena_Commando_F_RebirthFresh_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_405_Athena_Commando_F_RebirthFresh_D": {
+ "templateId": "AthenaCharacter:CID_A_405_Athena_Commando_F_RebirthFresh_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_406_Athena_Commando_M_RebirthFresh": {
+ "templateId": "AthenaCharacter:CID_A_406_Athena_Commando_M_RebirthFresh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_407_Athena_Commando_M_RebirthFresh_B": {
+ "templateId": "AthenaCharacter:CID_A_407_Athena_Commando_M_RebirthFresh_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_408_Athena_Commando_M_RebirthFresh_C": {
+ "templateId": "AthenaCharacter:CID_A_408_Athena_Commando_M_RebirthFresh_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_409_Athena_Commando_M_RebirthFresh_D": {
+ "templateId": "AthenaCharacter:CID_A_409_Athena_Commando_M_RebirthFresh_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_410_Athena_Commando_M_MaskedDancer_FNCS": {
+ "templateId": "AthenaCharacter:CID_A_410_Athena_Commando_M_MaskedDancer_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_411_Athena_Commando_M_Noble": {
+ "templateId": "AthenaCharacter:CID_A_411_Athena_Commando_M_Noble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_412_Athena_Commando_M_FlappyGreen": {
+ "templateId": "AthenaCharacter:CID_A_412_Athena_Commando_M_FlappyGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_413_Athena_Commando_M_Glare": {
+ "templateId": "AthenaCharacter:CID_A_413_Athena_Commando_M_Glare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_414_Athena_Commando_M_ModNinja": {
+ "templateId": "AthenaCharacter:CID_A_414_Athena_Commando_M_ModNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_415_Athena_Commando_M_Alfredo": {
+ "templateId": "AthenaCharacter:CID_A_415_Athena_Commando_M_Alfredo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage8"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_416_Athena_Commando_M_Armadillo": {
+ "templateId": "AthenaCharacter:CID_A_416_Athena_Commando_M_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_417_Athena_Commando_F_Armadillo": {
+ "templateId": "AthenaCharacter:CID_A_417_Athena_Commando_F_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_418_Athena_Commando_M_ArmadilloRobot": {
+ "templateId": "AthenaCharacter:CID_A_418_Athena_Commando_M_ArmadilloRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_419_Athena_Commando_F_EternalVanguard": {
+ "templateId": "AthenaCharacter:CID_A_419_Athena_Commando_F_EternalVanguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_420_Athena_Commando_F_NeonGraffitiLava": {
+ "templateId": "AthenaCharacter:CID_A_420_Athena_Commando_F_NeonGraffitiLava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_421_Athena_Commando_F_BlizzardBomber": {
+ "templateId": "AthenaCharacter:CID_A_421_Athena_Commando_F_BlizzardBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_422_Athena_Commando_M_Realm": {
+ "templateId": "AthenaCharacter:CID_A_422_Athena_Commando_M_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_423_Athena_Commando_M_Canary": {
+ "templateId": "AthenaCharacter:CID_A_423_Athena_Commando_M_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_424_Athena_Commando_M_Lancelot": {
+ "templateId": "AthenaCharacter:CID_A_424_Athena_Commando_M_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_425_Athena_Commando_F_BlueJay": {
+ "templateId": "AthenaCharacter:CID_A_425_Athena_Commando_F_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_427_Athena_Commando_F_Fuchsia": {
+ "templateId": "AthenaCharacter:CID_A_427_Athena_Commando_F_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_428_Athena_Commando_F_PinkWidow": {
+ "templateId": "AthenaCharacter:CID_A_428_Athena_Commando_F_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_429_Athena_Commando_M_Collectable": {
+ "templateId": "AthenaCharacter:CID_A_429_Athena_Commando_M_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage5",
+ "Stage7",
+ "Stage3",
+ "Stage4",
+ "Stage6",
+ "Stage8",
+ "Stage9",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage13",
+ "Stage14",
+ "Stage15",
+ "Stage16",
+ "Stage17",
+ "Stage18",
+ "Stage19",
+ "Stage20",
+ "Stage21"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "005",
+ "003",
+ "004",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle5",
+ "Particle3",
+ "Particle4",
+ "Particle6",
+ "Particle7",
+ "Particle8",
+ "Particle9",
+ "Particle10",
+ "Particle11",
+ "Particle12",
+ "Particle13",
+ "Particle14",
+ "Particle15",
+ "Particle16",
+ "Particle17",
+ "Particle18",
+ "Particle19",
+ "Particle20",
+ "Particle21"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_430_Athena_Commando_M_SpectacleWeb": {
+ "templateId": "AthenaCharacter:CID_A_430_Athena_Commando_M_SpectacleWeb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_431_Athena_Commando_M_JonesyOrange": {
+ "templateId": "AthenaCharacter:CID_A_431_Athena_Commando_M_JonesyOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_432_Athena_Commando_M_Ensemble": {
+ "templateId": "AthenaCharacter:CID_A_432_Athena_Commando_M_Ensemble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_433_Athena_Commando_M_EnsembleSnake": {
+ "templateId": "AthenaCharacter:CID_A_433_Athena_Commando_M_EnsembleSnake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_434_Athena_Commando_M_EnsembleMaroon": {
+ "templateId": "AthenaCharacter:CID_A_434_Athena_Commando_M_EnsembleMaroon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_435_Athena_Commando_F_Ensemble": {
+ "templateId": "AthenaCharacter:CID_A_435_Athena_Commando_F_Ensemble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_436_Athena_Commando_M_RedSleeves": {
+ "templateId": "AthenaCharacter:CID_A_436_Athena_Commando_M_RedSleeves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_437_Athena_Commando_M_ChiselMashup": {
+ "templateId": "AthenaCharacter:CID_A_437_Athena_Commando_M_ChiselMashup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_438_Athena_Commando_F_Gloom": {
+ "templateId": "AthenaCharacter:CID_A_438_Athena_Commando_F_Gloom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_439_Athena_Commando_M_Trifle": {
+ "templateId": "AthenaCharacter:CID_A_439_Athena_Commando_M_Trifle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_440_Athena_Commando_F_Parfait": {
+ "templateId": "AthenaCharacter:CID_A_440_Athena_Commando_F_Parfait",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_441_Athena_Commando_F_PennantSeasOne": {
+ "templateId": "AthenaCharacter:CID_A_441_Athena_Commando_F_PennantSeasOne",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_442_Athena_Commando_F_PennantSeasOne_B": {
+ "templateId": "AthenaCharacter:CID_A_442_Athena_Commando_F_PennantSeasOne_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_443_Athena_Commando_F_PennantSeasOne_C": {
+ "templateId": "AthenaCharacter:CID_A_443_Athena_Commando_F_PennantSeasOne_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_444_Athena_Commando_F_PennantSeasOne_D": {
+ "templateId": "AthenaCharacter:CID_A_444_Athena_Commando_F_PennantSeasOne_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_445_Athena_Commando_F_PennantSeasOne_E": {
+ "templateId": "AthenaCharacter:CID_A_445_Athena_Commando_F_PennantSeasOne_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_446_Athena_Commando_M_PennantSeasOne": {
+ "templateId": "AthenaCharacter:CID_A_446_Athena_Commando_M_PennantSeasOne",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_447_Athena_Commando_M_PennantSeasOne_B": {
+ "templateId": "AthenaCharacter:CID_A_447_Athena_Commando_M_PennantSeasOne_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_448_Athena_Commando_M_PennantSeasOne_C": {
+ "templateId": "AthenaCharacter:CID_A_448_Athena_Commando_M_PennantSeasOne_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_449_Athena_Commando_M_PennantSeasOne_D": {
+ "templateId": "AthenaCharacter:CID_A_449_Athena_Commando_M_PennantSeasOne_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_450_Athena_Commando_M_PennantSeasOne_E": {
+ "templateId": "AthenaCharacter:CID_A_450_Athena_Commando_M_PennantSeasOne_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9",
+ "Mat10"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_451_Athena_Commando_F_Rays": {
+ "templateId": "AthenaCharacter:CID_A_451_Athena_Commando_F_Rays",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_452_Athena_Commando_F_Barium": {
+ "templateId": "AthenaCharacter:CID_A_452_Athena_Commando_F_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_453_Athena_Commando_F_FuzzyBearSummer": {
+ "templateId": "AthenaCharacter:CID_A_453_Athena_Commando_F_FuzzyBearSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_454_Athena_Commando_M_Ohana": {
+ "templateId": "AthenaCharacter:CID_A_454_Athena_Commando_M_Ohana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_455_Athena_Commando_F_SummerStride": {
+ "templateId": "AthenaCharacter:CID_A_455_Athena_Commando_F_SummerStride",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_456_Athena_Commando_F_Fruitcake": {
+ "templateId": "AthenaCharacter:CID_A_456_Athena_Commando_F_Fruitcake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_457_Athena_Commando_F_PunkKoiSummer": {
+ "templateId": "AthenaCharacter:CID_A_457_Athena_Commando_F_PunkKoiSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_458_Athena_Commando_M_SunStar": {
+ "templateId": "AthenaCharacter:CID_A_458_Athena_Commando_M_SunStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_459_Athena_Commando_M_SunTide": {
+ "templateId": "AthenaCharacter:CID_A_459_Athena_Commando_M_SunTide",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_460_Athena_Commando_F_SunBeam": {
+ "templateId": "AthenaCharacter:CID_A_460_Athena_Commando_F_SunBeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_461_Athena_Commando_M_DesertShadow": {
+ "templateId": "AthenaCharacter:CID_A_461_Athena_Commando_M_DesertShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_462_Athena_Commando_M_Stamina": {
+ "templateId": "AthenaCharacter:CID_A_462_Athena_Commando_M_Stamina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_463_Athena_Commando_M_StaminaVigor": {
+ "templateId": "AthenaCharacter:CID_A_463_Athena_Commando_M_StaminaVigor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_464_Athena_Commando_M_StaminaCat": {
+ "templateId": "AthenaCharacter:CID_A_464_Athena_Commando_M_StaminaCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_465_Athena_Commando_F_Stamina": {
+ "templateId": "AthenaCharacter:CID_A_465_Athena_Commando_F_Stamina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_466_Athena_Commando_F_Chaos": {
+ "templateId": "AthenaCharacter:CID_A_466_Athena_Commando_F_Chaos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_467_Athena_Commando_M_Wayfare": {
+ "templateId": "AthenaCharacter:CID_A_467_Athena_Commando_M_Wayfare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_468_Athena_Commando_F_Wayfare": {
+ "templateId": "AthenaCharacter:CID_A_468_Athena_Commando_F_Wayfare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_469_Athena_Commando_F_WayfareMask": {
+ "templateId": "AthenaCharacter:CID_A_469_Athena_Commando_F_WayfareMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_470_Athena_Commando_M_ApexWild": {
+ "templateId": "AthenaCharacter:CID_A_470_Athena_Commando_M_ApexWild",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_471_Athena_Commando_M_ApexWildRed": {
+ "templateId": "AthenaCharacter:CID_A_471_Athena_Commando_M_ApexWildRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_472_Athena_Commando_M_FutureSamuraiSummer": {
+ "templateId": "AthenaCharacter:CID_A_472_Athena_Commando_M_FutureSamuraiSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_473_Athena_Commando_F_Fog": {
+ "templateId": "AthenaCharacter:CID_A_473_Athena_Commando_F_Fog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_474_Athena_Commando_F_Astral": {
+ "templateId": "AthenaCharacter:CID_A_474_Athena_Commando_F_Astral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_475_Athena_Commando_F_PlatinumBlue": {
+ "templateId": "AthenaCharacter:CID_A_475_Athena_Commando_F_PlatinumBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_476_Athena_Commando_F_NeonJam": {
+ "templateId": "AthenaCharacter:CID_A_476_Athena_Commando_F_NeonJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_477_Athena_Commando_F_Handlebar": {
+ "templateId": "AthenaCharacter:CID_A_477_Athena_Commando_F_Handlebar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_A_478_Athena_Commando_F_WildCard": {
+ "templateId": "AthenaCharacter:CID_A_478_Athena_Commando_F_WildCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_Creative_Mannequin_M_Default": {
+ "templateId": "AthenaCharacter:CID_Creative_Mannequin_M_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_Jonesy3L": {
+ "templateId": "AthenaCharacter:CID_Jonesy3L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_CloakedAssassin": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_CloakedAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_CubeQueen": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_Fallback": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_Fallback",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyDark": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyGood": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_HenchmanSpyGood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_MarauderElite": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_MarauderElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_Prime": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_Prime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_PrimeOrder": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_PrimeOrder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_RebirthDefault_Henchman": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_RebirthDefault_Henchman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_F_TowerSentinel": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_F_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienRobot": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienSummer": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_AlienSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Grunt": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Grunt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Heavy": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Apparition_Heavy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Broccoli": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Broccoli",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_CatBurglar_Ghost": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_CatBurglar_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_CavernArmored": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_CavernArmored",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_EmperorSuit": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_EmperorSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Fallback": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Fallback",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HeistSummerIsland": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HeistSummerIsland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanBad": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanBad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanGood": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanGood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanSummer": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HenchmanSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman_Date": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_HightowerHenchman_Date",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Kyle": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Kyle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderGrunt": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderGrunt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderHeavy": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_MarauderHeavy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Masterkey": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Masterkey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_OrderGuardTank": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_OrderGuardTank",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorArctic": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorArctic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorOrder_Masked": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PaddedArmorOrder_Masked",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Prime": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Prime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_PrimeOrder": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_PrimeOrder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Realm": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_Scrapyard": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_Scrapyard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_SpaceWanderer": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_Commando_M_TacticalFishermanOil": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_Commando_M_TacticalFishermanOil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_HenchmanBadShorts": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_HenchmanBadShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_HenchmanGoodShorts": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_HenchmanGoodShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_MadCommander": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_MadCommander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_PaddedArmor": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_PaddedArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_NPC_Athena_RebirthSoldier": {
+ "templateId": "AthenaCharacter:CID_NPC_Athena_RebirthSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_TBD_Athena_Commando_M_Banana_CINE": {
+ "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Banana_CINE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_TBD_Athena_Commando_M_Nutcracker_CINE": {
+ "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Nutcracker_CINE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_TBD_Athena_Commando_M_Turtleneck_EVENT_NOTFORSTORE": {
+ "templateId": "AthenaCharacter:CID_TBD_Athena_Commando_M_Turtleneck_EVENT_NOTFORSTORE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_VIP_Athena_Commando_F_GalileoRocket_SG": {
+ "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_F_GalileoRocket_SG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoFerry_SG": {
+ "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoFerry_SG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoGondola_SG": {
+ "templateId": "AthenaCharacter:CID_VIP_Athena_Commando_M_GalileoGondola_SG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Apprentice": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_BadBear": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Chainmail": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Dazzle": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Inferno": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_JollyTroll": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_JollyTroll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Meteorwomen": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Meteorwomen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Nebula": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_NitroFlow": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_PinkSpike": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Quartz": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Quartz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_RealityBloom": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_RealityBloom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_RedPepper": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_RoseDust": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_SharpFang": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_Sunlit": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Contrail_VitalPsych": {
+ "templateId": "AthenaSkyDiveContrail:Contrail_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:DefaultContrail": {
+ "templateId": "AthenaSkyDiveContrail:DefaultContrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:DefaultGlider": {
+ "templateId": "AthenaGlider:DefaultGlider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:DefaultPickaxe": {
+ "templateId": "AthenaPickaxe:DefaultPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Dev_Test_Pickaxe": {
+ "templateId": "AthenaPickaxe:Dev_Test_Pickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Duo_Umbrella": {
+ "templateId": "AthenaGlider:Duo_Umbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Accolades": {
+ "templateId": "AthenaDance:EID_Accolades",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AcrobaticSuperhero": {
+ "templateId": "AthenaDance:EID_AcrobaticSuperhero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Aerobics": {
+ "templateId": "AthenaDance:EID_Aerobics",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AfroHouse": {
+ "templateId": "AthenaDance:EID_AfroHouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AirGuitar": {
+ "templateId": "AthenaDance:EID_AirGuitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AirHorn": {
+ "templateId": "AthenaDance:EID_AirHorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AirHornRaisin": {
+ "templateId": "AthenaDance:EID_AirHornRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Alchemy_BZWS8": {
+ "templateId": "AthenaDance:EID_Alchemy_BZWS8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Alfredo": {
+ "templateId": "AthenaDance:EID_Alfredo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Alien": {
+ "templateId": "AthenaDance:EID_Alien",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AlienSupport": {
+ "templateId": "AthenaDance:EID_AlienSupport",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Alliteration": {
+ "templateId": "AthenaDance:EID_Alliteration",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Aloha_C82XX": {
+ "templateId": "AthenaDance:EID_Aloha_C82XX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AmazingForever_Q68W0": {
+ "templateId": "AthenaDance:EID_AmazingForever_Q68W0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AncientGladiator": {
+ "templateId": "AthenaDance:EID_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Annual": {
+ "templateId": "AthenaDance:EID_Annual",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AntiVisitorProtest": {
+ "templateId": "AthenaDance:EID_AntiVisitorProtest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Anxiety": {
+ "templateId": "AthenaDance:EID_Anxiety",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ApexWild": {
+ "templateId": "AthenaDance:EID_ApexWild",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Applause": {
+ "templateId": "AthenaDance:EID_Applause",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Apprentice": {
+ "templateId": "AthenaDance:EID_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ApprenticeSwirl": {
+ "templateId": "AthenaDance:EID_ApprenticeSwirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Apprentice_Follower_Sync": {
+ "templateId": "AthenaDance:EID_Apprentice_Follower_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Apprentice_Sync": {
+ "templateId": "AthenaDance:EID_Apprentice_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArcticIceBlue": {
+ "templateId": "AthenaDance:EID_ArcticIceBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArcticIceTalus": {
+ "templateId": "AthenaDance:EID_ArcticIceTalus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Armadillo": {
+ "templateId": "AthenaDance:EID_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArmadilloRobot": {
+ "templateId": "AthenaDance:EID_ArmadilloRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArmUpDance": {
+ "templateId": "AthenaDance:EID_ArmUpDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArmWave": {
+ "templateId": "AthenaDance:EID_ArmWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ArtGiant": {
+ "templateId": "AthenaDance:EID_ArtGiant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ashes_MYQ8O": {
+ "templateId": "AthenaDance:EID_Ashes_MYQ8O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AshtonBoardwalk": {
+ "templateId": "AthenaDance:EID_AshtonBoardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AshtonSaltLake": {
+ "templateId": "AthenaDance:EID_AshtonSaltLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AssassinSalute": {
+ "templateId": "AthenaDance:EID_AssassinSalute",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AssassinVest": {
+ "templateId": "AthenaDance:EID_AssassinVest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Astral": {
+ "templateId": "AthenaDance:EID_Astral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Astray": {
+ "templateId": "AthenaDance:EID_Astray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_AutumnTea": {
+ "templateId": "AthenaDance:EID_AutumnTea",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Backflip": {
+ "templateId": "AthenaDance:EID_Backflip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Backspin_R3NAI": {
+ "templateId": "AthenaDance:EID_Backspin_R3NAI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BadBear": {
+ "templateId": "AthenaDance:EID_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BadMood": {
+ "templateId": "AthenaDance:EID_BadMood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Balance": {
+ "templateId": "AthenaDance:EID_Balance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BalletJumps": {
+ "templateId": "AthenaDance:EID_BalletJumps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BalletSpin": {
+ "templateId": "AthenaDance:EID_BalletSpin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Banana": {
+ "templateId": "AthenaDance:EID_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BangThePan": {
+ "templateId": "AthenaDance:EID_BangThePan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BannerFlagWave": {
+ "templateId": "AthenaDance:EID_BannerFlagWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bargain_Owned": {
+ "templateId": "AthenaDance:EID_Bargain_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bargain_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Bargain_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bargain_Sync": {
+ "templateId": "AthenaDance:EID_Bargain_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bargain_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Bargain_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bargain_Y5KHN": {
+ "templateId": "AthenaDance:EID_Bargain_Y5KHN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Barium": {
+ "templateId": "AthenaDance:EID_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BasilStrong": {
+ "templateId": "AthenaDance:EID_BasilStrong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Basketball": {
+ "templateId": "AthenaDance:EID_Basketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BasketballDribble_E6OJV": {
+ "templateId": "AthenaDance:EID_BasketballDribble_E6OJV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BasketballV2": {
+ "templateId": "AthenaDance:EID_BasketballV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BeckonPapayaComms": {
+ "templateId": "AthenaDance:EID_BeckonPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BeHere_8070H": {
+ "templateId": "AthenaDance:EID_BeHere_8070H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Believer": {
+ "templateId": "AthenaDance:EID_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bellringer": {
+ "templateId": "AthenaDance:EID_Bellringer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bendy": {
+ "templateId": "AthenaDance:EID_Bendy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BestMates": {
+ "templateId": "AthenaDance:EID_BestMates",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Betty": {
+ "templateId": "AthenaDance:EID_Betty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Betty_Owned": {
+ "templateId": "AthenaDance:EID_Betty_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Betty_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Betty_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Betty_Sync": {
+ "templateId": "AthenaDance:EID_Betty_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Betty_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Betty_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Beyond": {
+ "templateId": "AthenaDance:EID_Beyond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bicycle": {
+ "templateId": "AthenaDance:EID_Bicycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BicycleStyle": {
+ "templateId": "AthenaDance:EID_BicycleStyle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BigfootWalk": {
+ "templateId": "AthenaDance:EID_BigfootWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BillyBounce": {
+ "templateId": "AthenaDance:EID_BillyBounce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BistroStyle_P0XFD": {
+ "templateId": "AthenaDance:EID_BistroStyle_P0XFD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bites": {
+ "templateId": "AthenaDance:EID_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlackMondayFemale_6HO4L": {
+ "templateId": "AthenaDance:EID_BlackMondayFemale_6HO4L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlackMondayMale2": {
+ "templateId": "AthenaDance:EID_BlackMondayMale2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlackMondayMale_E0VSB": {
+ "templateId": "AthenaDance:EID_BlackMondayMale_E0VSB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Blaster": {
+ "templateId": "AthenaDance:EID_Blaster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlowingBubbles": {
+ "templateId": "AthenaDance:EID_BlowingBubbles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlueApparel": {
+ "templateId": "AthenaDance:EID_BlueApparel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BlueJay": {
+ "templateId": "AthenaDance:EID_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BluePhoto_JSG4D": {
+ "templateId": "AthenaDance:EID_BluePhoto_JSG4D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bollywood": {
+ "templateId": "AthenaDance:EID_Bollywood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Boneless": {
+ "templateId": "AthenaDance:EID_Boneless",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BoogieDown": {
+ "templateId": "AthenaDance:EID_BoogieDown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Boombox": {
+ "templateId": "AthenaDance:EID_Boombox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Boomer_N2RQT": {
+ "templateId": "AthenaDance:EID_Boomer_N2RQT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BootsAndCats": {
+ "templateId": "AthenaDance:EID_BootsAndCats",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BottleCapChallenge": {
+ "templateId": "AthenaDance:EID_BottleCapChallenge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bouquet": {
+ "templateId": "AthenaDance:EID_Bouquet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Breakboy": {
+ "templateId": "AthenaDance:EID_Breakboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BreakDance": {
+ "templateId": "AthenaDance:EID_BreakDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Breakdance2": {
+ "templateId": "AthenaDance:EID_Breakdance2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BreakfastCoffeeDance": {
+ "templateId": "AthenaDance:EID_BreakfastCoffeeDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Breakthrough": {
+ "templateId": "AthenaDance:EID_Breakthrough",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BreakYou": {
+ "templateId": "AthenaDance:EID_BreakYou",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BringItOn": {
+ "templateId": "AthenaDance:EID_BringItOn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Broccoli_PZIIW": {
+ "templateId": "AthenaDance:EID_Broccoli_PZIIW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BuffCat": {
+ "templateId": "AthenaDance:EID_BuffCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BuffCatComic_EV4HK": {
+ "templateId": "AthenaDance:EID_BuffCatComic_EV4HK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BuffetMoment_LCZQS": {
+ "templateId": "AthenaDance:EID_BuffetMoment_LCZQS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BuildASnowman": {
+ "templateId": "AthenaDance:EID_BuildASnowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Builders": {
+ "templateId": "AthenaDance:EID_Builders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BunnyFlop": {
+ "templateId": "AthenaDance:EID_BunnyFlop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Bunnyhop": {
+ "templateId": "AthenaDance:EID_Bunnyhop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_BurgerFlipping": {
+ "templateId": "AthenaDance:EID_BurgerFlipping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Burpee": {
+ "templateId": "AthenaDance:EID_Burpee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Butter_1R26Q": {
+ "templateId": "AthenaDance:EID_Butter_1R26Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ByTheFire": {
+ "templateId": "AthenaDance:EID_ByTheFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ByTheFire_Follower": {
+ "templateId": "AthenaDance:EID_ByTheFire_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ByTheFire_Sync": {
+ "templateId": "AthenaDance:EID_ByTheFire_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CactusTPose": {
+ "templateId": "AthenaDance:EID_CactusTPose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cadet": {
+ "templateId": "AthenaDance:EID_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Calculated": {
+ "templateId": "AthenaDance:EID_Calculated",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Caller": {
+ "templateId": "AthenaDance:EID_Caller",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CallMe": {
+ "templateId": "AthenaDance:EID_CallMe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Canary": {
+ "templateId": "AthenaDance:EID_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Candor": {
+ "templateId": "AthenaDance:EID_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CandyDance": {
+ "templateId": "AthenaDance:EID_CandyDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Capoeira": {
+ "templateId": "AthenaDance:EID_Capoeira",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cartwheel": {
+ "templateId": "AthenaDance:EID_Cartwheel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cashier_HGQ8X": {
+ "templateId": "AthenaDance:EID_Cashier_HGQ8X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CattusRoar": {
+ "templateId": "AthenaDance:EID_CattusRoar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Celebration": {
+ "templateId": "AthenaDance:EID_Celebration",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CelebrationDance": {
+ "templateId": "AthenaDance:EID_CelebrationDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CerealBox": {
+ "templateId": "AthenaDance:EID_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chainmail": {
+ "templateId": "AthenaDance:EID_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ChairTime": {
+ "templateId": "AthenaDance:EID_ChairTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chashu": {
+ "templateId": "AthenaDance:EID_Chashu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CheckeredFlag": {
+ "templateId": "AthenaDance:EID_CheckeredFlag",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Checkmate": {
+ "templateId": "AthenaDance:EID_Checkmate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Checkmate_Owned": {
+ "templateId": "AthenaDance:EID_Checkmate_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Checkmate_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Checkmate_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Checkmate_Sync": {
+ "templateId": "AthenaDance:EID_Checkmate_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Checkmate_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Checkmate_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cheerleading": {
+ "templateId": "AthenaDance:EID_Cheerleading",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CheerPapayaComms": {
+ "templateId": "AthenaDance:EID_CheerPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cherish": {
+ "templateId": "AthenaDance:EID_Cherish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chew": {
+ "templateId": "AthenaDance:EID_Chew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chicken": {
+ "templateId": "AthenaDance:EID_Chicken",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ChickenLeg_TDJ0O": {
+ "templateId": "AthenaDance:EID_ChickenLeg_TDJ0O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ChickenMoves": {
+ "templateId": "AthenaDance:EID_ChickenMoves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ChillCat": {
+ "templateId": "AthenaDance:EID_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chilled": {
+ "templateId": "AthenaDance:EID_Chilled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chopsticks": {
+ "templateId": "AthenaDance:EID_Chopsticks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chuckle": {
+ "templateId": "AthenaDance:EID_Chuckle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chug": {
+ "templateId": "AthenaDance:EID_Chug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Chugga": {
+ "templateId": "AthenaDance:EID_Chugga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ChuggaFollower": {
+ "templateId": "AthenaDance:EID_ChuggaFollower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Citadel": {
+ "templateId": "AthenaDance:EID_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Clamor": {
+ "templateId": "AthenaDance:EID_Clamor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Clamor_Follower": {
+ "templateId": "AthenaDance:EID_Clamor_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Clamor_Follower_Offset": {
+ "templateId": "AthenaDance:EID_Clamor_Follower_Offset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClapAndWave": {
+ "templateId": "AthenaDance:EID_ClapAndWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClapPapayaComms": {
+ "templateId": "AthenaDance:EID_ClapPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Clapperboard": {
+ "templateId": "AthenaDance:EID_Clapperboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Clash_JLK96": {
+ "templateId": "AthenaDance:EID_Clash_JLK96",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClearRadius": {
+ "templateId": "AthenaDance:EID_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClearRadius_Follower": {
+ "templateId": "AthenaDance:EID_ClearRadius_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClearRadius_Follower_Sync": {
+ "templateId": "AthenaDance:EID_ClearRadius_Follower_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClearRadius_Sync": {
+ "templateId": "AthenaDance:EID_ClearRadius_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ClimbTheStaff": {
+ "templateId": "AthenaDance:EID_ClimbTheStaff",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CloudFloat": {
+ "templateId": "AthenaDance:EID_CloudFloat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoinToss": {
+ "templateId": "AthenaDance:EID_CoinToss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Collectable": {
+ "templateId": "AthenaDance:EID_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Comrade_6O5AK": {
+ "templateId": "AthenaDance:EID_Comrade_6O5AK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Concentrate_0W5GY": {
+ "templateId": "AthenaDance:EID_Concentrate_0W5GY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Confused": {
+ "templateId": "AthenaDance:EID_Confused",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Conga": {
+ "templateId": "AthenaDance:EID_Conga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoolOff": {
+ "templateId": "AthenaDance:EID_CoolOff",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoolRobot": {
+ "templateId": "AthenaDance:EID_CoolRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoolRobotRaisin": {
+ "templateId": "AthenaDance:EID_CoolRobotRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Coping": {
+ "templateId": "AthenaDance:EID_Coping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Coronet": {
+ "templateId": "AthenaDance:EID_Coronet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CosmosPet": {
+ "templateId": "AthenaDance:EID_CosmosPet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CowboyDance": {
+ "templateId": "AthenaDance:EID_CowboyDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoyoteTrail": {
+ "templateId": "AthenaDance:EID_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoyoteTrail_Follower": {
+ "templateId": "AthenaDance:EID_CoyoteTrail_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CoyoteTrail_Sync": {
+ "templateId": "AthenaDance:EID_CoyoteTrail_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrabDance": {
+ "templateId": "AthenaDance:EID_CrabDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrackshotClock": {
+ "templateId": "AthenaDance:EID_CrackshotClock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrackshotDance": {
+ "templateId": "AthenaDance:EID_CrackshotDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrazyDance": {
+ "templateId": "AthenaDance:EID_CrazyDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrazyDanceRaisin": {
+ "templateId": "AthenaDance:EID_CrazyDanceRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrazyFeet": {
+ "templateId": "AthenaDance:EID_CrazyFeet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrimsonPeak": {
+ "templateId": "AthenaDance:EID_CrimsonPeak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CrissCross": {
+ "templateId": "AthenaDance:EID_CrissCross",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cruising": {
+ "templateId": "AthenaDance:EID_Cruising",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cry": {
+ "templateId": "AthenaDance:EID_Cry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_01": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_02": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_03": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_04": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_05": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_06": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_07": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_08": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_09": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_10": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_11": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_11",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_12": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_12",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_13": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_13",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_14": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_14",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CT_CapturePose_15": {
+ "templateId": "AthenaDance:EID_CT_CapturePose_15",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Custodial": {
+ "templateId": "AthenaDance:EID_Custodial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CyberArmor": {
+ "templateId": "AthenaDance:EID_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Cyclone": {
+ "templateId": "AthenaDance:EID_Cyclone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_CycloneHeadBang": {
+ "templateId": "AthenaDance:EID_CycloneHeadBang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dab": {
+ "templateId": "AthenaDance:EID_Dab",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DaBounce": {
+ "templateId": "AthenaDance:EID_DaBounce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DanceMoves": {
+ "templateId": "AthenaDance:EID_DanceMoves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DarkFireLegends": {
+ "templateId": "AthenaDance:EID_DarkFireLegends",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dashing": {
+ "templateId": "AthenaDance:EID_Dashing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Davinci": {
+ "templateId": "AthenaDance:EID_Davinci",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dazzle": {
+ "templateId": "AthenaDance:EID_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DeepDab": {
+ "templateId": "AthenaDance:EID_DeepDab",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Deflated_6POAZ": {
+ "templateId": "AthenaDance:EID_Deflated_6POAZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DesertShadow": {
+ "templateId": "AthenaDance:EID_DesertShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dinosaur": {
+ "templateId": "AthenaDance:EID_Dinosaur",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Direction": {
+ "templateId": "AthenaDance:EID_Direction",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Disagree": {
+ "templateId": "AthenaDance:EID_Disagree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DiscoFever": {
+ "templateId": "AthenaDance:EID_DiscoFever",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Disintegrate": {
+ "templateId": "AthenaDance:EID_Disintegrate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DistantEcho": {
+ "templateId": "AthenaDance:EID_DistantEcho",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DivinePose": {
+ "templateId": "AthenaDance:EID_DivinePose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Division": {
+ "templateId": "AthenaDance:EID_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DJ01": {
+ "templateId": "AthenaDance:EID_DJ01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DoggyStrut": {
+ "templateId": "AthenaDance:EID_DoggyStrut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DontBeSquare": {
+ "templateId": "AthenaDance:EID_DontBeSquare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DontSneeze": {
+ "templateId": "AthenaDance:EID_DontSneeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Donut1": {
+ "templateId": "AthenaDance:EID_Donut1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Donut2": {
+ "templateId": "AthenaDance:EID_Donut2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Doodling": {
+ "templateId": "AthenaDance:EID_Doodling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Doublesnap": {
+ "templateId": "AthenaDance:EID_Doublesnap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DoubleTake": {
+ "templateId": "AthenaDance:EID_DoubleTake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Downward_8GZUA": {
+ "templateId": "AthenaDance:EID_Downward_8GZUA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dreadful": {
+ "templateId": "AthenaDance:EID_Dreadful",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DreamFeet": {
+ "templateId": "AthenaDance:EID_DreamFeet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DrumMajor": {
+ "templateId": "AthenaDance:EID_DrumMajor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DualParadox": {
+ "templateId": "AthenaDance:EID_DualParadox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DuckTeacher_9IPLU": {
+ "templateId": "AthenaDance:EID_DuckTeacher_9IPLU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dumbbell_Lift": {
+ "templateId": "AthenaDance:EID_Dumbbell_Lift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Dunk": {
+ "templateId": "AthenaDance:EID_Dunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DustingHands": {
+ "templateId": "AthenaDance:EID_DustingHands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_DustOffShoulders": {
+ "templateId": "AthenaDance:EID_DustOffShoulders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EasternBloc": {
+ "templateId": "AthenaDance:EID_EasternBloc",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ebony": {
+ "templateId": "AthenaDance:EID_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Eerie_8WGYK": {
+ "templateId": "AthenaDance:EID_Eerie_8WGYK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EgyptianDance": {
+ "templateId": "AthenaDance:EID_EgyptianDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Elastic": {
+ "templateId": "AthenaDance:EID_Elastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ElectroShuffle": {
+ "templateId": "AthenaDance:EID_ElectroShuffle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ElectroShuffle_V2": {
+ "templateId": "AthenaDance:EID_ElectroShuffle_V2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ElectroSwing": {
+ "templateId": "AthenaDance:EID_ElectroSwing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EmeraldGlassGreen": {
+ "templateId": "AthenaDance:EID_EmeraldGlassGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EmeraldGlassTransform": {
+ "templateId": "AthenaDance:EID_EmeraldGlassTransform",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Emperor": {
+ "templateId": "AthenaDance:EID_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Endear": {
+ "templateId": "AthenaDance:EID_Endear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Energize": {
+ "templateId": "AthenaDance:EID_Energize",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EnergizeStoic": {
+ "templateId": "AthenaDance:EID_EnergizeStoic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EngagedWalk": {
+ "templateId": "AthenaDance:EID_EngagedWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_EpicYarn": {
+ "templateId": "AthenaDance:EID_EpicYarn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Everytime": {
+ "templateId": "AthenaDance:EID_Everytime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Exaggerated": {
+ "templateId": "AthenaDance:EID_Exaggerated",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Facepalm": {
+ "templateId": "AthenaDance:EID_Facepalm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FancyFeet": {
+ "templateId": "AthenaDance:EID_FancyFeet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FancyWorkout": {
+ "templateId": "AthenaDance:EID_FancyWorkout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Fangs": {
+ "templateId": "AthenaDance:EID_Fangs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Faux": {
+ "templateId": "AthenaDance:EID_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FearlessFlight": {
+ "templateId": "AthenaDance:EID_FearlessFlight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Feral": {
+ "templateId": "AthenaDance:EID_Feral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FingerGuns": {
+ "templateId": "AthenaDance:EID_FingerGuns",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FingerGunsV2": {
+ "templateId": "AthenaDance:EID_FingerGunsV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Firecracker": {
+ "templateId": "AthenaDance:EID_Firecracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FirecrackerSparks": {
+ "templateId": "AthenaDance:EID_FirecrackerSparks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FireDance": {
+ "templateId": "AthenaDance:EID_FireDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FireworksSpin": {
+ "templateId": "AthenaDance:EID_FireworksSpin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Fireworks_WKX2W": {
+ "templateId": "AthenaDance:EID_Fireworks_WKX2W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FistPump": {
+ "templateId": "AthenaDance:EID_FistPump",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FlagPlant": {
+ "templateId": "AthenaDance:EID_FlagPlant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FlailingFins": {
+ "templateId": "AthenaDance:EID_FlailingFins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Flamenco": {
+ "templateId": "AthenaDance:EID_Flamenco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Flapper": {
+ "templateId": "AthenaDance:EID_Flapper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Flex": {
+ "templateId": "AthenaDance:EID_Flex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Flex02": {
+ "templateId": "AthenaDance:EID_Flex02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FlipIt": {
+ "templateId": "AthenaDance:EID_FlipIt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Floppy": {
+ "templateId": "AthenaDance:EID_Floppy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Floss": {
+ "templateId": "AthenaDance:EID_Floss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Flourish": {
+ "templateId": "AthenaDance:EID_Flourish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FlyingKite": {
+ "templateId": "AthenaDance:EID_FlyingKite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Foe_4EWJV": {
+ "templateId": "AthenaDance:EID_Foe_4EWJV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Football20Flag_C3QEE": {
+ "templateId": "AthenaDance:EID_Football20Flag_C3QEE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FootballTD_U2HZI": {
+ "templateId": "AthenaDance:EID_FootballTD_U2HZI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Fresh": {
+ "templateId": "AthenaDance:EID_Fresh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FrisbeeShow": {
+ "templateId": "AthenaDance:EID_FrisbeeShow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Frontier": {
+ "templateId": "AthenaDance:EID_Frontier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Fuchsia": {
+ "templateId": "AthenaDance:EID_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FutureSamurai": {
+ "templateId": "AthenaDance:EID_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_FuzzBall": {
+ "templateId": "AthenaDance:EID_FuzzBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GabbyHipHop_01": {
+ "templateId": "AthenaDance:EID_GabbyHipHop_01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Galileo1_B3EX6": {
+ "templateId": "AthenaDance:EID_Galileo1_B3EX6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Galileo2_2VYEJ": {
+ "templateId": "AthenaDance:EID_Galileo2_2VYEJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Galileo3_T4DKO": {
+ "templateId": "AthenaDance:EID_Galileo3_T4DKO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Galileo4_PXPE0": {
+ "templateId": "AthenaDance:EID_Galileo4_PXPE0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GalileoShow_Cheer": {
+ "templateId": "AthenaDance:EID_GalileoShow_Cheer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GasStation_104FQ": {
+ "templateId": "AthenaDance:EID_GasStation_104FQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GetFunky": {
+ "templateId": "AthenaDance:EID_GetFunky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GetOverHere": {
+ "templateId": "AthenaDance:EID_GetOverHere",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GetTheHorns": {
+ "templateId": "AthenaDance:EID_GetTheHorns",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GhostHunter": {
+ "templateId": "AthenaDance:EID_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Gimmick_Female_6CMF4": {
+ "templateId": "AthenaDance:EID_Gimmick_Female_6CMF4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Gimmick_Male_8ZFCA": {
+ "templateId": "AthenaDance:EID_Gimmick_Male_8ZFCA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Gleam": {
+ "templateId": "AthenaDance:EID_Gleam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GlowstickDance": {
+ "templateId": "AthenaDance:EID_GlowstickDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GoatDance": {
+ "templateId": "AthenaDance:EID_GoatDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GoatDance_Sync": {
+ "templateId": "AthenaDance:EID_GoatDance_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GoatDance_Sync_Owned": {
+ "templateId": "AthenaDance:EID_GoatDance_Sync_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GolfClap": {
+ "templateId": "AthenaDance:EID_GolfClap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Goodbye": {
+ "templateId": "AthenaDance:EID_Goodbye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GoodVibes": {
+ "templateId": "AthenaDance:EID_GoodVibes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GothDance": {
+ "templateId": "AthenaDance:EID_GothDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Grapefruit": {
+ "templateId": "AthenaDance:EID_Grapefruit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Grasshopper_8D51K": {
+ "templateId": "AthenaDance:EID_Grasshopper_8D51K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Griddles": {
+ "templateId": "AthenaDance:EID_Griddles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GrilledCheese_N31C9": {
+ "templateId": "AthenaDance:EID_GrilledCheese_N31C9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GrooveJam": {
+ "templateId": "AthenaDance:EID_GrooveJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Grooving": {
+ "templateId": "AthenaDance:EID_Grooving",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GroovingSparkle": {
+ "templateId": "AthenaDance:EID_GroovingSparkle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GuitarWalk": {
+ "templateId": "AthenaDance:EID_GuitarWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Gumball": {
+ "templateId": "AthenaDance:EID_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GunspinnerTeacup": {
+ "templateId": "AthenaDance:EID_GunspinnerTeacup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_GwaraDance": {
+ "templateId": "AthenaDance:EID_GwaraDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HackySack": {
+ "templateId": "AthenaDance:EID_HackySack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HailingCab": {
+ "templateId": "AthenaDance:EID_HailingCab",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HalloweenCandy": {
+ "templateId": "AthenaDance:EID_HalloweenCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Handlebars": {
+ "templateId": "AthenaDance:EID_Handlebars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HandSignals": {
+ "templateId": "AthenaDance:EID_HandSignals",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HandstandLegDab": {
+ "templateId": "AthenaDance:EID_HandstandLegDab",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HandsUp": {
+ "templateId": "AthenaDance:EID_HandsUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HappyBirthday": {
+ "templateId": "AthenaDance:EID_HappyBirthday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HappySkipping": {
+ "templateId": "AthenaDance:EID_HappySkipping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HappyWave": {
+ "templateId": "AthenaDance:EID_HappyWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Haste1_T98Z9": {
+ "templateId": "AthenaDance:EID_Haste1_T98Z9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Headband": {
+ "templateId": "AthenaDance:EID_Headband",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HeadBang": {
+ "templateId": "AthenaDance:EID_HeadBang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HeadBangRaisin": {
+ "templateId": "AthenaDance:EID_HeadBangRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Headset": {
+ "templateId": "AthenaDance:EID_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HeadShake": {
+ "templateId": "AthenaDance:EID_HeadShake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Heartsign": {
+ "templateId": "AthenaDance:EID_Heartsign",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Heartsign_Sync": {
+ "templateId": "AthenaDance:EID_Heartsign_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Heartsign_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Heartsign_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Heartsign_Sync_Owned": {
+ "templateId": "AthenaDance:EID_Heartsign_Sync_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Heartsign_Sync_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Heartsign_Sync_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HeelClick": {
+ "templateId": "AthenaDance:EID_HeelClick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Herald": {
+ "templateId": "AthenaDance:EID_Herald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Herald_NPC": {
+ "templateId": "AthenaDance:EID_Herald_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive": {
+ "templateId": "AthenaDance:EID_HiFive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive_JoinAdHocSquads": {
+ "templateId": "AthenaDance:EID_HiFive_JoinAdHocSquads",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive_Sync": {
+ "templateId": "AthenaDance:EID_HiFive_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive_SyncOwned": {
+ "templateId": "AthenaDance:EID_HiFive_SyncOwned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive_SyncOwned_InfiniteTolerance": {
+ "templateId": "AthenaDance:EID_HiFive_SyncOwned_InfiniteTolerance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiFive_Sync_InfiniteTolerance": {
+ "templateId": "AthenaDance:EID_HiFive_Sync_InfiniteTolerance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HighActivity": {
+ "templateId": "AthenaDance:EID_HighActivity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerDate": {
+ "templateId": "AthenaDance:EID_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerDate_NPC": {
+ "templateId": "AthenaDance:EID_HightowerDate_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerGrape": {
+ "templateId": "AthenaDance:EID_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerHoneydew": {
+ "templateId": "AthenaDance:EID_HightowerHoneydew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerMango": {
+ "templateId": "AthenaDance:EID_HightowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerSquash": {
+ "templateId": "AthenaDance:EID_HightowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerTapas": {
+ "templateId": "AthenaDance:EID_HightowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerTomato": {
+ "templateId": "AthenaDance:EID_HightowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerTomato_NPC": {
+ "templateId": "AthenaDance:EID_HightowerTomato_NPC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HightowerWasabi": {
+ "templateId": "AthenaDance:EID_HightowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hilda": {
+ "templateId": "AthenaDance:EID_Hilda",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HiLowWave": {
+ "templateId": "AthenaDance:EID_HiLowWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HipHop01": {
+ "templateId": "AthenaDance:EID_HipHop01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HipHopS5": {
+ "templateId": "AthenaDance:EID_HipHopS5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HipHopS7": {
+ "templateId": "AthenaDance:EID_HipHopS7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HipToBeSquare": {
+ "templateId": "AthenaDance:EID_HipToBeSquare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Historian_2TEF8": {
+ "templateId": "AthenaDance:EID_Historian_2TEF8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hitchhiker": {
+ "templateId": "AthenaDance:EID_Hitchhiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HNYGoodRiddance": {
+ "templateId": "AthenaDance:EID_HNYGoodRiddance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HoldOnAMinute": {
+ "templateId": "AthenaDance:EID_HoldOnAMinute",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HolidayCracker": {
+ "templateId": "AthenaDance:EID_HolidayCracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HolidayCracker_Owned": {
+ "templateId": "AthenaDance:EID_HolidayCracker_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HolidayCracker_Sync": {
+ "templateId": "AthenaDance:EID_HolidayCracker_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HolidayCracker_Sync_Follower": {
+ "templateId": "AthenaDance:EID_HolidayCracker_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HolidayCracker_Sync_Owned_Follower": {
+ "templateId": "AthenaDance:EID_HolidayCracker_Sync_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hopper": {
+ "templateId": "AthenaDance:EID_Hopper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hoppin": {
+ "templateId": "AthenaDance:EID_Hoppin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HotPink": {
+ "templateId": "AthenaDance:EID_HotPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HotStuff": {
+ "templateId": "AthenaDance:EID_HotStuff",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hula": {
+ "templateId": "AthenaDance:EID_Hula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HulaHoop": {
+ "templateId": "AthenaDance:EID_HulaHoop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_HulaHoopChallenge": {
+ "templateId": "AthenaDance:EID_HulaHoopChallenge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Huzzah": {
+ "templateId": "AthenaDance:EID_Huzzah",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Huzzah_Owned": {
+ "templateId": "AthenaDance:EID_Huzzah_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Huzzah_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Huzzah_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Huzzah_Sync": {
+ "templateId": "AthenaDance:EID_Huzzah_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Huzzah_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Huzzah_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hydraulics": {
+ "templateId": "AthenaDance:EID_Hydraulics",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Hype": {
+ "templateId": "AthenaDance:EID_Hype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_IceKing": {
+ "templateId": "AthenaDance:EID_IceKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Iconic": {
+ "templateId": "AthenaDance:EID_Iconic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_IDontKnow": {
+ "templateId": "AthenaDance:EID_IDontKnow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ignite": {
+ "templateId": "AthenaDance:EID_Ignite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Impulse": {
+ "templateId": "AthenaDance:EID_Impulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Impulse_Follower": {
+ "templateId": "AthenaDance:EID_Impulse_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_IndianDance": {
+ "templateId": "AthenaDance:EID_IndianDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Indigo": {
+ "templateId": "AthenaDance:EID_Indigo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_IndigoApple": {
+ "templateId": "AthenaDance:EID_IndigoApple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Inferno": {
+ "templateId": "AthenaDance:EID_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_InfiniteDab": {
+ "templateId": "AthenaDance:EID_InfiniteDab",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_InfiniteDabRaisin": {
+ "templateId": "AthenaDance:EID_InfiniteDabRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_InspireSpell": {
+ "templateId": "AthenaDance:EID_InspireSpell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Intensity": {
+ "templateId": "AthenaDance:EID_Intensity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Intensity_Copy": {
+ "templateId": "AthenaDance:EID_Intensity_Copy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Interstellar": {
+ "templateId": "AthenaDance:EID_Interstellar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_IrishJig": {
+ "templateId": "AthenaDance:EID_IrishJig",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Irons": {
+ "templateId": "AthenaDance:EID_Irons",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jammin": {
+ "templateId": "AthenaDance:EID_Jammin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jammin_Copy": {
+ "templateId": "AthenaDance:EID_Jammin_Copy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JanuaryBop": {
+ "templateId": "AthenaDance:EID_JanuaryBop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jaywalking": {
+ "templateId": "AthenaDance:EID_Jaywalking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JazzDance": {
+ "templateId": "AthenaDance:EID_JazzDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JazzHands": {
+ "templateId": "AthenaDance:EID_JazzHands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JellyFrog": {
+ "templateId": "AthenaDance:EID_JellyFrog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jiggle": {
+ "templateId": "AthenaDance:EID_Jiggle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jingle": {
+ "templateId": "AthenaDance:EID_Jingle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jokes": {
+ "templateId": "AthenaDance:EID_Jokes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Journey": {
+ "templateId": "AthenaDance:EID_Journey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JourneyMentor_X2D9N": {
+ "templateId": "AthenaDance:EID_JourneyMentor_X2D9N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Juggler": {
+ "templateId": "AthenaDance:EID_Juggler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jugular": {
+ "templateId": "AthenaDance:EID_Jugular",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jugular_Banjo": {
+ "templateId": "AthenaDance:EID_Jugular_Banjo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jugular_Fiddle": {
+ "templateId": "AthenaDance:EID_Jugular_Fiddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jugular_Guitar": {
+ "templateId": "AthenaDance:EID_Jugular_Guitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JulyBooks": {
+ "templateId": "AthenaDance:EID_JulyBooks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JumpingJack": {
+ "templateId": "AthenaDance:EID_JumpingJack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JumpingJoy_WKPG4": {
+ "templateId": "AthenaDance:EID_JumpingJoy_WKPG4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JumpStyleDance": {
+ "templateId": "AthenaDance:EID_JumpStyleDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Jupiter_7JZ9R": {
+ "templateId": "AthenaDance:EID_Jupiter_7JZ9R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_JustHome": {
+ "templateId": "AthenaDance:EID_JustHome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KEagle": {
+ "templateId": "AthenaDance:EID_KEagle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KeeperDreamChorus": {
+ "templateId": "AthenaDance:EID_KeeperDreamChorus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KeeperDreamGlowstick": {
+ "templateId": "AthenaDance:EID_KeeperDreamGlowstick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KeeperDreamHook": {
+ "templateId": "AthenaDance:EID_KeeperDreamHook",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KeplerFemale_C98JD": {
+ "templateId": "AthenaDance:EID_KeplerFemale_C98JD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KeplerMale_OQS83": {
+ "templateId": "AthenaDance:EID_KeplerMale_OQS83",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Kilo_VD0PK": {
+ "templateId": "AthenaDance:EID_Kilo_VD0PK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KingEagle": {
+ "templateId": "AthenaDance:EID_KingEagle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KissKiss": {
+ "templateId": "AthenaDance:EID_KissKiss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KitchenNavigator": {
+ "templateId": "AthenaDance:EID_KitchenNavigator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Kittycat": {
+ "templateId": "AthenaDance:EID_Kittycat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KnightCat": {
+ "templateId": "AthenaDance:EID_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KPopDance01": {
+ "templateId": "AthenaDance:EID_KPopDance01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KPopDance02": {
+ "templateId": "AthenaDance:EID_KPopDance02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KPopDance03": {
+ "templateId": "AthenaDance:EID_KPopDance03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KpopDance04": {
+ "templateId": "AthenaDance:EID_KpopDance04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KungFuSalute": {
+ "templateId": "AthenaDance:EID_KungFuSalute",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_KungFuShadowBoxing": {
+ "templateId": "AthenaDance:EID_KungFuShadowBoxing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LasagnaDance": {
+ "templateId": "AthenaDance:EID_LasagnaDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LasagnaFlex": {
+ "templateId": "AthenaDance:EID_LasagnaFlex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LassoPolo_G5AI0": {
+ "templateId": "AthenaDance:EID_LassoPolo_G5AI0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lasso_ADP0O": {
+ "templateId": "AthenaDance:EID_Lasso_ADP0O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lateral_7QJD6": {
+ "templateId": "AthenaDance:EID_Lateral_7QJD6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Laugh": {
+ "templateId": "AthenaDance:EID_Laugh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LaughTrack": {
+ "templateId": "AthenaDance:EID_LaughTrack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Layers_BBZ49": {
+ "templateId": "AthenaDance:EID_Layers_BBZ49",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LazyShuffle": {
+ "templateId": "AthenaDance:EID_LazyShuffle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LetsBegin": {
+ "templateId": "AthenaDance:EID_LetsBegin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LetsPlay": {
+ "templateId": "AthenaDance:EID_LetsPlay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lettuce": {
+ "templateId": "AthenaDance:EID_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lexa": {
+ "templateId": "AthenaDance:EID_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lifted": {
+ "templateId": "AthenaDance:EID_Lifted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LimaBean": {
+ "templateId": "AthenaDance:EID_LimaBean",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LineDance": {
+ "templateId": "AthenaDance:EID_LineDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LittleEgg_69OX0": {
+ "templateId": "AthenaDance:EID_LittleEgg_69OX0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LivingLarge": {
+ "templateId": "AthenaDance:EID_LivingLarge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LlamaBell": {
+ "templateId": "AthenaDance:EID_LlamaBell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LlamaBellRaisin": {
+ "templateId": "AthenaDance:EID_LlamaBellRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LlamaFloat": {
+ "templateId": "AthenaDance:EID_LlamaFloat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LlamaMarch": {
+ "templateId": "AthenaDance:EID_LlamaMarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LlamaRider_Glitter": {
+ "templateId": "AthenaDance:EID_LlamaRider_Glitter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LocalZilla": {
+ "templateId": "AthenaDance:EID_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LockItUp": {
+ "templateId": "AthenaDance:EID_LockItUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LogarithmKick_NJVD8": {
+ "templateId": "AthenaDance:EID_LogarithmKick_NJVD8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LogarithmWhoa_T3PF9": {
+ "templateId": "AthenaDance:EID_LogarithmWhoa_T3PF9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lonely": {
+ "templateId": "AthenaDance:EID_Lonely",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LoneWolf": {
+ "templateId": "AthenaDance:EID_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Loofah": {
+ "templateId": "AthenaDance:EID_Loofah",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LookAtThis": {
+ "templateId": "AthenaDance:EID_LookAtThis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lounging": {
+ "templateId": "AthenaDance:EID_Lounging",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_LunchBox": {
+ "templateId": "AthenaDance:EID_LunchBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Lyrical": {
+ "templateId": "AthenaDance:EID_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Macaroon_45LHE": {
+ "templateId": "AthenaDance:EID_Macaroon_45LHE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MagicMan": {
+ "templateId": "AthenaDance:EID_MagicMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MagicMeadow": {
+ "templateId": "AthenaDance:EID_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Majesty_49JWY": {
+ "templateId": "AthenaDance:EID_Majesty_49JWY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MakeItPlantain": {
+ "templateId": "AthenaDance:EID_MakeItPlantain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MakeItRain": {
+ "templateId": "AthenaDance:EID_MakeItRain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MakeItRainV2": {
+ "templateId": "AthenaDance:EID_MakeItRainV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ManAndMonster": {
+ "templateId": "AthenaDance:EID_ManAndMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Maracas": {
+ "templateId": "AthenaDance:EID_Maracas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette": {
+ "templateId": "AthenaDance:EID_Marionette",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_BassGuitar": {
+ "templateId": "AthenaDance:EID_Marionette_BassGuitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_Drums": {
+ "templateId": "AthenaDance:EID_Marionette_Drums",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_Follower": {
+ "templateId": "AthenaDance:EID_Marionette_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_LeadGuitar": {
+ "templateId": "AthenaDance:EID_Marionette_LeadGuitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_RhythmGuitar": {
+ "templateId": "AthenaDance:EID_Marionette_RhythmGuitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_Sync": {
+ "templateId": "AthenaDance:EID_Marionette_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Marionette_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Marionette_Sync_Leader": {
+ "templateId": "AthenaDance:EID_Marionette_Sync_Leader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MartialArts": {
+ "templateId": "AthenaDance:EID_MartialArts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Martian_SK4J6": {
+ "templateId": "AthenaDance:EID_Martian_SK4J6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MashedPotato": {
+ "templateId": "AthenaDance:EID_MashedPotato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MathDance": {
+ "templateId": "AthenaDance:EID_MathDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MaxEnergize": {
+ "templateId": "AthenaDance:EID_MaxEnergize",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MechPeely": {
+ "templateId": "AthenaDance:EID_MechPeely",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MercurialStorm": {
+ "templateId": "AthenaDance:EID_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Meticulous": {
+ "templateId": "AthenaDance:EID_Meticulous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Meticulous_Owned": {
+ "templateId": "AthenaDance:EID_Meticulous_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Meticulous_Owned_Follower": {
+ "templateId": "AthenaDance:EID_Meticulous_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Meticulous_Sync": {
+ "templateId": "AthenaDance:EID_Meticulous_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Meticulous_Sync_Follower": {
+ "templateId": "AthenaDance:EID_Meticulous_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MicDrop": {
+ "templateId": "AthenaDance:EID_MicDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Mime": {
+ "templateId": "AthenaDance:EID_Mime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MindBlown": {
+ "templateId": "AthenaDance:EID_MindBlown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ModerateAmount_9LUN1": {
+ "templateId": "AthenaDance:EID_ModerateAmount_9LUN1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Monarch": {
+ "templateId": "AthenaDance:EID_Monarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MonteCarlo": {
+ "templateId": "AthenaDance:EID_MonteCarlo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MonteKeyboard": {
+ "templateId": "AthenaDance:EID_MonteKeyboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Moonwalking": {
+ "templateId": "AthenaDance:EID_Moonwalking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MotorcycleMayhem": {
+ "templateId": "AthenaDance:EID_MotorcycleMayhem",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Mouse": {
+ "templateId": "AthenaDance:EID_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MyEffort_BT5Z0": {
+ "templateId": "AthenaDance:EID_MyEffort_BT5Z0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_MyIdol": {
+ "templateId": "AthenaDance:EID_MyIdol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Mystic": {
+ "templateId": "AthenaDance:EID_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Nebula": {
+ "templateId": "AthenaDance:EID_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NeedToGo": {
+ "templateId": "AthenaDance:EID_NeedToGo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NeonCatSpy": {
+ "templateId": "AthenaDance:EID_NeonCatSpy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NeverGonna": {
+ "templateId": "AthenaDance:EID_NeverGonna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NeverGonnaRaisin": {
+ "templateId": "AthenaDance:EID_NeverGonnaRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Nighthawk": {
+ "templateId": "AthenaDance:EID_Nighthawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NightHawk_V2": {
+ "templateId": "AthenaDance:EID_NightHawk_V2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NightHawk_V3": {
+ "templateId": "AthenaDance:EID_NightHawk_V3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Nightmare_MS3AQ": {
+ "templateId": "AthenaDance:EID_Nightmare_MS3AQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Nightmare_NPC_M6EXP": {
+ "templateId": "AthenaDance:EID_Nightmare_NPC_M6EXP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Nimble": {
+ "templateId": "AthenaDance:EID_Nimble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NitroFlow": {
+ "templateId": "AthenaDance:EID_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Noble": {
+ "templateId": "AthenaDance:EID_Noble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NodHeadPapayaComms": {
+ "templateId": "AthenaDance:EID_NodHeadPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Noodles_X6R9E": {
+ "templateId": "AthenaDance:EID_Noodles_X6R9E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NotToday": {
+ "templateId": "AthenaDance:EID_NotToday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_NPC_ByTheFire": {
+ "templateId": "AthenaDance:EID_NPC_ByTheFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Obsidian": {
+ "templateId": "AthenaDance:EID_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OceanBreeze": {
+ "templateId": "AthenaDance:EID_OceanBreeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Octopus": {
+ "templateId": "AthenaDance:EID_Octopus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Office": {
+ "templateId": "AthenaDance:EID_Office",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OG_RunningMan": {
+ "templateId": "AthenaDance:EID_OG_RunningMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ohana": {
+ "templateId": "AthenaDance:EID_Ohana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OneArmFloss": {
+ "templateId": "AthenaDance:EID_OneArmFloss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OnTheHook": {
+ "templateId": "AthenaDance:EID_OnTheHook",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OrbitTeal_1XLAO": {
+ "templateId": "AthenaDance:EID_OrbitTeal_1XLAO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OrderGuard": {
+ "templateId": "AthenaDance:EID_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OriginPrisoner": {
+ "templateId": "AthenaDance:EID_OriginPrisoner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OstrichSpin": {
+ "templateId": "AthenaDance:EID_OstrichSpin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_OverUnder_K3T0G": {
+ "templateId": "AthenaDance:EID_OverUnder_K3T0G",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Pages": {
+ "templateId": "AthenaDance:EID_Pages",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ParallelComic": {
+ "templateId": "AthenaDance:EID_ParallelComic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PartyJazzTwinkleToes": {
+ "templateId": "AthenaDance:EID_PartyJazzTwinkleToes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PartyJazzWigglyDance": {
+ "templateId": "AthenaDance:EID_PartyJazzWigglyDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PatPat": {
+ "templateId": "AthenaDance:EID_PatPat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PatPat_Sync": {
+ "templateId": "AthenaDance:EID_PatPat_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PatPat_Sync_Follower": {
+ "templateId": "AthenaDance:EID_PatPat_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PatPat_Sync_Owned_Follower": {
+ "templateId": "AthenaDance:EID_PatPat_Sync_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Paws": {
+ "templateId": "AthenaDance:EID_Paws",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PeelyBones": {
+ "templateId": "AthenaDance:EID_PeelyBones",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PenguinWalk": {
+ "templateId": "AthenaDance:EID_PenguinWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Phew": {
+ "templateId": "AthenaDance:EID_Phew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PhoneWavePapayaComms": {
+ "templateId": "AthenaDance:EID_PhoneWavePapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Phonograph": {
+ "templateId": "AthenaDance:EID_Phonograph",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Photographer": {
+ "templateId": "AthenaDance:EID_Photographer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PinkSpike": {
+ "templateId": "AthenaDance:EID_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PinkWidow": {
+ "templateId": "AthenaDance:EID_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PirateGold": {
+ "templateId": "AthenaDance:EID_PirateGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Pizzatime": {
+ "templateId": "AthenaDance:EID_Pizzatime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PlayerEleven": {
+ "templateId": "AthenaDance:EID_PlayerEleven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PlotTwist": {
+ "templateId": "AthenaDance:EID_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Plummet": {
+ "templateId": "AthenaDance:EID_Plummet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PogoTraversal": {
+ "templateId": "AthenaDance:EID_PogoTraversal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PointFingerPapayaComms": {
+ "templateId": "AthenaDance:EID_PointFingerPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Popcorn": {
+ "templateId": "AthenaDance:EID_Popcorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PopDance01": {
+ "templateId": "AthenaDance:EID_PopDance01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PopLock": {
+ "templateId": "AthenaDance:EID_PopLock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PoutyClap": {
+ "templateId": "AthenaDance:EID_PoutyClap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PraiseStorm": {
+ "templateId": "AthenaDance:EID_PraiseStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PraiseTheTomato": {
+ "templateId": "AthenaDance:EID_PraiseTheTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Prance": {
+ "templateId": "AthenaDance:EID_Prance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Prance_Follower": {
+ "templateId": "AthenaDance:EID_Prance_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PresentOpening": {
+ "templateId": "AthenaDance:EID_PresentOpening",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ProfessorPup": {
+ "templateId": "AthenaDance:EID_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ProVisitorProtest": {
+ "templateId": "AthenaDance:EID_ProVisitorProtest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Psychic_7SO2Z": {
+ "templateId": "AthenaDance:EID_Psychic_7SO2Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Pump": {
+ "templateId": "AthenaDance:EID_Pump",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PumpkinDance": {
+ "templateId": "AthenaDance:EID_PumpkinDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Punctual": {
+ "templateId": "AthenaDance:EID_Punctual",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PunkKoi": {
+ "templateId": "AthenaDance:EID_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PureSalt": {
+ "templateId": "AthenaDance:EID_PureSalt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_PuzzleBox": {
+ "templateId": "AthenaDance:EID_PuzzleBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Quantity_39X5D": {
+ "templateId": "AthenaDance:EID_Quantity_39X5D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_QuarrelFemale_4ABL0": {
+ "templateId": "AthenaDance:EID_QuarrelFemale_4ABL0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_QuarrelMale_SGVNE": {
+ "templateId": "AthenaDance:EID_QuarrelMale_SGVNE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_QuickSweeper": {
+ "templateId": "AthenaDance:EID_QuickSweeper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RaceStart": {
+ "templateId": "AthenaDance:EID_RaceStart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RageQuit": {
+ "templateId": "AthenaDance:EID_RageQuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RaiseTheRoof": {
+ "templateId": "AthenaDance:EID_RaiseTheRoof",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RankedProgression": {
+ "templateId": "AthenaDance:EID_RankedProgression",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Realm": {
+ "templateId": "AthenaDance:EID_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RedCard": {
+ "templateId": "AthenaDance:EID_RedCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RedPepper": {
+ "templateId": "AthenaDance:EID_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RegalWave": {
+ "templateId": "AthenaDance:EID_RegalWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Relaxed": {
+ "templateId": "AthenaDance:EID_Relaxed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Relish_TNPZI": {
+ "templateId": "AthenaDance:EID_Relish_TNPZI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RememberMe": {
+ "templateId": "AthenaDance:EID_RememberMe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RespectThePeace": {
+ "templateId": "AthenaDance:EID_RespectThePeace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RespectThePeace_LeaveAdHocSquad": {
+ "templateId": "AthenaDance:EID_RespectThePeace_LeaveAdHocSquad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RespectThePeace_RemovePartyRift": {
+ "templateId": "AthenaDance:EID_RespectThePeace_RemovePartyRift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Reverence": {
+ "templateId": "AthenaDance:EID_Reverence",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RhymeLock_5B2Y3": {
+ "templateId": "AthenaDance:EID_RhymeLock_5B2Y3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RibbonDance": {
+ "templateId": "AthenaDance:EID_RibbonDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RichFam": {
+ "templateId": "AthenaDance:EID_RichFam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RideThePonyTwo": {
+ "templateId": "AthenaDance:EID_RideThePonyTwo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RideThePony_Athena": {
+ "templateId": "AthenaDance:EID_RideThePony_Athena",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RigorMortis": {
+ "templateId": "AthenaDance:EID_RigorMortis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RoastingMarshmallow": {
+ "templateId": "AthenaDance:EID_RoastingMarshmallow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Robot": {
+ "templateId": "AthenaDance:EID_Robot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RocketRodeo": {
+ "templateId": "AthenaDance:EID_RocketRodeo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RockGuitar": {
+ "templateId": "AthenaDance:EID_RockGuitar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RockingChair": {
+ "templateId": "AthenaDance:EID_RockingChair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RockPaperScissors": {
+ "templateId": "AthenaDance:EID_RockPaperScissors",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RoosterMech": {
+ "templateId": "AthenaDance:EID_RoosterMech",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RoseDust": {
+ "templateId": "AthenaDance:EID_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Rover_98BFX": {
+ "templateId": "AthenaDance:EID_Rover_98BFX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Roving": {
+ "templateId": "AthenaDance:EID_Roving",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ruckus": {
+ "templateId": "AthenaDance:EID_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RuckusMiniFollower": {
+ "templateId": "AthenaDance:EID_RuckusMiniFollower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RuckusMiniLeader": {
+ "templateId": "AthenaDance:EID_RuckusMiniLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RuckusMini_HW9YF": {
+ "templateId": "AthenaDance:EID_RuckusMini_HW9YF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ruckus_Follower": {
+ "templateId": "AthenaDance:EID_Ruckus_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Rumble_Female": {
+ "templateId": "AthenaDance:EID_Rumble_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Rumble_Male": {
+ "templateId": "AthenaDance:EID_Rumble_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RunningMan": {
+ "templateId": "AthenaDance:EID_RunningMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RunningManv3": {
+ "templateId": "AthenaDance:EID_RunningManv3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_RustyBolt_ZMR13": {
+ "templateId": "AthenaDance:EID_RustyBolt_ZMR13",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SadTrombone": {
+ "templateId": "AthenaDance:EID_SadTrombone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sahara": {
+ "templateId": "AthenaDance:EID_Sahara",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Salute": {
+ "templateId": "AthenaDance:EID_Salute",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SandwichBop": {
+ "templateId": "AthenaDance:EID_SandwichBop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sashimi": {
+ "templateId": "AthenaDance:EID_Sashimi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Saucer": {
+ "templateId": "AthenaDance:EID_Saucer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Saxophone": {
+ "templateId": "AthenaDance:EID_Saxophone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Scholar": {
+ "templateId": "AthenaDance:EID_Scholar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Schoolyard": {
+ "templateId": "AthenaDance:EID_Schoolyard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ScoreCard": {
+ "templateId": "AthenaDance:EID_ScoreCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ScoreCardBurger": {
+ "templateId": "AthenaDance:EID_ScoreCardBurger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ScorecardTomato": {
+ "templateId": "AthenaDance:EID_ScorecardTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Scribe": {
+ "templateId": "AthenaDance:EID_Scribe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ScrubDub": {
+ "templateId": "AthenaDance:EID_ScrubDub",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretHandshake": {
+ "templateId": "AthenaDance:EID_SecretHandshake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretHandshake_Owned": {
+ "templateId": "AthenaDance:EID_SecretHandshake_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretHandshake_Owned_Follower": {
+ "templateId": "AthenaDance:EID_SecretHandshake_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretHandshake_Sync": {
+ "templateId": "AthenaDance:EID_SecretHandshake_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretHandshake_Sync_Follower": {
+ "templateId": "AthenaDance:EID_SecretHandshake_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSlash_Owned": {
+ "templateId": "AthenaDance:EID_SecretSlash_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSlash_Owned_Follower": {
+ "templateId": "AthenaDance:EID_SecretSlash_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSlash_Synch": {
+ "templateId": "AthenaDance:EID_SecretSlash_Synch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSlash_Synch_Follower": {
+ "templateId": "AthenaDance:EID_SecretSlash_Synch_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSlash_UJT33": {
+ "templateId": "AthenaDance:EID_SecretSlash_UJT33",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSplit_7FOGY": {
+ "templateId": "AthenaDance:EID_SecretSplit_7FOGY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSplit_Owned": {
+ "templateId": "AthenaDance:EID_SecretSplit_Owned",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSplit_Owned_Follower": {
+ "templateId": "AthenaDance:EID_SecretSplit_Owned_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSplit_Synch": {
+ "templateId": "AthenaDance:EID_SecretSplit_Synch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecretSplit_Synch_Follower": {
+ "templateId": "AthenaDance:EID_SecretSplit_Synch_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SecurityGuard": {
+ "templateId": "AthenaDance:EID_SecurityGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SexyFlip": {
+ "templateId": "AthenaDance:EID_SexyFlip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shadowboxing": {
+ "templateId": "AthenaDance:EID_Shadowboxing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shaka": {
+ "templateId": "AthenaDance:EID_Shaka",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ShakeHeadPapayaComms": {
+ "templateId": "AthenaDance:EID_ShakeHeadPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ShallWe": {
+ "templateId": "AthenaDance:EID_ShallWe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shaolin": {
+ "templateId": "AthenaDance:EID_Shaolin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ShaolinSipUp": {
+ "templateId": "AthenaDance:EID_ShaolinSipUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sharpfang": {
+ "templateId": "AthenaDance:EID_Sharpfang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shindig_8W1AW": {
+ "templateId": "AthenaDance:EID_Shindig_8W1AW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EId_Shindig_Follower": {
+ "templateId": "AthenaDance:EId_Shindig_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EId_Shindig_Sync": {
+ "templateId": "AthenaDance:EId_Shindig_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shinobi": {
+ "templateId": "AthenaDance:EID_Shinobi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shiny": {
+ "templateId": "AthenaDance:EID_Shiny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Shorts": {
+ "templateId": "AthenaDance:EID_Shorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ShortScare": {
+ "templateId": "AthenaDance:EID_ShortScare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Showstopper": {
+ "templateId": "AthenaDance:EID_Showstopper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sienna": {
+ "templateId": "AthenaDance:EID_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SignSpinner": {
+ "templateId": "AthenaDance:EID_SignSpinner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SillyJumps": {
+ "templateId": "AthenaDance:EID_SillyJumps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SingAlong": {
+ "templateId": "AthenaDance:EID_SingAlong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SirWolf": {
+ "templateId": "AthenaDance:EID_SirWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SitPapayaComms": {
+ "templateId": "AthenaDance:EID_SitPapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Skeemote_K5J4J": {
+ "templateId": "AthenaDance:EID_Skeemote_K5J4J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SkeletonDance": {
+ "templateId": "AthenaDance:EID_SkeletonDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SkirmishFemale_I5OTJ": {
+ "templateId": "AthenaDance:EID_SkirmishFemale_I5OTJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SkirmishMale_FGPJ3": {
+ "templateId": "AthenaDance:EID_SkirmishMale_FGPJ3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sleek_S20CU": {
+ "templateId": "AthenaDance:EID_Sleek_S20CU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SleighIt": {
+ "templateId": "AthenaDance:EID_SleighIt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Slither_DAXD6": {
+ "templateId": "AthenaDance:EID_Slither_DAXD6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SlowClap": {
+ "templateId": "AthenaDance:EID_SlowClap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SmallFry_KFFA1": {
+ "templateId": "AthenaDance:EID_SmallFry_KFFA1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SmokeBombFail": {
+ "templateId": "AthenaDance:EID_SmokeBombFail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Snap": {
+ "templateId": "AthenaDance:EID_Snap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Snap_DeployPartyRift": {
+ "templateId": "AthenaDance:EID_Snap_DeployPartyRift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SneakingTraversal": {
+ "templateId": "AthenaDance:EID_SneakingTraversal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Snowfall_H6LU9": {
+ "templateId": "AthenaDance:EID_Snowfall_H6LU9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SnowGlobe": {
+ "templateId": "AthenaDance:EID_SnowGlobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SoccerJuggling": {
+ "templateId": "AthenaDance:EID_SoccerJuggling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SoccerTraversal": {
+ "templateId": "AthenaDance:EID_SoccerTraversal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Socks_XA9HM": {
+ "templateId": "AthenaDance:EID_Socks_XA9HM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SomethingStinks": {
+ "templateId": "AthenaDance:EID_SomethingStinks",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SpaceChimp": {
+ "templateId": "AthenaDance:EID_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sparkler": {
+ "templateId": "AthenaDance:EID_Sparkler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SpectacleWeb": {
+ "templateId": "AthenaDance:EID_SpectacleWeb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Spectrum": {
+ "templateId": "AthenaDance:EID_Spectrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SpeedRun": {
+ "templateId": "AthenaDance:EID_SpeedRun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Spiral": {
+ "templateId": "AthenaDance:EID_Spiral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Spooky": {
+ "templateId": "AthenaDance:EID_Spooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SpringRider": {
+ "templateId": "AthenaDance:EID_SpringRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sprinkler": {
+ "templateId": "AthenaDance:EID_Sprinkler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Spyglass": {
+ "templateId": "AthenaDance:EID_Spyglass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SpyMale": {
+ "templateId": "AthenaDance:EID_SpyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SquishyDance": {
+ "templateId": "AthenaDance:EID_SquishyDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SquishyMedley": {
+ "templateId": "AthenaDance:EID_SquishyMedley",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_StageBow": {
+ "templateId": "AthenaDance:EID_StageBow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Stallion": {
+ "templateId": "AthenaDance:EID_Stallion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_StatuePose": {
+ "templateId": "AthenaDance:EID_StatuePose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Steep": {
+ "templateId": "AthenaDance:EID_Steep",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_StepBreakdance": {
+ "templateId": "AthenaDance:EID_StepBreakdance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_StrawberryPilotKpop": {
+ "templateId": "AthenaDance:EID_StrawberryPilotKpop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_StringDance": {
+ "templateId": "AthenaDance:EID_StringDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SuckerPunch": {
+ "templateId": "AthenaDance:EID_SuckerPunch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Suits": {
+ "templateId": "AthenaDance:EID_Suits",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurst": {
+ "templateId": "AthenaDance:EID_SunBurst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurstCreative": {
+ "templateId": "AthenaDance:EID_SunBurstCreative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurstCreativeFloat": {
+ "templateId": "AthenaDance:EID_SunBurstCreativeFloat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurstCreativeFull": {
+ "templateId": "AthenaDance:EID_SunBurstCreativeFull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurstDance": {
+ "templateId": "AthenaDance:EID_SunBurstDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SunBurstHeart": {
+ "templateId": "AthenaDance:EID_SunBurstHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sunlit": {
+ "templateId": "AthenaDance:EID_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Sunrise_RPZ6M": {
+ "templateId": "AthenaDance:EID_Sunrise_RPZ6M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SuperheroBackflip": {
+ "templateId": "AthenaDance:EID_SuperheroBackflip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Survivorsault_NJ7WC": {
+ "templateId": "AthenaDance:EID_Survivorsault_NJ7WC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Suspenders": {
+ "templateId": "AthenaDance:EID_Suspenders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SweetToss": {
+ "templateId": "AthenaDance:EID_SweetToss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SwimDance": {
+ "templateId": "AthenaDance:EID_SwimDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SwingDance": {
+ "templateId": "AthenaDance:EID_SwingDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SwipeIt": {
+ "templateId": "AthenaDance:EID_SwipeIt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Swish": {
+ "templateId": "AthenaDance:EID_Swish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_SwitchTheWitch": {
+ "templateId": "AthenaDance:EID_SwitchTheWitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TacoTimeDance": {
+ "templateId": "AthenaDance:EID_TacoTimeDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TaiChi": {
+ "templateId": "AthenaDance:EID_TaiChi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TakeTheElf": {
+ "templateId": "AthenaDance:EID_TakeTheElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TakeTheL": {
+ "templateId": "AthenaDance:EID_TakeTheL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TakeTheW": {
+ "templateId": "AthenaDance:EID_TakeTheW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TalkingGesture": {
+ "templateId": "AthenaDance:EID_TalkingGesture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Tally": {
+ "templateId": "AthenaDance:EID_Tally",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Tapestry": {
+ "templateId": "AthenaDance:EID_Tapestry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TapShuffle": {
+ "templateId": "AthenaDance:EID_TapShuffle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Tar_S9YVE": {
+ "templateId": "AthenaDance:EID_Tar_S9YVE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TeamMonster": {
+ "templateId": "AthenaDance:EID_TeamMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TeamRobot": {
+ "templateId": "AthenaDance:EID_TeamRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TemperTantrum": {
+ "templateId": "AthenaDance:EID_TemperTantrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Temple": {
+ "templateId": "AthenaDance:EID_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TennisPaddle": {
+ "templateId": "AthenaDance:EID_TennisPaddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Terminal": {
+ "templateId": "AthenaDance:EID_Terminal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Textile_3O8QG": {
+ "templateId": "AthenaDance:EID_Textile_3O8QG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Texting": {
+ "templateId": "AthenaDance:EID_Texting",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TheShow": {
+ "templateId": "AthenaDance:EID_TheShow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ThighSlapper": {
+ "templateId": "AthenaDance:EID_ThighSlapper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Thrive": {
+ "templateId": "AthenaDance:EID_Thrive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ThumbsDown": {
+ "templateId": "AthenaDance:EID_ThumbsDown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ThumbsUp": {
+ "templateId": "AthenaDance:EID_ThumbsUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Tidy": {
+ "templateId": "AthenaDance:EID_Tidy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TimeOut": {
+ "templateId": "AthenaDance:EID_TimeOut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TimetravelBackflip": {
+ "templateId": "AthenaDance:EID_TimetravelBackflip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TinyTremors": {
+ "templateId": "AthenaDance:EID_TinyTremors",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TnTina": {
+ "templateId": "AthenaDance:EID_TnTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Toasted": {
+ "templateId": "AthenaDance:EID_Toasted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Toasted_Follower": {
+ "templateId": "AthenaDance:EID_Toasted_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Toasted_Sync": {
+ "templateId": "AthenaDance:EID_Toasted_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Tonal_51QI9": {
+ "templateId": "AthenaDance:EID_Tonal_51QI9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TorchSnuffer": {
+ "templateId": "AthenaDance:EID_TorchSnuffer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Touchdown": {
+ "templateId": "AthenaDance:EID_Touchdown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TourBus": {
+ "templateId": "AthenaDance:EID_TourBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TowerSentinel": {
+ "templateId": "AthenaDance:EID_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TPose": {
+ "templateId": "AthenaDance:EID_TPose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Traction": {
+ "templateId": "AthenaDance:EID_Traction",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TreadmillDance": {
+ "templateId": "AthenaDance:EID_TreadmillDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TreeLightPose": {
+ "templateId": "AthenaDance:EID_TreeLightPose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Trifle": {
+ "templateId": "AthenaDance:EID_Trifle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TripleScoop": {
+ "templateId": "AthenaDance:EID_TripleScoop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Triumphant": {
+ "templateId": "AthenaDance:EID_Triumphant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Troops": {
+ "templateId": "AthenaDance:EID_Troops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TrophyCelebration": {
+ "templateId": "AthenaDance:EID_TrophyCelebration",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TrophyCelebrationFNCS": {
+ "templateId": "AthenaDance:EID_TrophyCelebrationFNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TruckerHorn": {
+ "templateId": "AthenaDance:EID_TruckerHorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TrueLove": {
+ "templateId": "AthenaDance:EID_TrueLove",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Turtleneck": {
+ "templateId": "AthenaDance:EID_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Twist": {
+ "templateId": "AthenaDance:EID_Twist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistDaytona": {
+ "templateId": "AthenaDance:EID_TwistDaytona",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistEternity": {
+ "templateId": "AthenaDance:EID_TwistEternity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistEternity_Sync": {
+ "templateId": "AthenaDance:EID_TwistEternity_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistEternity_Sync_Follower": {
+ "templateId": "AthenaDance:EID_TwistEternity_Sync_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistFire_I2VTA": {
+ "templateId": "AthenaDance:EID_TwistFire_I2VTA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistRaisin": {
+ "templateId": "AthenaDance:EID_TwistRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistWasp_Follower": {
+ "templateId": "AthenaDance:EID_TwistWasp_Follower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistWasp_Sync": {
+ "templateId": "AthenaDance:EID_TwistWasp_Sync",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwistWasp_T2I4J": {
+ "templateId": "AthenaDance:EID_TwistWasp_T2I4J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_TwoHype": {
+ "templateId": "AthenaDance:EID_TwoHype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Typhoon_VO9OF": {
+ "templateId": "AthenaDance:EID_Typhoon_VO9OF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_UkuleleTime": {
+ "templateId": "AthenaDance:EID_UkuleleTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_UltraEnergize": {
+ "templateId": "AthenaDance:EID_UltraEnergize",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Ultralight": {
+ "templateId": "AthenaDance:EID_Ultralight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_UnicycleTraversal": {
+ "templateId": "AthenaDance:EID_UnicycleTraversal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Unified": {
+ "templateId": "AthenaDance:EID_Unified",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Uproar_496SC": {
+ "templateId": "AthenaDance:EID_Uproar_496SC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Veiled": {
+ "templateId": "AthenaDance:EID_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Venice": {
+ "templateId": "AthenaDance:EID_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Vertigo": {
+ "templateId": "AthenaDance:EID_Vertigo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_VikingHorn": {
+ "templateId": "AthenaDance:EID_VikingHorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Viral": {
+ "templateId": "AthenaDance:EID_Viral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Vivid_I434X": {
+ "templateId": "AthenaDance:EID_Vivid_I434X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WackyWavy": {
+ "templateId": "AthenaDance:EID_WackyWavy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WalkieWalk": {
+ "templateId": "AthenaDance:EID_WalkieWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Warehouse": {
+ "templateId": "AthenaDance:EID_Warehouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WatchThis": {
+ "templateId": "AthenaDance:EID_WatchThis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Wave": {
+ "templateId": "AthenaDance:EID_Wave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WaveDance": {
+ "templateId": "AthenaDance:EID_WaveDance",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WavePapayaComms": {
+ "templateId": "AthenaDance:EID_WavePapayaComms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Wayfare": {
+ "templateId": "AthenaDance:EID_Wayfare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WellPlayed": {
+ "templateId": "AthenaDance:EID_WellPlayed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WhereIsMatt": {
+ "templateId": "AthenaDance:EID_WhereIsMatt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Whirlwind": {
+ "templateId": "AthenaDance:EID_Whirlwind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Wiggle": {
+ "templateId": "AthenaDance:EID_Wiggle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WiggleRaisin": {
+ "templateId": "AthenaDance:EID_WiggleRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WindmillFloss": {
+ "templateId": "AthenaDance:EID_WindmillFloss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WIR": {
+ "templateId": "AthenaDance:EID_WIR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Wizard": {
+ "templateId": "AthenaDance:EID_Wizard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WolfHowl": {
+ "templateId": "AthenaDance:EID_WolfHowl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Worm": {
+ "templateId": "AthenaDance:EID_Worm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WristFlick": {
+ "templateId": "AthenaDance:EID_WristFlick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_WrongWay_M47AL": {
+ "templateId": "AthenaDance:EID_WrongWay_M47AL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_YayExcited": {
+ "templateId": "AthenaDance:EID_YayExcited",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Yeet": {
+ "templateId": "AthenaDance:EID_Yeet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_YouBoreMe": {
+ "templateId": "AthenaDance:EID_YouBoreMe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_YoureAwesome": {
+ "templateId": "AthenaDance:EID_YoureAwesome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_YouThere": {
+ "templateId": "AthenaDance:EID_YouThere",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Zest_Q1K5V": {
+ "templateId": "AthenaDance:EID_Zest_Q1K5V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Zippy": {
+ "templateId": "AthenaDance:EID_Zippy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_Zombie": {
+ "templateId": "AthenaDance:EID_Zombie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ZombieElastic": {
+ "templateId": "AthenaDance:EID_ZombieElastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:EID_ZombieWalk": {
+ "templateId": "AthenaDance:EID_ZombieWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_100APlus": {
+ "templateId": "AthenaDance:Emoji_100APlus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_1HP": {
+ "templateId": "AthenaDance:Emoji_1HP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_200IQPlay": {
+ "templateId": "AthenaDance:Emoji_200IQPlay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_200m": {
+ "templateId": "AthenaDance:Emoji_200m",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_4LeafClover": {
+ "templateId": "AthenaDance:Emoji_4LeafClover",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Ace": {
+ "templateId": "AthenaDance:Emoji_Ace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Alarm": {
+ "templateId": "AthenaDance:Emoji_Alarm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Angel": {
+ "templateId": "AthenaDance:Emoji_Angel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_AngryVolcano": {
+ "templateId": "AthenaDance:Emoji_AngryVolcano",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_APlus": {
+ "templateId": "AthenaDance:Emoji_APlus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ArmFlex": {
+ "templateId": "AthenaDance:Emoji_ArmFlex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_AshtonChicago": {
+ "templateId": "AthenaDance:Emoji_AshtonChicago",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_AshtonTurbo": {
+ "templateId": "AthenaDance:Emoji_AshtonTurbo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Awww": {
+ "templateId": "AthenaDance:Emoji_Awww",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_AztecMask": {
+ "templateId": "AthenaDance:Emoji_AztecMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_BabySeal": {
+ "templateId": "AthenaDance:Emoji_BabySeal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_BadApple": {
+ "templateId": "AthenaDance:Emoji_BadApple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Baited": {
+ "templateId": "AthenaDance:Emoji_Baited",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Banana": {
+ "templateId": "AthenaDance:Emoji_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Bang": {
+ "templateId": "AthenaDance:Emoji_Bang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_BattleBus": {
+ "templateId": "AthenaDance:Emoji_BattleBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Birthday2018": {
+ "templateId": "AthenaDance:Emoji_Birthday2018",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Birthday2019": {
+ "templateId": "AthenaDance:Emoji_Birthday2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_BlackCat": {
+ "templateId": "AthenaDance:Emoji_BlackCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_BoogieBomb": {
+ "templateId": "AthenaDance:Emoji_BoogieBomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Boombox": {
+ "templateId": "AthenaDance:Emoji_Boombox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Bullseye": {
+ "templateId": "AthenaDance:Emoji_Bullseye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Bush": {
+ "templateId": "AthenaDance:Emoji_Bush",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Camera": {
+ "templateId": "AthenaDance:Emoji_Camera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Camper": {
+ "templateId": "AthenaDance:Emoji_Camper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Celebrate": {
+ "templateId": "AthenaDance:Emoji_Celebrate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Chicken": {
+ "templateId": "AthenaDance:Emoji_Chicken",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Clapping": {
+ "templateId": "AthenaDance:Emoji_Clapping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Clown": {
+ "templateId": "AthenaDance:Emoji_Clown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Comm": {
+ "templateId": "AthenaDance:Emoji_Comm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_CoolPepper": {
+ "templateId": "AthenaDance:Emoji_CoolPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Crabby": {
+ "templateId": "AthenaDance:Emoji_Crabby",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Crackshot": {
+ "templateId": "AthenaDance:Emoji_Crackshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_CrossSwords": {
+ "templateId": "AthenaDance:Emoji_CrossSwords",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Cuddle": {
+ "templateId": "AthenaDance:Emoji_Cuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_CuddleTeamHead": {
+ "templateId": "AthenaDance:Emoji_CuddleTeamHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_DealWithIt": {
+ "templateId": "AthenaDance:Emoji_DealWithIt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Disco": {
+ "templateId": "AthenaDance:Emoji_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_DJYonder": {
+ "templateId": "AthenaDance:Emoji_DJYonder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_DriftHead": {
+ "templateId": "AthenaDance:Emoji_DriftHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_DurrburgerHead": {
+ "templateId": "AthenaDance:Emoji_DurrburgerHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_DurrrBurger": {
+ "templateId": "AthenaDance:Emoji_DurrrBurger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Dynamite": {
+ "templateId": "AthenaDance:Emoji_Dynamite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Embarrassed": {
+ "templateId": "AthenaDance:Emoji_Embarrassed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Exclamation": {
+ "templateId": "AthenaDance:Emoji_Exclamation",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Explosion": {
+ "templateId": "AthenaDance:Emoji_Explosion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Fiery": {
+ "templateId": "AthenaDance:Emoji_Fiery",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_FistBump": {
+ "templateId": "AthenaDance:Emoji_FistBump",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_FKey": {
+ "templateId": "AthenaDance:Emoji_FKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_FlamingRage": {
+ "templateId": "AthenaDance:Emoji_FlamingRage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_FoamFinger": {
+ "templateId": "AthenaDance:Emoji_FoamFinger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Fortnitemares": {
+ "templateId": "AthenaDance:Emoji_Fortnitemares",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GG": {
+ "templateId": "AthenaDance:Emoji_GG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GGJellyfish": {
+ "templateId": "AthenaDance:Emoji_GGJellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GGWreath": {
+ "templateId": "AthenaDance:Emoji_GGWreath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Ghost": {
+ "templateId": "AthenaDance:Emoji_Ghost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GingerbreadHappy": {
+ "templateId": "AthenaDance:Emoji_GingerbreadHappy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GingerbreadMad": {
+ "templateId": "AthenaDance:Emoji_GingerbreadMad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Go": {
+ "templateId": "AthenaDance:Emoji_Go",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_GoodGame": {
+ "templateId": "AthenaDance:Emoji_GoodGame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Headshot": {
+ "templateId": "AthenaDance:Emoji_Headshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Heartbroken": {
+ "templateId": "AthenaDance:Emoji_Heartbroken",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_HeartHands": {
+ "templateId": "AthenaDance:Emoji_HeartHands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Hoarder": {
+ "templateId": "AthenaDance:Emoji_Hoarder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_HotChocolate": {
+ "templateId": "AthenaDance:Emoji_HotChocolate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_HotDawg": {
+ "templateId": "AthenaDance:Emoji_HotDawg",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_HuskWow": {
+ "templateId": "AthenaDance:Emoji_HuskWow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_IceHeart": {
+ "templateId": "AthenaDance:Emoji_IceHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_InLove": {
+ "templateId": "AthenaDance:Emoji_InLove",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ISeeYou": {
+ "templateId": "AthenaDance:Emoji_ISeeYou",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Kaboom": {
+ "templateId": "AthenaDance:Emoji_Kaboom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_LifePreserver": {
+ "templateId": "AthenaDance:Emoji_LifePreserver",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_LOL": {
+ "templateId": "AthenaDance:Emoji_LOL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_LoveRanger": {
+ "templateId": "AthenaDance:Emoji_LoveRanger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Lucky": {
+ "templateId": "AthenaDance:Emoji_Lucky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Majestic": {
+ "templateId": "AthenaDance:Emoji_Majestic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Meet": {
+ "templateId": "AthenaDance:Emoji_Meet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Mistletoe": {
+ "templateId": "AthenaDance:Emoji_Mistletoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Mittens": {
+ "templateId": "AthenaDance:Emoji_Mittens",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_MVP": {
+ "templateId": "AthenaDance:Emoji_MVP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Number1": {
+ "templateId": "AthenaDance:Emoji_Number1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_OctoPirate": {
+ "templateId": "AthenaDance:Emoji_OctoPirate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_OnFire": {
+ "templateId": "AthenaDance:Emoji_OnFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PalmTree": {
+ "templateId": "AthenaDance:Emoji_PalmTree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PeaceSign": {
+ "templateId": "AthenaDance:Emoji_PeaceSign",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Penguin": {
+ "templateId": "AthenaDance:Emoji_Penguin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PickAxe": {
+ "templateId": "AthenaDance:Emoji_PickAxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Pizza": {
+ "templateId": "AthenaDance:Emoji_Pizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Placeholder": {
+ "templateId": "AthenaDance:Emoji_Placeholder",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Plotting": {
+ "templateId": "AthenaDance:Emoji_Plotting",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Plunger": {
+ "templateId": "AthenaDance:Emoji_Plunger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PoolParty": {
+ "templateId": "AthenaDance:Emoji_PoolParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Popcorn": {
+ "templateId": "AthenaDance:Emoji_Popcorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Positivity": {
+ "templateId": "AthenaDance:Emoji_Positivity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PotatoAim": {
+ "templateId": "AthenaDance:Emoji_PotatoAim",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Potion": {
+ "templateId": "AthenaDance:Emoji_Potion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_PotOfGold": {
+ "templateId": "AthenaDance:Emoji_PotOfGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Prickly": {
+ "templateId": "AthenaDance:Emoji_Prickly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Rabid": {
+ "templateId": "AthenaDance:Emoji_Rabid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Rage": {
+ "templateId": "AthenaDance:Emoji_Rage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Rainbow": {
+ "templateId": "AthenaDance:Emoji_Rainbow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RedKnight": {
+ "templateId": "AthenaDance:Emoji_RedKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Rekt": {
+ "templateId": "AthenaDance:Emoji_Rekt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RexHead": {
+ "templateId": "AthenaDance:Emoji_RexHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RIP": {
+ "templateId": "AthenaDance:Emoji_RIP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Rock": {
+ "templateId": "AthenaDance:Emoji_Rock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RocketRide": {
+ "templateId": "AthenaDance:Emoji_RocketRide",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RockOn": {
+ "templateId": "AthenaDance:Emoji_RockOn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_RustLord": {
+ "templateId": "AthenaDance:Emoji_RustLord",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S10Lvl100": {
+ "templateId": "AthenaDance:Emoji_S10Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_CheckeredFlag": {
+ "templateId": "AthenaDance:Emoji_S11_CheckeredFlag",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_Headshot": {
+ "templateId": "AthenaDance:Emoji_S11_Headshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_HotDrop": {
+ "templateId": "AthenaDance:Emoji_S11_HotDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_Kiss": {
+ "templateId": "AthenaDance:Emoji_S11_Kiss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_NoScope": {
+ "templateId": "AthenaDance:Emoji_S11_NoScope",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_SlurpGG": {
+ "templateId": "AthenaDance:Emoji_S11_SlurpGG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_Sweater": {
+ "templateId": "AthenaDance:Emoji_S11_Sweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_UTurn": {
+ "templateId": "AthenaDance:Emoji_S11_UTurn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_Wink": {
+ "templateId": "AthenaDance:Emoji_S11_Wink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S11_WinterSnowball": {
+ "templateId": "AthenaDance:Emoji_S11_WinterSnowball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_AdventureGirl": {
+ "templateId": "AthenaDance:Emoji_S12_AdventureGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_Alter": {
+ "templateId": "AthenaDance:Emoji_S12_Alter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_BananaAgent": {
+ "templateId": "AthenaDance:Emoji_S12_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_Ego": {
+ "templateId": "AthenaDance:Emoji_S12_Ego",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_FNCS": {
+ "templateId": "AthenaDance:Emoji_S12_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_Meowscles": {
+ "templateId": "AthenaDance:Emoji_S12_Meowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_Midas": {
+ "templateId": "AthenaDance:Emoji_S12_Midas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_SkullDude": {
+ "templateId": "AthenaDance:Emoji_S12_SkullDude",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S12_TNTina": {
+ "templateId": "AthenaDance:Emoji_S12_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_BlackKnight": {
+ "templateId": "AthenaDance:Emoji_S13_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_FNCS": {
+ "templateId": "AthenaDance:Emoji_S13_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_MechanicalEngineer": {
+ "templateId": "AthenaDance:Emoji_S13_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_OceanRider": {
+ "templateId": "AthenaDance:Emoji_S13_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_ProfessorPup": {
+ "templateId": "AthenaDance:Emoji_S13_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_RacerZero": {
+ "templateId": "AthenaDance:Emoji_S13_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_SandCastle": {
+ "templateId": "AthenaDance:Emoji_S13_SandCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S13_TacticalScuba": {
+ "templateId": "AthenaDance:Emoji_S13_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_3rd_Birthday": {
+ "templateId": "AthenaDance:Emoji_S14_3rd_Birthday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_BestFriends": {
+ "templateId": "AthenaDance:Emoji_S14_BestFriends",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Bomb": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Bomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Butterfly": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Butterfly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Cupcake": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Cupcake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Disguise": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Disguise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_DogAndBones": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_DogAndBones",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Ducky": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Ducky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Fire": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Fire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_FishBone": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_FishBone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Flask": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Flask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Fly": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Fly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_GreenSkull": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_GreenSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Molecule": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Molecule",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_PinkArrow": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_PinkArrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Snail": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Snail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Spider": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Spider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Taco": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Taco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Umbrella": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Umbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Water": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Water",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Elastic_Web": {
+ "templateId": "AthenaDance:Emoji_S14_Elastic_Web",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_FNCS": {
+ "templateId": "AthenaDance:Emoji_S14_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Fortnitemares2020": {
+ "templateId": "AthenaDance:Emoji_S14_Fortnitemares2020",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_FortnitemaresMonkeyToy": {
+ "templateId": "AthenaDance:Emoji_S14_FortnitemaresMonkeyToy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerDate": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerGrape": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerHoneyDew": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerHoneyDew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerMango": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerSquash": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerTapas": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerTomato": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_HighTowerWasabi": {
+ "templateId": "AthenaDance:Emoji_S14_HighTowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Horseshoe": {
+ "templateId": "AthenaDance:Emoji_S14_Horseshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_KingOfTheHill": {
+ "templateId": "AthenaDance:Emoji_S14_KingOfTheHill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_LlamaSurprise": {
+ "templateId": "AthenaDance:Emoji_S14_LlamaSurprise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_Medal": {
+ "templateId": "AthenaDance:Emoji_S14_Medal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_PS_PlusPack_11": {
+ "templateId": "AthenaDance:Emoji_S14_PS_PlusPack_11",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_RebootAFriend": {
+ "templateId": "AthenaDance:Emoji_S14_RebootAFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S14_RLxFN": {
+ "templateId": "AthenaDance:Emoji_S14_RLxFN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_AncientGladiator": {
+ "templateId": "AthenaDance:Emoji_S15_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_CosmosA": {
+ "templateId": "AthenaDance:Emoji_S15_CosmosA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_CosmosB": {
+ "templateId": "AthenaDance:Emoji_S15_CosmosB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Flapjack": {
+ "templateId": "AthenaDance:Emoji_S15_Flapjack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_FNCS": {
+ "templateId": "AthenaDance:Emoji_S15_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_FuturePink": {
+ "templateId": "AthenaDance:Emoji_S15_FuturePink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_FuturePinkOrange": {
+ "templateId": "AthenaDance:Emoji_S15_FuturePinkOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_FutureSamurai": {
+ "templateId": "AthenaDance:Emoji_S15_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Holiday2": {
+ "templateId": "AthenaDance:Emoji_S15_Holiday2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Holiday3": {
+ "templateId": "AthenaDance:Emoji_S15_Holiday3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Holidays2020": {
+ "templateId": "AthenaDance:Emoji_S15_Holidays2020",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Lexa": {
+ "templateId": "AthenaDance:Emoji_S15_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Nightmare": {
+ "templateId": "AthenaDance:Emoji_S15_Nightmare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_PS_PlusPack_2021": {
+ "templateId": "AthenaDance:Emoji_S15_PS_PlusPack_2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_SpaceFighter": {
+ "templateId": "AthenaDance:Emoji_S15_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S15_Valentines2021": {
+ "templateId": "AthenaDance:Emoji_S15_Valentines2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_AgentJonesy": {
+ "templateId": "AthenaDance:Emoji_S16_AgentJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Alt_1": {
+ "templateId": "AthenaDance:Emoji_S16_Alt_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Alt_2": {
+ "templateId": "AthenaDance:Emoji_S16_Alt_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Bicycle": {
+ "templateId": "AthenaDance:Emoji_S16_Bicycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Bicycle2": {
+ "templateId": "AthenaDance:Emoji_S16_Bicycle2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_BuffCat": {
+ "templateId": "AthenaDance:Emoji_S16_BuffCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_ChickenWarrior": {
+ "templateId": "AthenaDance:Emoji_S16_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_CubeNinja": {
+ "templateId": "AthenaDance:Emoji_S16_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_DinoHunter": {
+ "templateId": "AthenaDance:Emoji_S16_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_FlapjackWrangler": {
+ "templateId": "AthenaDance:Emoji_S16_FlapjackWrangler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_FNCS": {
+ "templateId": "AthenaDance:Emoji_S16_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_MaskedWarrior": {
+ "templateId": "AthenaDance:Emoji_S16_MaskedWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Obsidian": {
+ "templateId": "AthenaDance:Emoji_S16_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Sentinel": {
+ "templateId": "AthenaDance:Emoji_S16_Sentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S16_Temple": {
+ "templateId": "AthenaDance:Emoji_S16_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_AlienTrooper": {
+ "templateId": "AthenaDance:Emoji_S17_AlienTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Alt_1": {
+ "templateId": "AthenaDance:Emoji_S17_Alt_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Alt_2": {
+ "templateId": "AthenaDance:Emoji_S17_Alt_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_AngryCow": {
+ "templateId": "AthenaDance:Emoji_S17_AngryCow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Antique": {
+ "templateId": "AthenaDance:Emoji_S17_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Believer": {
+ "templateId": "AthenaDance:Emoji_S17_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Emperor": {
+ "templateId": "AthenaDance:Emoji_S17_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Faux": {
+ "templateId": "AthenaDance:Emoji_S17_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Fest": {
+ "templateId": "AthenaDance:Emoji_S17_Fest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_FNCS": {
+ "templateId": "AthenaDance:Emoji_S17_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_FNCS_AllStars": {
+ "templateId": "AthenaDance:Emoji_S17_FNCS_AllStars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_FriendFrenzy": {
+ "templateId": "AthenaDance:Emoji_S17_FriendFrenzy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_ImposterWink": {
+ "templateId": "AthenaDance:Emoji_S17_ImposterWink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Island": {
+ "templateId": "AthenaDance:Emoji_S17_Island",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_ReferAfriendTaxi": {
+ "templateId": "AthenaDance:Emoji_S17_ReferAfriendTaxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_RiftTour": {
+ "templateId": "AthenaDance:Emoji_S17_RiftTour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Ruckus": {
+ "templateId": "AthenaDance:Emoji_S17_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Soccer": {
+ "templateId": "AthenaDance:Emoji_S17_Soccer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_StreamElementsBeefBoss": {
+ "templateId": "AthenaDance:Emoji_S17_StreamElementsBeefBoss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_StreamElementsDJ": {
+ "templateId": "AthenaDance:Emoji_S17_StreamElementsDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_StreamElementsPeely": {
+ "templateId": "AthenaDance:Emoji_S17_StreamElementsPeely",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_StreamElementsRaptor": {
+ "templateId": "AthenaDance:Emoji_S17_StreamElementsRaptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_StreamElementsSlurpMonster": {
+ "templateId": "AthenaDance:Emoji_S17_StreamElementsSlurpMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S17_Summer2021": {
+ "templateId": "AthenaDance:Emoji_S17_Summer2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_AnimToonFishstick": {
+ "templateId": "AthenaDance:Emoji_S18_AnimToonFishstick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_CerealBox": {
+ "templateId": "AthenaDance:Emoji_S18_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Clash": {
+ "templateId": "AthenaDance:Emoji_S18_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ClashV_I1DF9": {
+ "templateId": "AthenaDance:Emoji_S18_ClashV_I1DF9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_CubeQueen": {
+ "templateId": "AthenaDance:Emoji_S18_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Division": {
+ "templateId": "AthenaDance:Emoji_S18_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_DriftDash": {
+ "templateId": "AthenaDance:Emoji_S18_DriftDash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_FNBirthday_G7ZPV": {
+ "templateId": "AthenaDance:Emoji_S18_FNBirthday_G7ZPV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_FNCS": {
+ "templateId": "AthenaDance:Emoji_S18_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_FortnitemaresCup": {
+ "templateId": "AthenaDance:Emoji_S18_FortnitemaresCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_F_Headband_S": {
+ "templateId": "AthenaDance:Emoji_S18_F_Headband_S",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_GhostHunter": {
+ "templateId": "AthenaDance:Emoji_S18_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_GrandRoyaleCompetition": {
+ "templateId": "AthenaDance:Emoji_S18_GrandRoyaleCompetition",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Headband": {
+ "templateId": "AthenaDance:Emoji_S18_Headband",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Headband_K": {
+ "templateId": "AthenaDance:Emoji_S18_Headband_K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Headband_S": {
+ "templateId": "AthenaDance:Emoji_S18_Headband_S",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_Italian": {
+ "templateId": "AthenaDance:Emoji_S18_Italian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_PunkKoi": {
+ "templateId": "AthenaDance:Emoji_S18_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_RenegadeSkull": {
+ "templateId": "AthenaDance:Emoji_S18_RenegadeSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_SadToonFishstick": {
+ "templateId": "AthenaDance:Emoji_S18_SadToonFishstick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_SpaceChimp": {
+ "templateId": "AthenaDance:Emoji_S18_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_TeriyakiFishToon": {
+ "templateId": "AthenaDance:Emoji_S18_TeriyakiFishToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Banana": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_BaseballBats": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_BaseballBats",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Brain": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Brain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Burger": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Burger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Duck": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Duck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Eye": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Eye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_FingerWalk": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_FingerWalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_GG": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_GG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Hand": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Hand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Head": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Head",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Pumpkin": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Pumpkin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Scythe": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Scythe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S18_ZombieElastic_Z": {
+ "templateId": "AthenaDance:Emoji_S18_ZombieElastic_Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_AnimWinterFest2021": {
+ "templateId": "AthenaDance:Emoji_S19_AnimWinterFest2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_BlizzardBomber": {
+ "templateId": "AthenaDance:Emoji_S19_BlizzardBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_BlueStriker": {
+ "templateId": "AthenaDance:Emoji_S19_BlueStriker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_BuffLlama": {
+ "templateId": "AthenaDance:Emoji_S19_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FlowerSkeleton": {
+ "templateId": "AthenaDance:Emoji_S19_FlowerSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FNCS_AnimatedBeep": {
+ "templateId": "AthenaDance:Emoji_S19_FNCS_AnimatedBeep",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FNCS_BusBounce": {
+ "templateId": "AthenaDance:Emoji_S19_FNCS_BusBounce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FNCS_Drops": {
+ "templateId": "AthenaDance:Emoji_S19_FNCS_Drops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FNCS_GOAT": {
+ "templateId": "AthenaDance:Emoji_S19_FNCS_GOAT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FNCS_PeelyHype": {
+ "templateId": "AthenaDance:Emoji_S19_FNCS_PeelyHype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_FootballDrops": {
+ "templateId": "AthenaDance:Emoji_S19_FootballDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_Gumball": {
+ "templateId": "AthenaDance:Emoji_S19_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_IslandNomad": {
+ "templateId": "AthenaDance:Emoji_S19_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_LoneWolf": {
+ "templateId": "AthenaDance:Emoji_S19_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_LoveQueenCreative": {
+ "templateId": "AthenaDance:Emoji_S19_LoveQueenCreative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_Motorcyclist": {
+ "templateId": "AthenaDance:Emoji_S19_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_NeoVersa": {
+ "templateId": "AthenaDance:Emoji_S19_NeoVersa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_ParallelSenses": {
+ "templateId": "AthenaDance:Emoji_S19_ParallelSenses",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_ParallelSling": {
+ "templateId": "AthenaDance:Emoji_S19_ParallelSling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_ShowdownPanda": {
+ "templateId": "AthenaDance:Emoji_S19_ShowdownPanda",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_ShowdownReaper": {
+ "templateId": "AthenaDance:Emoji_S19_ShowdownReaper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_ShowdownTomato": {
+ "templateId": "AthenaDance:Emoji_S19_ShowdownTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_TouchdownDrops": {
+ "templateId": "AthenaDance:Emoji_S19_TouchdownDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_Turtleneck": {
+ "templateId": "AthenaDance:Emoji_S19_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S19_WinterFestCreative": {
+ "templateId": "AthenaDance:Emoji_S19_WinterFestCreative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Alfredo_Tournament": {
+ "templateId": "AthenaDance:Emoji_S20_Alfredo_Tournament",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_BestFriendzyV2": {
+ "templateId": "AthenaDance:Emoji_S20_BestFriendzyV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_BunnyBrawl": {
+ "templateId": "AthenaDance:Emoji_S20_BunnyBrawl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_CactusDancer": {
+ "templateId": "AthenaDance:Emoji_S20_CactusDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Cadet": {
+ "templateId": "AthenaDance:Emoji_S20_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Cheers_Competitive": {
+ "templateId": "AthenaDance:Emoji_S20_Cheers_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_CubeKing": {
+ "templateId": "AthenaDance:Emoji_S20_CubeKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_CyberArmor": {
+ "templateId": "AthenaDance:Emoji_S20_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_EyeRoll": {
+ "templateId": "AthenaDance:Emoji_S20_EyeRoll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_FNCSDrops": {
+ "templateId": "AthenaDance:Emoji_S20_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_CampFire": {
+ "templateId": "AthenaDance:Emoji_S20_GG_CampFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Cube": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Cube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_CuddleTeam": {
+ "templateId": "AthenaDance:Emoji_S20_GG_CuddleTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Fire": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Fire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Gas": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Gas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Gold": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Gold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Ice_Version1": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Ice_Version1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Ice_Version2": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Ice_Version2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Pizza": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Pizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Point": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Point",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_GG_Smooth": {
+ "templateId": "AthenaDance:Emoji_S20_GG_Smooth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_JourneyMentor": {
+ "templateId": "AthenaDance:Emoji_S20_JourneyMentor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_KnightCat": {
+ "templateId": "AthenaDance:Emoji_S20_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Lyrical": {
+ "templateId": "AthenaDance:Emoji_S20_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Mystic": {
+ "templateId": "AthenaDance:Emoji_S20_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_NeedLoot": {
+ "templateId": "AthenaDance:Emoji_S20_NeedLoot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_NeonGG_Competitive": {
+ "templateId": "AthenaDance:Emoji_S20_NeonGG_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_OrderGuard": {
+ "templateId": "AthenaDance:Emoji_S20_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Shrug": {
+ "templateId": "AthenaDance:Emoji_S20_Shrug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Sienna": {
+ "templateId": "AthenaDance:Emoji_S20_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Sweaty": {
+ "templateId": "AthenaDance:Emoji_S20_Sweaty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S20_Teknique_Competitive": {
+ "templateId": "AthenaDance:Emoji_S20_Teknique_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_BlueJay": {
+ "templateId": "AthenaDance:Emoji_S21_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Canary": {
+ "templateId": "AthenaDance:Emoji_S21_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_CatDrop": {
+ "templateId": "AthenaDance:Emoji_S21_CatDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Collectable": {
+ "templateId": "AthenaDance:Emoji_S21_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_CritterDrop": {
+ "templateId": "AthenaDance:Emoji_S21_CritterDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_DarkStorm": {
+ "templateId": "AthenaDance:Emoji_S21_DarkStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Ensemble_Grey": {
+ "templateId": "AthenaDance:Emoji_S21_Ensemble_Grey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Ensemble_Maroon": {
+ "templateId": "AthenaDance:Emoji_S21_Ensemble_Maroon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Ensemble_Seal": {
+ "templateId": "AthenaDance:Emoji_S21_Ensemble_Seal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Ensemble_Snake": {
+ "templateId": "AthenaDance:Emoji_S21_Ensemble_Snake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Flappy": {
+ "templateId": "AthenaDance:Emoji_S21_Flappy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_FNCS": {
+ "templateId": "AthenaDance:Emoji_S21_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Fuchsia": {
+ "templateId": "AthenaDance:Emoji_S21_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Ketchup": {
+ "templateId": "AthenaDance:Emoji_S21_Ketchup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Lancelot": {
+ "templateId": "AthenaDance:Emoji_S21_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_PinkWidow": {
+ "templateId": "AthenaDance:Emoji_S21_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_RainbowRoyale": {
+ "templateId": "AthenaDance:Emoji_S21_RainbowRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Realm": {
+ "templateId": "AthenaDance:Emoji_S21_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_ReferFriend": {
+ "templateId": "AthenaDance:Emoji_S21_ReferFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_RL": {
+ "templateId": "AthenaDance:Emoji_S21_RL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Stamina_Cat": {
+ "templateId": "AthenaDance:Emoji_S21_Stamina_Cat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Stamina_Female": {
+ "templateId": "AthenaDance:Emoji_S21_Stamina_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Stamina_Smart": {
+ "templateId": "AthenaDance:Emoji_S21_Stamina_Smart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Stamina_Vigor": {
+ "templateId": "AthenaDance:Emoji_S21_Stamina_Vigor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Summer_GG": {
+ "templateId": "AthenaDance:Emoji_S21_Summer_GG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_Drift": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_Komplex": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_Komplex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_MechaCuddle": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_MechaCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_Powerchord1": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_Powerchord1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_Powerchord2": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_Powerchord2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S21_Wavy_TropicalZoey": {
+ "templateId": "AthenaDance:Emoji_S21_Wavy_TropicalZoey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_BadBear": {
+ "templateId": "AthenaDance:Emoji_S22_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Bites": {
+ "templateId": "AthenaDance:Emoji_S22_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Candor": {
+ "templateId": "AthenaDance:Emoji_S22_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_ChillCat_Claw": {
+ "templateId": "AthenaDance:Emoji_S22_ChillCat_Claw",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Fortnitemares_2022": {
+ "templateId": "AthenaDance:Emoji_S22_Fortnitemares_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_FunBreak": {
+ "templateId": "AthenaDance:Emoji_S22_FunBreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Headset": {
+ "templateId": "AthenaDance:Emoji_S22_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Impulse": {
+ "templateId": "AthenaDance:Emoji_S22_Impulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Invitational": {
+ "templateId": "AthenaDance:Emoji_S22_Invitational",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Meteorwomen": {
+ "templateId": "AthenaDance:Emoji_S22_Meteorwomen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_PinkSpike": {
+ "templateId": "AthenaDance:Emoji_S22_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_RebootRally_RenegadeRaider": {
+ "templateId": "AthenaDance:Emoji_S22_RebootRally_RenegadeRaider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_RL_Vista": {
+ "templateId": "AthenaDance:Emoji_S22_RL_Vista",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_RoseDust": {
+ "templateId": "AthenaDance:Emoji_S22_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Showdown_Co": {
+ "templateId": "AthenaDance:Emoji_S22_Showdown_Co",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Showdown_Mae": {
+ "templateId": "AthenaDance:Emoji_S22_Showdown_Mae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Showdown_Pi": {
+ "templateId": "AthenaDance:Emoji_S22_Showdown_Pi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_Showdown_Zet": {
+ "templateId": "AthenaDance:Emoji_S22_Showdown_Zet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S22_TheHerald": {
+ "templateId": "AthenaDance:Emoji_S22_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Amour": {
+ "templateId": "AthenaDance:Emoji_S23_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Cipher_QuestReward": {
+ "templateId": "AthenaDance:Emoji_S23_Cipher_QuestReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Citadel": {
+ "templateId": "AthenaDance:Emoji_S23_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Competitive_Fistbump": {
+ "templateId": "AthenaDance:Emoji_S23_Competitive_Fistbump",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_EmeraldGlass_Punch": {
+ "templateId": "AthenaDance:Emoji_S23_EmeraldGlass_Punch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_FindItInFortnite_1": {
+ "templateId": "AthenaDance:Emoji_S23_FindItInFortnite_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_FindItInFortnite_2": {
+ "templateId": "AthenaDance:Emoji_S23_FindItInFortnite_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_MagicMeadow": {
+ "templateId": "AthenaDance:Emoji_S23_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_MostWanted": {
+ "templateId": "AthenaDance:Emoji_S23_MostWanted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_OceanBreeze_Hello": {
+ "templateId": "AthenaDance:Emoji_S23_OceanBreeze_Hello",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_OceanBreeze_Smile": {
+ "templateId": "AthenaDance:Emoji_S23_OceanBreeze_Smile",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Maze_Be": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Maze_Be",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Maze_Ca": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ca",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Maze_Gr": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Maze_Gr",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Maze_Ll": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Maze_Ma": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Maze_Ma",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Project_Vi": {
+ "templateId": "AthenaDance:Emoji_S23_Project_Vi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_RebootRally": {
+ "templateId": "AthenaDance:Emoji_S23_RebootRally",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_RedPepper": {
+ "templateId": "AthenaDance:Emoji_S23_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_ReferFriend": {
+ "templateId": "AthenaDance:Emoji_S23_ReferFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_RuslordFire": {
+ "templateId": "AthenaDance:Emoji_S23_RuslordFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_SharpFang": {
+ "templateId": "AthenaDance:Emoji_S23_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_SnowSoldierFashion": {
+ "templateId": "AthenaDance:Emoji_S23_SnowSoldierFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_SunBurst_Tournament": {
+ "templateId": "AthenaDance:Emoji_S23_SunBurst_Tournament",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Sunlit": {
+ "templateId": "AthenaDance:Emoji_S23_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Venice": {
+ "templateId": "AthenaDance:Emoji_S23_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_Winterfest_2022": {
+ "templateId": "AthenaDance:Emoji_S23_Winterfest_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S23_ZeroWeekEvent": {
+ "templateId": "AthenaDance:Emoji_S23_ZeroWeekEvent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_ClearRadius": {
+ "templateId": "AthenaDance:Emoji_S24_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_CreativeQuest": {
+ "templateId": "AthenaDance:Emoji_S24_CreativeQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_Dazzle": {
+ "templateId": "AthenaDance:Emoji_S24_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_EbonyNarrative_QuestReward": {
+ "templateId": "AthenaDance:Emoji_S24_EbonyNarrative_QuestReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_Emphasis": {
+ "templateId": "AthenaDance:Emoji_S24_Emphasis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_FearlessWeb": {
+ "templateId": "AthenaDance:Emoji_S24_FearlessWeb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_FearlessWeb2": {
+ "templateId": "AthenaDance:Emoji_S24_FearlessWeb2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_FNCSDrops": {
+ "templateId": "AthenaDance:Emoji_S24_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_HeadHunter2": {
+ "templateId": "AthenaDance:Emoji_S24_HeadHunter2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_Inferno": {
+ "templateId": "AthenaDance:Emoji_S24_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_LocalZilla": {
+ "templateId": "AthenaDance:Emoji_S24_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_MTH_CirrusVine": {
+ "templateId": "AthenaDance:Emoji_S24_MTH_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_MTH_GrandScheme": {
+ "templateId": "AthenaDance:Emoji_S24_MTH_GrandScheme",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_MTH_Pre": {
+ "templateId": "AthenaDance:Emoji_S24_MTH_Pre",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_Nebula": {
+ "templateId": "AthenaDance:Emoji_S24_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_NitroFlow": {
+ "templateId": "AthenaDance:Emoji_S24_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_RebootRally": {
+ "templateId": "AthenaDance:Emoji_S24_RebootRally",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_TigerRootQuest": {
+ "templateId": "AthenaDance:Emoji_S24_TigerRootQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_TigerRootQuest2": {
+ "templateId": "AthenaDance:Emoji_S24_TigerRootQuest2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S24_VitalPsych": {
+ "templateId": "AthenaDance:Emoji_S24_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S6Lvl100": {
+ "templateId": "AthenaDance:Emoji_S6Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S7Lvl100": {
+ "templateId": "AthenaDance:Emoji_S7Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S8Lvl100": {
+ "templateId": "AthenaDance:Emoji_S8Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_S9Lvl100": {
+ "templateId": "AthenaDance:Emoji_S9Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Salty": {
+ "templateId": "AthenaDance:Emoji_Salty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ScreamingWukong": {
+ "templateId": "AthenaDance:Emoji_ScreamingWukong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SilentMaven": {
+ "templateId": "AthenaDance:Emoji_SilentMaven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SkepticalFishstix": {
+ "templateId": "AthenaDance:Emoji_SkepticalFishstix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SkullBrite": {
+ "templateId": "AthenaDance:Emoji_SkullBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Skulltrooper": {
+ "templateId": "AthenaDance:Emoji_Skulltrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Snowflake": {
+ "templateId": "AthenaDance:Emoji_Snowflake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Snowman": {
+ "templateId": "AthenaDance:Emoji_Snowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SparkleSpecialist": {
+ "templateId": "AthenaDance:Emoji_SparkleSpecialist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Spicy": {
+ "templateId": "AthenaDance:Emoji_Spicy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Stealthy": {
+ "templateId": "AthenaDance:Emoji_Stealthy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Stinky": {
+ "templateId": "AthenaDance:Emoji_Stinky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Stop": {
+ "templateId": "AthenaDance:Emoji_Stop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Storm": {
+ "templateId": "AthenaDance:Emoji_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Sucker": {
+ "templateId": "AthenaDance:Emoji_Sucker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SummerDays": {
+ "templateId": "AthenaDance:Emoji_SummerDays",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Sun": {
+ "templateId": "AthenaDance:Emoji_Sun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_SupDood": {
+ "templateId": "AthenaDance:Emoji_SupDood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Sweaty": {
+ "templateId": "AthenaDance:Emoji_Sweaty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Tasty": {
+ "templateId": "AthenaDance:Emoji_Tasty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Tattered": {
+ "templateId": "AthenaDance:Emoji_Tattered",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Teamwork": {
+ "templateId": "AthenaDance:Emoji_Teamwork",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_TechOpsBlue": {
+ "templateId": "AthenaDance:Emoji_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Teknique": {
+ "templateId": "AthenaDance:Emoji_Teknique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Thief": {
+ "templateId": "AthenaDance:Emoji_Thief",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ThumbsDown": {
+ "templateId": "AthenaDance:Emoji_ThumbsDown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ThumbsUp": {
+ "templateId": "AthenaDance:Emoji_ThumbsUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_TomatoHead": {
+ "templateId": "AthenaDance:Emoji_TomatoHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_TP": {
+ "templateId": "AthenaDance:Emoji_TP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Trap": {
+ "templateId": "AthenaDance:Emoji_Trap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_VictoryRoyale": {
+ "templateId": "AthenaDance:Emoji_VictoryRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_WhiteFlag": {
+ "templateId": "AthenaDance:Emoji_WhiteFlag",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_WitchsBrew": {
+ "templateId": "AthenaDance:Emoji_WitchsBrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_Wow": {
+ "templateId": "AthenaDance:Emoji_Wow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Emoji_ZZZ": {
+ "templateId": "AthenaDance:Emoji_ZZZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:FounderGlider": {
+ "templateId": "AthenaGlider:FounderGlider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:FounderUmbrella": {
+ "templateId": "AthenaGlider:FounderUmbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_AlienSignalDetector": {
+ "templateId": "AthenaBackpack:Gadget_AlienSignalDetector",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_DetectorGadget": {
+ "templateId": "AthenaBackpack:Gadget_DetectorGadget",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_DetectorGadget_Ch4S2": {
+ "templateId": "AthenaBackpack:Gadget_DetectorGadget_Ch4S2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_HighTechBackpack": {
+ "templateId": "AthenaBackpack:Gadget_HighTechBackpack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_RealityBloom": {
+ "templateId": "AthenaBackpack:Gadget_RealityBloom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:Gadget_SpiritVessel": {
+ "templateId": "AthenaBackpack:Gadget_SpiritVessel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_354_BinaryFemale": {
+ "templateId": "AthenaGlider:Glider_354_BinaryFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Apprentice": {
+ "templateId": "AthenaGlider:Glider_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ArcticIceBlue": {
+ "templateId": "AthenaGlider:Glider_ArcticIceBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ArcticIceTalus": {
+ "templateId": "AthenaGlider:Glider_ArcticIceTalus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_BadBear": {
+ "templateId": "AthenaGlider:Glider_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Bites": {
+ "templateId": "AthenaGlider:Glider_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Bold": {
+ "templateId": "AthenaGlider:Glider_Bold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_BoneMarrow": {
+ "templateId": "AthenaGlider:Glider_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Broomstick": {
+ "templateId": "AthenaGlider:Glider_Broomstick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Candor": {
+ "templateId": "AthenaGlider:Glider_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Chainmail": {
+ "templateId": "AthenaGlider:Glider_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ChillCat": {
+ "templateId": "AthenaGlider:Glider_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_CirrusVine": {
+ "templateId": "AthenaGlider:Glider_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Citadel": {
+ "templateId": "AthenaGlider:Glider_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_CoyoteTrail": {
+ "templateId": "AthenaGlider:Glider_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_CyberFuGlitch": {
+ "templateId": "AthenaGlider:Glider_CyberFuGlitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Dazzle": {
+ "templateId": "AthenaGlider:Glider_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Default_Jolly": {
+ "templateId": "AthenaGlider:Glider_Default_Jolly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_DistantEchoPro": {
+ "templateId": "AthenaGlider:Glider_DistantEchoPro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Ebony": {
+ "templateId": "AthenaGlider:Glider_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Elevate": {
+ "templateId": "AthenaGlider:Glider_Elevate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Flames": {
+ "templateId": "AthenaGlider:Glider_Flames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_FlowerPOwer": {
+ "templateId": "AthenaGlider:Glider_FlowerPOwer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Genius": {
+ "templateId": "AthenaGlider:Glider_Genius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_GeniusBlob": {
+ "templateId": "AthenaGlider:Glider_GeniusBlob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Headset": {
+ "templateId": "AthenaGlider:Glider_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_001": {
+ "templateId": "AthenaGlider:Glider_ID_001",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_002_Medieval": {
+ "templateId": "AthenaGlider:Glider_ID_002_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_003_District": {
+ "templateId": "AthenaGlider:Glider_ID_003_District",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_004_Disco": {
+ "templateId": "AthenaGlider:Glider_ID_004_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_005_HolidaySweater": {
+ "templateId": "AthenaGlider:Glider_ID_005_HolidaySweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_006_WinterCamo": {
+ "templateId": "AthenaGlider:Glider_ID_006_WinterCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_007_TurtleShell": {
+ "templateId": "AthenaGlider:Glider_ID_007_TurtleShell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_008_Graffiti": {
+ "templateId": "AthenaGlider:Glider_ID_008_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_009_CandyCoat": {
+ "templateId": "AthenaGlider:Glider_ID_009_CandyCoat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_010_Storm": {
+ "templateId": "AthenaGlider:Glider_ID_010_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_011_JollyRoger": {
+ "templateId": "AthenaGlider:Glider_ID_011_JollyRoger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_012_TeddyBear": {
+ "templateId": "AthenaGlider:Glider_ID_012_TeddyBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_013_PSBlue": {
+ "templateId": "AthenaGlider:Glider_ID_013_PSBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_014_Dragon": {
+ "templateId": "AthenaGlider:Glider_ID_014_Dragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_015_Brite": {
+ "templateId": "AthenaGlider:Glider_ID_015_Brite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_016_Tactical": {
+ "templateId": "AthenaGlider:Glider_ID_016_Tactical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_017_Assassin": {
+ "templateId": "AthenaGlider:Glider_ID_017_Assassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_018_Twitch": {
+ "templateId": "AthenaGlider:Glider_ID_018_Twitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_019_Taxi": {
+ "templateId": "AthenaGlider:Glider_ID_019_Taxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_020_Fighter": {
+ "templateId": "AthenaGlider:Glider_ID_020_Fighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_021_Scavenger": {
+ "templateId": "AthenaGlider:Glider_ID_021_Scavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_022_RockerPunk": {
+ "templateId": "AthenaGlider:Glider_ID_022_RockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_023_CuChulainn": {
+ "templateId": "AthenaGlider:Glider_ID_023_CuChulainn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_024_Reaper": {
+ "templateId": "AthenaGlider:Glider_ID_024_Reaper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_025_ShuttleA": {
+ "templateId": "AthenaGlider:Glider_ID_025_ShuttleA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_026_ShuttleB": {
+ "templateId": "AthenaGlider:Glider_ID_026_ShuttleB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_027_Satelite": {
+ "templateId": "AthenaGlider:Glider_ID_027_Satelite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_028_Googly": {
+ "templateId": "AthenaGlider:Glider_ID_028_Googly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_029_PajamaParty": {
+ "templateId": "AthenaGlider:Glider_ID_029_PajamaParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_030_CircuitBreaker": {
+ "templateId": "AthenaGlider:Glider_ID_030_CircuitBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_031_Metal": {
+ "templateId": "AthenaGlider:Glider_ID_031_Metal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_032_TacticalWoodland": {
+ "templateId": "AthenaGlider:Glider_ID_032_TacticalWoodland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_033_Valor": {
+ "templateId": "AthenaGlider:Glider_ID_033_Valor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_034_CarbideBlue": {
+ "templateId": "AthenaGlider:Glider_ID_034_CarbideBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_035_Candy": {
+ "templateId": "AthenaGlider:Glider_ID_035_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_036_AuroraGlow": {
+ "templateId": "AthenaGlider:Glider_ID_036_AuroraGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_037_Hazmat": {
+ "templateId": "AthenaGlider:Glider_ID_037_Hazmat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_038_Deco": {
+ "templateId": "AthenaGlider:Glider_ID_038_Deco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_039_Venus": {
+ "templateId": "AthenaGlider:Glider_ID_039_Venus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_040_Jailbird": {
+ "templateId": "AthenaGlider:Glider_ID_040_Jailbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_041_Basketball": {
+ "templateId": "AthenaGlider:Glider_ID_041_Basketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_042_Soccer": {
+ "templateId": "AthenaGlider:Glider_ID_042_Soccer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_043_DarkNinja": {
+ "templateId": "AthenaGlider:Glider_ID_043_DarkNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_044_Pterodactyl": {
+ "templateId": "AthenaGlider:Glider_ID_044_Pterodactyl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_045_CarbideBlack": {
+ "templateId": "AthenaGlider:Glider_ID_045_CarbideBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_046_Gumshoe": {
+ "templateId": "AthenaGlider:Glider_ID_046_Gumshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_047_SpeedyRed": {
+ "templateId": "AthenaGlider:Glider_ID_047_SpeedyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_048_Viking": {
+ "templateId": "AthenaGlider:Glider_ID_048_Viking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_049_Lifeguard": {
+ "templateId": "AthenaGlider:Glider_ID_049_Lifeguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_050_StreetRacerCobra": {
+ "templateId": "AthenaGlider:Glider_ID_050_StreetRacerCobra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_051_Luchador": {
+ "templateId": "AthenaGlider:Glider_ID_051_Luchador",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_052_Bedazzled": {
+ "templateId": "AthenaGlider:Glider_ID_052_Bedazzled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_053_Huya": {
+ "templateId": "AthenaGlider:Glider_ID_053_Huya",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_054_Douyu": {
+ "templateId": "AthenaGlider:Glider_ID_054_Douyu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_055_StreetRacerBlack": {
+ "templateId": "AthenaGlider:Glider_ID_055_StreetRacerBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_056_CarbideWhite": {
+ "templateId": "AthenaGlider:Glider_ID_056_CarbideWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_057_ModernMilitary": {
+ "templateId": "AthenaGlider:Glider_ID_057_ModernMilitary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_058_Shark": {
+ "templateId": "AthenaGlider:Glider_ID_058_Shark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_059_DurrburgerHero": {
+ "templateId": "AthenaGlider:Glider_ID_059_DurrburgerHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_060_Exercise": {
+ "templateId": "AthenaGlider:Glider_ID_060_Exercise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_061_StreetRacerBiker": {
+ "templateId": "AthenaGlider:Glider_ID_061_StreetRacerBiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_062_StreetRacerWhite": {
+ "templateId": "AthenaGlider:Glider_ID_062_StreetRacerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_063_SushiChef": {
+ "templateId": "AthenaGlider:Glider_ID_063_SushiChef",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_064_Biker": {
+ "templateId": "AthenaGlider:Glider_ID_064_Biker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_065_Hippie": {
+ "templateId": "AthenaGlider:Glider_ID_065_Hippie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_066_SamuraiBlue": {
+ "templateId": "AthenaGlider:Glider_ID_066_SamuraiBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_067_PSBurnout": {
+ "templateId": "AthenaGlider:Glider_ID_067_PSBurnout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_068_GarageBand": {
+ "templateId": "AthenaGlider:Glider_ID_068_GarageBand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_069_Hacivat": {
+ "templateId": "AthenaGlider:Glider_ID_069_Hacivat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_070_DarkViking": {
+ "templateId": "AthenaGlider:Glider_ID_070_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_071_Football": {
+ "templateId": "AthenaGlider:Glider_ID_071_Football",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_072_Bling": {
+ "templateId": "AthenaGlider:Glider_ID_072_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_073_Medic": {
+ "templateId": "AthenaGlider:Glider_ID_073_Medic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_074_RaptorArcticCamo": {
+ "templateId": "AthenaGlider:Glider_ID_074_RaptorArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_075_ModernMilitaryRed": {
+ "templateId": "AthenaGlider:Glider_ID_075_ModernMilitaryRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_076_DieselPunk": {
+ "templateId": "AthenaGlider:Glider_ID_076_DieselPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_077_Octoberfest": {
+ "templateId": "AthenaGlider:Glider_ID_077_Octoberfest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_078_Vampire": {
+ "templateId": "AthenaGlider:Glider_ID_078_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_079_RedRiding": {
+ "templateId": "AthenaGlider:Glider_ID_079_RedRiding",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_080_PrairiePusher": {
+ "templateId": "AthenaGlider:Glider_ID_080_PrairiePusher",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_081_CowboyGunslinger": {
+ "templateId": "AthenaGlider:Glider_ID_081_CowboyGunslinger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_082_Scarecrow": {
+ "templateId": "AthenaGlider:Glider_ID_082_Scarecrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_083_DarkBomber": {
+ "templateId": "AthenaGlider:Glider_ID_083_DarkBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_084_Plague": {
+ "templateId": "AthenaGlider:Glider_ID_084_Plague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_085_SkullTrooper": {
+ "templateId": "AthenaGlider:Glider_ID_085_SkullTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_086_BlackWidow": {
+ "templateId": "AthenaGlider:Glider_ID_086_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_087_GuanYu": {
+ "templateId": "AthenaGlider:Glider_ID_087_GuanYu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_088_EvilCowboy": {
+ "templateId": "AthenaGlider:Glider_ID_088_EvilCowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_089_Muertos": {
+ "templateId": "AthenaGlider:Glider_ID_089_Muertos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_090_Celestial": {
+ "templateId": "AthenaGlider:Glider_ID_090_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_091_MadCommander": {
+ "templateId": "AthenaGlider:Glider_ID_091_MadCommander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_092_StreetOps": {
+ "templateId": "AthenaGlider:Glider_ID_092_StreetOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_093_AnimalJackets": {
+ "templateId": "AthenaGlider:Glider_ID_093_AnimalJackets",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_094_SamuraiUltra": {
+ "templateId": "AthenaGlider:Glider_ID_094_SamuraiUltra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_095_Witch": {
+ "templateId": "AthenaGlider:Glider_ID_095_Witch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_096_HornedMask": {
+ "templateId": "AthenaGlider:Glider_ID_096_HornedMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_097_Feathers": {
+ "templateId": "AthenaGlider:Glider_ID_097_Feathers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_098_Sup": {
+ "templateId": "AthenaGlider:Glider_ID_098_Sup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_099_Moth": {
+ "templateId": "AthenaGlider:Glider_ID_099_Moth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_100_Yeti": {
+ "templateId": "AthenaGlider:Glider_ID_100_Yeti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_101_TacticalSanta": {
+ "templateId": "AthenaGlider:Glider_ID_101_TacticalSanta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_102_Rhino": {
+ "templateId": "AthenaGlider:Glider_ID_102_Rhino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_103_Nautilus": {
+ "templateId": "AthenaGlider:Glider_ID_103_Nautilus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_104_Durrburger": {
+ "templateId": "AthenaGlider:Glider_ID_104_Durrburger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_104_FuzzyBear": {
+ "templateId": "AthenaGlider:Glider_ID_104_FuzzyBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_104_Math": {
+ "templateId": "AthenaGlider:Glider_ID_104_Math",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_105_Gingerbread": {
+ "templateId": "AthenaGlider:Glider_ID_105_Gingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_105_SnowBoard": {
+ "templateId": "AthenaGlider:Glider_ID_105_SnowBoard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_106_FortniteDJ": {
+ "templateId": "AthenaGlider:Glider_ID_106_FortniteDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_107_IceMaiden": {
+ "templateId": "AthenaGlider:Glider_ID_107_IceMaiden",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_108_Krampus": {
+ "templateId": "AthenaGlider:Glider_ID_108_Krampus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_109_StreetGoth": {
+ "templateId": "AthenaGlider:Glider_ID_109_StreetGoth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_110_TeriyakiFish": {
+ "templateId": "AthenaGlider:Glider_ID_110_TeriyakiFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_111_MilitaryFashion": {
+ "templateId": "AthenaGlider:Glider_ID_111_MilitaryFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_112_TechOps": {
+ "templateId": "AthenaGlider:Glider_ID_112_TechOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_113_Barbarian": {
+ "templateId": "AthenaGlider:Glider_ID_113_Barbarian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_114_IceQueen": {
+ "templateId": "AthenaGlider:Glider_ID_114_IceQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_115_SnowNinja": {
+ "templateId": "AthenaGlider:Glider_ID_115_SnowNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_116_PizzaPit": {
+ "templateId": "AthenaGlider:Glider_ID_116_PizzaPit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_117_Warpaint": {
+ "templateId": "AthenaGlider:Glider_ID_117_Warpaint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_118_Squishy": {
+ "templateId": "AthenaGlider:Glider_ID_118_Squishy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_119_ReaperFrozen": {
+ "templateId": "AthenaGlider:Glider_ID_119_ReaperFrozen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_120_IceCream": {
+ "templateId": "AthenaGlider:Glider_ID_120_IceCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_121_BriteBomberDeluxe": {
+ "templateId": "AthenaGlider:Glider_ID_121_BriteBomberDeluxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_122_Valentines": {
+ "templateId": "AthenaGlider:Glider_ID_122_Valentines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_123_MasterKey": {
+ "templateId": "AthenaGlider:Glider_ID_123_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_124_Medusa": {
+ "templateId": "AthenaGlider:Glider_ID_124_Medusa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_125_Bandolier": {
+ "templateId": "AthenaGlider:Glider_ID_125_Bandolier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_126_Farmer": {
+ "templateId": "AthenaGlider:Glider_ID_126_Farmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_127_Aztec": {
+ "templateId": "AthenaGlider:Glider_ID_127_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_128_BootyBuoy": {
+ "templateId": "AthenaGlider:Glider_ID_128_BootyBuoy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_129_FireElf": {
+ "templateId": "AthenaGlider:Glider_ID_129_FireElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_130_SciOps": {
+ "templateId": "AthenaGlider:Glider_ID_130_SciOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_131_SpeedyMidnight": {
+ "templateId": "AthenaGlider:Glider_ID_131_SpeedyMidnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_132_Pirate01Octopus": {
+ "templateId": "AthenaGlider:Glider_ID_132_Pirate01Octopus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_133_BandageNinja": {
+ "templateId": "AthenaGlider:Glider_ID_133_BandageNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_134_DarkVikingFire": {
+ "templateId": "AthenaGlider:Glider_ID_134_DarkVikingFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_135_Baseball": {
+ "templateId": "AthenaGlider:Glider_ID_135_Baseball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_136_Bullseye": {
+ "templateId": "AthenaGlider:Glider_ID_136_Bullseye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_137_StreetOpsStealth": {
+ "templateId": "AthenaGlider:Glider_ID_137_StreetOpsStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_138_BomberPlane": {
+ "templateId": "AthenaGlider:Glider_ID_138_BomberPlane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_139_EarthDay": {
+ "templateId": "AthenaGlider:Glider_ID_139_EarthDay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_140_ShatterFly": {
+ "templateId": "AthenaGlider:Glider_ID_140_ShatterFly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_141_AshtonBoardwalk": {
+ "templateId": "AthenaGlider:Glider_ID_141_AshtonBoardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_142_AshtonSaltLake": {
+ "templateId": "AthenaGlider:Glider_ID_142_AshtonSaltLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_143_BattleSuit": {
+ "templateId": "AthenaGlider:Glider_ID_143_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_144_StrawberryPilot": {
+ "templateId": "AthenaGlider:Glider_ID_144_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_145_StormTracker": {
+ "templateId": "AthenaGlider:Glider_ID_145_StormTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_146_Masako": {
+ "templateId": "AthenaGlider:Glider_ID_146_Masako",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_147_Raptor": {
+ "templateId": "AthenaGlider:Glider_ID_147_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_148_CyberScavenger": {
+ "templateId": "AthenaGlider:Glider_ID_148_CyberScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_149_Geisha": {
+ "templateId": "AthenaGlider:Glider_ID_149_Geisha",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_150_TechOpsBlue": {
+ "templateId": "AthenaGlider:Glider_ID_150_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_151_StormSoldier": {
+ "templateId": "AthenaGlider:Glider_ID_151_StormSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_152_DemonHunter": {
+ "templateId": "AthenaGlider:Glider_ID_152_DemonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_153_Banner": {
+ "templateId": "AthenaGlider:Glider_ID_153_Banner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_154_GlowBroBat": {
+ "templateId": "AthenaGlider:Glider_ID_154_GlowBroBat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_155_Jellyfish": {
+ "templateId": "AthenaGlider:Glider_ID_155_Jellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_156_SummerBomber": {
+ "templateId": "AthenaGlider:Glider_ID_156_SummerBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_157_Drift": {
+ "templateId": "AthenaGlider:Glider_ID_157_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_158_Hairy": {
+ "templateId": "AthenaGlider:Glider_ID_158_Hairy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_159_TechMage": {
+ "templateId": "AthenaGlider:Glider_ID_159_TechMage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_160_Anarchy": {
+ "templateId": "AthenaGlider:Glider_ID_160_Anarchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_161_RoseLeader": {
+ "templateId": "AthenaGlider:Glider_ID_161_RoseLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_162_BoneWasp": {
+ "templateId": "AthenaGlider:Glider_ID_162_BoneWasp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_163_DJRemix": {
+ "templateId": "AthenaGlider:Glider_ID_163_DJRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_164_GraffitiRemix": {
+ "templateId": "AthenaGlider:Glider_ID_164_GraffitiRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_165_KnightRemix": {
+ "templateId": "AthenaGlider:Glider_ID_165_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_166_RustLordRemix": {
+ "templateId": "AthenaGlider:Glider_ID_166_RustLordRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_167_SparkleRemix": {
+ "templateId": "AthenaGlider:Glider_ID_167_SparkleRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_168_StreetRacerDriftRemix": {
+ "templateId": "AthenaGlider:Glider_ID_168_StreetRacerDriftRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_169_VoyagerRemix": {
+ "templateId": "AthenaGlider:Glider_ID_169_VoyagerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_171_DevilRock": {
+ "templateId": "AthenaGlider:Glider_ID_171_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_172_RaptorBlackOps": {
+ "templateId": "AthenaGlider:Glider_ID_172_RaptorBlackOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_173_TacticalBiker": {
+ "templateId": "AthenaGlider:Glider_ID_173_TacticalBiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_174_SleepyTime": {
+ "templateId": "AthenaGlider:Glider_ID_174_SleepyTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_175_StreetFashionRed": {
+ "templateId": "AthenaGlider:Glider_ID_175_StreetFashionRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_176_BlackMondayCape_4P79K": {
+ "templateId": "AthenaGlider:Glider_ID_176_BlackMondayCape_4P79K",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_176_BlackMondayCape_GrapplerAsset": {
+ "templateId": "AthenaGlider:Glider_ID_176_BlackMondayCape_GrapplerAsset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_177_BlackMondayFemale_HO3A9": {
+ "templateId": "AthenaGlider:Glider_ID_177_BlackMondayFemale_HO3A9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_178_BlackMondayMale_03M3E": {
+ "templateId": "AthenaGlider:Glider_ID_178_BlackMondayMale_03M3E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_179_CrazyEight": {
+ "templateId": "AthenaGlider:Glider_ID_179_CrazyEight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_180_NeonGraffiti": {
+ "templateId": "AthenaGlider:Glider_ID_180_NeonGraffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_181_RockClimber": {
+ "templateId": "AthenaGlider:Glider_ID_181_RockClimber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_182_Sheath": {
+ "templateId": "AthenaGlider:Glider_ID_182_Sheath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_183_TacticalFisherman": {
+ "templateId": "AthenaGlider:Glider_ID_183_TacticalFisherman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_184_Viper": {
+ "templateId": "AthenaGlider:Glider_ID_184_Viper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_185_Nosh": {
+ "templateId": "AthenaGlider:Glider_ID_185_Nosh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_186_GalileoFerry_48L4V": {
+ "templateId": "AthenaGlider:Glider_ID_186_GalileoFerry_48L4V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_187_GalileoKayak_Q8THV": {
+ "templateId": "AthenaGlider:Glider_ID_187_GalileoKayak_Q8THV",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_188_GalileoRocket_G7OKI": {
+ "templateId": "AthenaGlider:Glider_ID_188_GalileoRocket_G7OKI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_189_GalileoZeppelinFemale_353IC": {
+ "templateId": "AthenaGlider:Glider_ID_189_GalileoZeppelinFemale_353IC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_190_NewYears": {
+ "templateId": "AthenaGlider:Glider_ID_190_NewYears",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_191_PineTree": {
+ "templateId": "AthenaGlider:Glider_ID_191_PineTree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_192_Present": {
+ "templateId": "AthenaGlider:Glider_ID_192_Present",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_193_TheGoldenSkeleton": {
+ "templateId": "AthenaGlider:Glider_ID_193_TheGoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_194_Agent": {
+ "templateId": "AthenaGlider:Glider_ID_194_Agent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ },
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_195_BuffCatMale": {
+ "templateId": "AthenaGlider:Glider_ID_195_BuffCatMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_196_CycloneMale": {
+ "templateId": "AthenaGlider:Glider_ID_196_CycloneMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_197_HenchmanMale": {
+ "templateId": "AthenaGlider:Glider_ID_197_HenchmanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_198_Kaboom": {
+ "templateId": "AthenaGlider:Glider_ID_198_Kaboom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_199_LlamaHero": {
+ "templateId": "AthenaGlider:Glider_ID_199_LlamaHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_200_PhotographerFemale": {
+ "templateId": "AthenaGlider:Glider_ID_200_PhotographerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_201_TNTinaFemale": {
+ "templateId": "AthenaGlider:Glider_ID_201_TNTinaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_202_BananaAgent": {
+ "templateId": "AthenaGlider:Glider_ID_202_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_203_TwinDarkFemale": {
+ "templateId": "AthenaGlider:Glider_ID_203_TwinDarkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_204_CardboardCrew": {
+ "templateId": "AthenaGlider:Glider_ID_204_CardboardCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_205_DesertOpsCamo": {
+ "templateId": "AthenaGlider:Glider_ID_205_DesertOpsCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_206_Donut": {
+ "templateId": "AthenaGlider:Glider_ID_206_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_207_InformerMale": {
+ "templateId": "AthenaGlider:Glider_ID_207_InformerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_208_BadEggMale": {
+ "templateId": "AthenaGlider:Glider_ID_208_BadEggMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_209_DonutPlate": {
+ "templateId": "AthenaGlider:Glider_ID_209_DonutPlate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_210_GraffitiAssassinFemale": {
+ "templateId": "AthenaGlider:Glider_ID_210_GraffitiAssassinFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_211_WildCatBlue": {
+ "templateId": "AthenaGlider:Glider_ID_211_WildCatBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_212_AquaJacketMale": {
+ "templateId": "AthenaGlider:Glider_ID_212_AquaJacketMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_213_BlackKnightFemale": {
+ "templateId": "AthenaGlider:Glider_ID_213_BlackKnightFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_214_GarbageIsland": {
+ "templateId": "AthenaGlider:Glider_ID_214_GarbageIsland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_216_HardcoreSportz": {
+ "templateId": "AthenaGlider:Glider_ID_216_HardcoreSportz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_217_LongshortsMale": {
+ "templateId": "AthenaGlider:Glider_ID_217_LongshortsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_218_MechanicalEngineerFemale": {
+ "templateId": "AthenaGlider:Glider_ID_218_MechanicalEngineerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_219_OceanRiderFemale": {
+ "templateId": "AthenaGlider:Glider_ID_219_OceanRiderFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_220_ProfessorPup": {
+ "templateId": "AthenaGlider:Glider_ID_220_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_221_PythonFemale": {
+ "templateId": "AthenaGlider:Glider_ID_221_PythonFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_222_RacerZeroMale": {
+ "templateId": "AthenaGlider:Glider_ID_222_RacerZeroMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_223_SpaceSuit": {
+ "templateId": "AthenaGlider:Glider_ID_223_SpaceSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_224_SpaceWandererFemale": {
+ "templateId": "AthenaGlider:Glider_ID_224_SpaceWandererFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_225_TacticalScubaMale": {
+ "templateId": "AthenaGlider:Glider_ID_225_TacticalScubaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_226_GreenJacketFemale": {
+ "templateId": "AthenaGlider:Glider_ID_226_GreenJacketFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_227_SharkSuit": {
+ "templateId": "AthenaGlider:Glider_ID_227_SharkSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_228_CelestialFemale": {
+ "templateId": "AthenaGlider:Glider_ID_228_CelestialFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_229_Angler": {
+ "templateId": "AthenaGlider:Glider_ID_229_Angler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_230_NeonGreen": {
+ "templateId": "AthenaGlider:Glider_ID_230_NeonGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_231_SpaceWandererMale": {
+ "templateId": "AthenaGlider:Glider_ID_231_SpaceWandererMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_232_HightowerDate": {
+ "templateId": "AthenaGlider:Glider_ID_232_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_233_HightowerDefault": {
+ "templateId": "AthenaGlider:Glider_ID_233_HightowerDefault",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7",
+ "Mat8",
+ "Mat9"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_234_HightowerGrape": {
+ "templateId": "AthenaGlider:Glider_ID_234_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_235_HightowerSquashFemale": {
+ "templateId": "AthenaGlider:Glider_ID_235_HightowerSquashFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_236_HightowerTapasMale": {
+ "templateId": "AthenaGlider:Glider_ID_236_HightowerTapasMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_237_HightowerTomato": {
+ "templateId": "AthenaGlider:Glider_ID_237_HightowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_238_Soy_RWO5D": {
+ "templateId": "AthenaGlider:Glider_ID_238_Soy_RWO5D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_240_Maverick": {
+ "templateId": "AthenaGlider:Glider_ID_240_Maverick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_241_BackspinMale_97LM4": {
+ "templateId": "AthenaGlider:Glider_ID_241_BackspinMale_97LM4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_242_KevinCouture": {
+ "templateId": "AthenaGlider:Glider_ID_242_KevinCouture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_243_Myth": {
+ "templateId": "AthenaGlider:Glider_ID_243_Myth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_244_ChOneGlider": {
+ "templateId": "AthenaGlider:Glider_ID_244_ChOneGlider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_245_DeliSandwich": {
+ "templateId": "AthenaGlider:Glider_ID_245_DeliSandwich",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_246_BabaYaga": {
+ "templateId": "AthenaGlider:Glider_ID_246_BabaYaga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_247_Skull": {
+ "templateId": "AthenaGlider:Glider_ID_247_Skull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_248_York": {
+ "templateId": "AthenaGlider:Glider_ID_248_York",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_249_NexusWar": {
+ "templateId": "AthenaGlider:Glider_ID_249_NexusWar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_250_EmbersMale": {
+ "templateId": "AthenaGlider:Glider_ID_250_EmbersMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_251_TapDanceFemale": {
+ "templateId": "AthenaGlider:Glider_ID_251_TapDanceFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_252_PieManMale": {
+ "templateId": "AthenaGlider:Glider_ID_252_PieManMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_253_ArcticCamoWoodsFemale": {
+ "templateId": "AthenaGlider:Glider_ID_253_ArcticCamoWoodsFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_254_CosmosMale": {
+ "templateId": "AthenaGlider:Glider_ID_254_CosmosMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_255_FlapjackWranglerMale": {
+ "templateId": "AthenaGlider:Glider_ID_255_FlapjackWranglerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_256_FutureSamuraiMale": {
+ "templateId": "AthenaGlider:Glider_ID_256_FutureSamuraiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_257_Historian_VS0BJ": {
+ "templateId": "AthenaGlider:Glider_ID_257_Historian_VS0BJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_258_JupiterMale_LB0TE": {
+ "templateId": "AthenaGlider:Glider_ID_258_JupiterMale_LB0TE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_259_LexaFemale": {
+ "templateId": "AthenaGlider:Glider_ID_259_LexaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_260_ShapeshifterFemale": {
+ "templateId": "AthenaGlider:Glider_ID_260_ShapeshifterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_261_SpaceFighterFemale": {
+ "templateId": "AthenaGlider:Glider_ID_261_SpaceFighterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_262_Cherry_Y3GIU": {
+ "templateId": "AthenaGlider:Glider_ID_262_Cherry_Y3GIU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_263_FancyCandyMale": {
+ "templateId": "AthenaGlider:Glider_ID_263_FancyCandyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_264_FestiveGold": {
+ "templateId": "AthenaGlider:Glider_ID_264_FestiveGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_265_HolidayLights": {
+ "templateId": "AthenaGlider:Glider_ID_265_HolidayLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_266_Neon": {
+ "templateId": "AthenaGlider:Glider_ID_266_Neon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_267_PlumRetro_R2CYE": {
+ "templateId": "AthenaGlider:Glider_ID_267_PlumRetro_R2CYE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_268_SnowGlobeMint": {
+ "templateId": "AthenaGlider:Glider_ID_268_SnowGlobeMint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_269_Stars": {
+ "templateId": "AthenaGlider:Glider_ID_269_Stars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_271_CombatDoll": {
+ "templateId": "AthenaGlider:Glider_ID_271_CombatDoll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_272_StreetFashionEclipseFemale": {
+ "templateId": "AthenaGlider:Glider_ID_272_StreetFashionEclipseFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_273_MainframeMale_P06W7": {
+ "templateId": "AthenaGlider:Glider_ID_273_MainframeMale_P06W7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_274_DragonRacerBlue": {
+ "templateId": "AthenaGlider:Glider_ID_274_DragonRacerBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_275_AncientGladiatorMale": {
+ "templateId": "AthenaGlider:Glider_ID_275_AncientGladiatorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_276_Kepler_BEUUP": {
+ "templateId": "AthenaGlider:Glider_ID_276_Kepler_BEUUP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_277_Skirmish_9KK2W": {
+ "templateId": "AthenaGlider:Glider_ID_277_Skirmish_9KK2W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_278_SpaceWarriorMale": {
+ "templateId": "AthenaGlider:Glider_ID_278_SpaceWarriorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_279_ChickenWarriorMale": {
+ "templateId": "AthenaGlider:Glider_ID_279_ChickenWarriorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_280_CubeNinjaMale": {
+ "templateId": "AthenaGlider:Glider_ID_280_CubeNinjaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_281_DarkMinionMale": {
+ "templateId": "AthenaGlider:Glider_ID_281_DarkMinionMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_282_DinoHunterFemale": {
+ "templateId": "AthenaGlider:Glider_ID_282_DinoHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_283_ObsidianFemale": {
+ "templateId": "AthenaGlider:Glider_ID_283_ObsidianFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_284_TempleFemale": {
+ "templateId": "AthenaGlider:Glider_ID_284_TempleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_285_TowerSentinelFemale": {
+ "templateId": "AthenaGlider:Glider_ID_285_TowerSentinelFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_286_AccumulateMale": {
+ "templateId": "AthenaGlider:Glider_ID_286_AccumulateMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_287_Alchemy_W87KL": {
+ "templateId": "AthenaGlider:Glider_ID_287_Alchemy_W87KL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_288_BicycleMale": {
+ "templateId": "AthenaGlider:Glider_ID_288_BicycleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_289_CavernMale_5I9RD": {
+ "templateId": "AthenaGlider:Glider_ID_289_CavernMale_5I9RD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_291_TaxiUpgradedMulticolorFemale": {
+ "templateId": "AthenaGlider:Glider_ID_291_TaxiUpgradedMulticolorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_292_GrimMale": {
+ "templateId": "AthenaGlider:Glider_ID_292_GrimMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_293_AntiqueMale": {
+ "templateId": "AthenaGlider:Glider_ID_293_AntiqueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_294_BelieverFemale": {
+ "templateId": "AthenaGlider:Glider_ID_294_BelieverFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_295_EmperorMale": {
+ "templateId": "AthenaGlider:Glider_ID_295_EmperorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_296_InnovatorFemale": {
+ "templateId": "AthenaGlider:Glider_ID_296_InnovatorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_297_InvaderMale": {
+ "templateId": "AthenaGlider:Glider_ID_297_InvaderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_298_RuckusMale": {
+ "templateId": "AthenaGlider:Glider_ID_298_RuckusMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_299_CavernArmoredMale": {
+ "templateId": "AthenaGlider:Glider_ID_299_CavernArmoredMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_300_FirecrackerMale": {
+ "templateId": "AthenaGlider:Glider_ID_300_FirecrackerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_301_LinguiniMale_IP674": {
+ "templateId": "AthenaGlider:Glider_ID_301_LinguiniMale_IP674",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_302_MajestyMale_T1ICF": {
+ "templateId": "AthenaGlider:Glider_ID_302_MajestyMale_T1ICF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_303_SurfingSummerFemale": {
+ "templateId": "AthenaGlider:Glider_ID_303_SurfingSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_304_BuffetFemale_AOF61": {
+ "templateId": "AthenaGlider:Glider_ID_304_BuffetFemale_AOF61",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_305_QuarrelMale_ZTHTQ": {
+ "templateId": "AthenaGlider:Glider_ID_305_QuarrelMale_ZTHTQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_306_StereoFemale_0ZZCF": {
+ "templateId": "AthenaGlider:Glider_ID_306_StereoFemale_0ZZCF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_307_MonarchFemale": {
+ "templateId": "AthenaGlider:Glider_ID_307_MonarchFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_308_VividMale_H8JAS": {
+ "templateId": "AthenaGlider:Glider_ID_308_VividMale_H8JAS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_309_TacticalWoodlandBlue": {
+ "templateId": "AthenaGlider:Glider_ID_309_TacticalWoodlandBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_310_BuffLlamaMale": {
+ "templateId": "AthenaGlider:Glider_ID_310_BuffLlamaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_311_CerealBoxMale": {
+ "templateId": "AthenaGlider:Glider_ID_311_CerealBoxMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_312_ClashMale": {
+ "templateId": "AthenaGlider:Glider_ID_312_ClashMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_313_DivisionFemale": {
+ "templateId": "AthenaGlider:Glider_ID_313_DivisionFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_314_SpaceChimpMale": {
+ "templateId": "AthenaGlider:Glider_ID_314_SpaceChimpMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_315_TeriyakiFishToon": {
+ "templateId": "AthenaGlider:Glider_ID_315_TeriyakiFishToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_316_TextileMale_3S90R": {
+ "templateId": "AthenaGlider:Glider_ID_316_TextileMale_3S90R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_317_VertigoMale_E3F81": {
+ "templateId": "AthenaGlider:Glider_ID_317_VertigoMale_E3F81",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_318_Wombat_1MQMN": {
+ "templateId": "AthenaGlider:Glider_ID_318_Wombat_1MQMN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_319_BistroAstronautFemale_A4839": {
+ "templateId": "AthenaGlider:Glider_ID_319_BistroAstronautFemale_A4839",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_320_CritterRavenMale": {
+ "templateId": "AthenaGlider:Glider_ID_320_CritterRavenMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_321_CubeQueenFemale": {
+ "templateId": "AthenaGlider:Glider_ID_321_CubeQueenFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_322_DriftHorrorMale": {
+ "templateId": "AthenaGlider:Glider_ID_322_DriftHorrorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_323_GiggleMale_XADT7": {
+ "templateId": "AthenaGlider:Glider_ID_323_GiggleMale_XADT7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_324_SunriseCastleMale_2R4Q3": {
+ "templateId": "AthenaGlider:Glider_ID_324_SunriseCastleMale_2R4Q3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_325_GrandeurMale_ES8I4": {
+ "templateId": "AthenaGlider:Glider_ID_325_GrandeurMale_ES8I4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_326_HeadbandMale": {
+ "templateId": "AthenaGlider:Glider_ID_326_HeadbandMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_327_NucleusMale_55HFK": {
+ "templateId": "AthenaGlider:Glider_ID_327_NucleusMale_55HFK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_328_ExoSuitFemale": {
+ "templateId": "AthenaGlider:Glider_ID_328_ExoSuitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_329_GumballMale": {
+ "templateId": "AthenaGlider:Glider_ID_329_GumballMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_330_LoneWolfMale": {
+ "templateId": "AthenaGlider:Glider_ID_330_LoneWolfMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_331_MotorcyclistFemale": {
+ "templateId": "AthenaGlider:Glider_ID_331_MotorcyclistFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_332_ParallelComicMale": {
+ "templateId": "AthenaGlider:Glider_ID_332_ParallelComicMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_333_RustyBolt_13IXR": {
+ "templateId": "AthenaGlider:Glider_ID_333_RustyBolt_13IXR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_334_DarkIceMale": {
+ "templateId": "AthenaGlider:Glider_ID_334_DarkIceMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_335_Logarithm_40QGL": {
+ "templateId": "AthenaGlider:Glider_ID_335_Logarithm_40QGL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_336_OrbitTealMale_VCPM0": {
+ "templateId": "AthenaGlider:Glider_ID_336_OrbitTealMale_VCPM0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_337_PeppermintMale": {
+ "templateId": "AthenaGlider:Glider_ID_337_PeppermintMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_338_SnowboardMale": {
+ "templateId": "AthenaGlider:Glider_ID_338_SnowboardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_339_SnowboardGoldMale": {
+ "templateId": "AthenaGlider:Glider_ID_339_SnowboardGoldMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_340_TwentyTwoMale": {
+ "templateId": "AthenaGlider:Glider_ID_340_TwentyTwoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_341_FoeMale_P8JE8": {
+ "templateId": "AthenaGlider:Glider_ID_341_FoeMale_P8JE8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_343_KeenMale_97P8M": {
+ "templateId": "AthenaGlider:Glider_ID_343_KeenMale_97P8M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_344_PrimalFalconFemale_BQKQ3": {
+ "templateId": "AthenaGlider:Glider_ID_344_PrimalFalconFemale_BQKQ3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_345_TurtleneckMale": {
+ "templateId": "AthenaGlider:Glider_ID_345_TurtleneckMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_346_GalacticFemale_LXRL3": {
+ "templateId": "AthenaGlider:Glider_ID_346_GalacticFemale_LXRL3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_347_PeachMale": {
+ "templateId": "AthenaGlider:Glider_ID_347_PeachMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_348_GimmickFemale_D76Z0": {
+ "templateId": "AthenaGlider:Glider_ID_348_GimmickFemale_D76Z0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_349_GimmickMale_MC92O": {
+ "templateId": "AthenaGlider:Glider_ID_349_GimmickMale_MC92O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_350_RoverMale_41XKF": {
+ "templateId": "AthenaGlider:Glider_ID_350_RoverMale_41XKF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_351_ToonPlaneMale": {
+ "templateId": "AthenaGlider:Glider_ID_351_ToonPlaneMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_352_ThriveFemale": {
+ "templateId": "AthenaGlider:Glider_ID_352_ThriveFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_353_ThriveSpiritFemale": {
+ "templateId": "AthenaGlider:Glider_ID_353_ThriveSpiritFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_355_CadetFemale": {
+ "templateId": "AthenaGlider:Glider_ID_355_CadetFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_356_CyberArmorFemale": {
+ "templateId": "AthenaGlider:Glider_ID_356_CyberArmorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_357_JourneyFemale": {
+ "templateId": "AthenaGlider:Glider_ID_357_JourneyFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_358_KnightCatFemale": {
+ "templateId": "AthenaGlider:Glider_ID_358_KnightCatFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_359_MilitaryFashionCamo": {
+ "templateId": "AthenaGlider:Glider_ID_359_MilitaryFashionCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_360_MysticMale": {
+ "templateId": "AthenaGlider:Glider_ID_360_MysticMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_361_OrderGuardMale": {
+ "templateId": "AthenaGlider:Glider_ID_361_OrderGuardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle4",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_362_SiennaMale": {
+ "templateId": "AthenaGlider:Glider_ID_362_SiennaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_363_SnowfallFemale": {
+ "templateId": "AthenaGlider:Glider_ID_363_SnowfallFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_364_LyricalFemale": {
+ "templateId": "AthenaGlider:Glider_ID_364_LyricalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_365_RumbleFemale": {
+ "templateId": "AthenaGlider:Glider_ID_365_RumbleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_366_MultibotPinkMale": {
+ "templateId": "AthenaGlider:Glider_ID_366_MultibotPinkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_367_AlfredoMale": {
+ "templateId": "AthenaGlider:Glider_ID_367_AlfredoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_368_NobleMale": {
+ "templateId": "AthenaGlider:Glider_ID_368_NobleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_369_CollectableMale": {
+ "templateId": "AthenaGlider:Glider_ID_369_CollectableMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_369_RebirthSoldierFreshMale": {
+ "templateId": "AthenaGlider:Glider_ID_369_RebirthSoldierFreshMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_370_FuchsiaFemale": {
+ "templateId": "AthenaGlider:Glider_ID_370_FuchsiaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_371_LancelotMale": {
+ "templateId": "AthenaGlider:Glider_ID_371_LancelotMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_373_PinkWidowFemale": {
+ "templateId": "AthenaGlider:Glider_ID_373_PinkWidowFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_374_RealmMale": {
+ "templateId": "AthenaGlider:Glider_ID_374_RealmMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_375_DarkStormYellow": {
+ "templateId": "AthenaGlider:Glider_ID_375_DarkStormYellow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_376_ChiselMale": {
+ "templateId": "AthenaGlider:Glider_ID_376_ChiselMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_377_EnsembleMaroonMale": {
+ "templateId": "AthenaGlider:Glider_ID_377_EnsembleMaroonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_378_EnsembleSnakeMale": {
+ "templateId": "AthenaGlider:Glider_ID_378_EnsembleSnakeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_379_GloomFemale": {
+ "templateId": "AthenaGlider:Glider_ID_379_GloomFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_380_BariumFemale": {
+ "templateId": "AthenaGlider:Glider_ID_380_BariumFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_381_CanaryMale": {
+ "templateId": "AthenaGlider:Glider_ID_381_CanaryMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_382_ParfaitFemale": {
+ "templateId": "AthenaGlider:Glider_ID_382_ParfaitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_383_TrifleMale": {
+ "templateId": "AthenaGlider:Glider_ID_383_TrifleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_384_MarkIICompete": {
+ "templateId": "AthenaGlider:Glider_ID_384_MarkIICompete",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_385_StaminaMale": {
+ "templateId": "AthenaGlider:Glider_ID_385_StaminaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_386_StaminaMaleStandalone": {
+ "templateId": "AthenaGlider:Glider_ID_386_StaminaMaleStandalone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_387_StaminaVigorMale": {
+ "templateId": "AthenaGlider:Glider_ID_387_StaminaVigorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_388_Wayfare": {
+ "templateId": "AthenaGlider:Glider_ID_388_Wayfare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ID_389_BlizzardBomberFemale": {
+ "templateId": "AthenaGlider:Glider_ID_389_BlizzardBomberFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Inferno": {
+ "templateId": "AthenaGlider:Glider_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_IronBlaze": {
+ "templateId": "AthenaGlider:Glider_IronBlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_JollyTroll": {
+ "templateId": "AthenaGlider:Glider_JollyTroll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Lettuce": {
+ "templateId": "AthenaGlider:Glider_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_LocalZilla": {
+ "templateId": "AthenaGlider:Glider_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_LocalZillaNight": {
+ "templateId": "AthenaGlider:Glider_LocalZillaNight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_MagicMeadow": {
+ "templateId": "AthenaGlider:Glider_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Meteorwomen_Alt": {
+ "templateId": "AthenaGlider:Glider_Meteorwomen_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_MiG": {
+ "templateId": "AthenaGlider:Glider_MiG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Military": {
+ "templateId": "AthenaGlider:Glider_Military",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Nebula": {
+ "templateId": "AthenaGlider:Glider_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_NightHawk": {
+ "templateId": "AthenaGlider:Glider_NightHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_NitroFlow": {
+ "templateId": "AthenaGlider:Glider_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_PinkSpike": {
+ "templateId": "AthenaGlider:Glider_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_PlotTwist": {
+ "templateId": "AthenaGlider:Glider_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Prismatic": {
+ "templateId": "AthenaGlider:Glider_Prismatic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_ProxyTest": {
+ "templateId": "AthenaGlider:Glider_ProxyTest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Quartz": {
+ "templateId": "AthenaGlider:Glider_Quartz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_RedPepper": {
+ "templateId": "AthenaGlider:Glider_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_RoadTrip": {
+ "templateId": "AthenaGlider:Glider_RoadTrip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_RoseDust": {
+ "templateId": "AthenaGlider:Glider_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_RustyRaider_Spark": {
+ "templateId": "AthenaGlider:Glider_RustyRaider_Spark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_SafecrackerSleek": {
+ "templateId": "AthenaGlider:Glider_SafecrackerSleek",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Shark_FNCS": {
+ "templateId": "AthenaGlider:Glider_Shark_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Spring": {
+ "templateId": "AthenaGlider:Glider_Spring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_StallionSmoke": {
+ "templateId": "AthenaGlider:Glider_StallionSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Stealth": {
+ "templateId": "AthenaGlider:Glider_Stealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Sunlit": {
+ "templateId": "AthenaGlider:Glider_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_TestStaticParts": {
+ "templateId": "AthenaGlider:Glider_TestStaticParts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Venice": {
+ "templateId": "AthenaGlider:Glider_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Venom": {
+ "templateId": "AthenaGlider:Glider_Venom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_VitalPsych": {
+ "templateId": "AthenaGlider:Glider_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Voyager": {
+ "templateId": "AthenaGlider:Glider_Voyager",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Glider_Warthog": {
+ "templateId": "AthenaGlider:Glider_Warthog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:HalloweenScythe": {
+ "templateId": "AthenaPickaxe:HalloweenScythe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:HappyPickaxe": {
+ "templateId": "AthenaPickaxe:HappyPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Apprentice_Blue": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Apprentice_Blue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Apprentice_Forcefield": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Apprentice_Forcefield",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ArcticIce": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ArcticIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_BadBear": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Bites": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_BoneMarrow": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Candor": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Chainmail": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Chainmail_Bat": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Chainmail_Bat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Character_LineUp": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Character_LineUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ChillCat": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Citadel": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Citadel_SwordRaise": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Citadel_SwordRaise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ClearRadius": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ClearRadius_Teaser": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ClearRadius_Teaser",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ConceptRoyale_2022": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ConceptRoyale_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Crew_EmberRae": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Crew_EmberRae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_DazzleChilling": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_DazzleChilling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_DazzleCity": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_DazzleCity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Despair": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Despair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_DowntimeMicrosite_Reward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Ebony2": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Ebony2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_EbonyCity": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_EbonyCity",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Elevate": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Elevate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ES_Quest": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ES_Quest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenCompetitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_EvergreenMap": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_EvergreenMap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_FearlessFlight": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_FearlessFlight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Fortnitemares_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Fortnitemares_Boss": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Fortnitemares_Boss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Genius": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Genius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_HeadHunter": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_HeadHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Headset": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Inferno1": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Inferno1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Inferno2": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Inferno2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Invitational": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Invitational",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_IslandChrome": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_IslandChrome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Koi": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Koi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Lettuce_Tournament",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Lilac": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Lilac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Lobby_S23": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Lobby_S23",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_LocalZilla_Food": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Food",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_LocalZilla_Motorcycle": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Motorcycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_LocalZilla_Quest": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_LocalZilla_Quest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_MagicMeadow": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_MercurialStorm": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_MeteorWomen": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_MeteorWomen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Mirage": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Mirage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Mochi": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Mochi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_MostWanted": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_MostWanted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_MostWanted_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_MostWanted_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Mouse": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Nebula_Standing": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Nebula_Standing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Nebula_Underwater": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Nebula_Underwater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_NightHawk": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_NightHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_NitroFlow2": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlow2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_NitroFlowEbony": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlowEbony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_NitroFlow_FaceOff": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_NitroFlow_FaceOff",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Nocturnal": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Nocturnal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_NocturnalKeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_NocturnalKeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_PeelyAttack": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_PeelyAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_PencilSet": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_PencilSet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_PinkSpike": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Possession": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Possession",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_PumpkinPunch_Glitch": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_PumpkinPunch_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Questline": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Questline",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_QuestReward": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_QuestReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Radish_ConceptArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Radish_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Radish_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_RedPepper": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_RoseDust": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_RoseDust_Alt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_RoseDust_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S23BP_Lineup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S23KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S23KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S23_FNCS_Drops": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S23_FNCS_Drops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S24_FNCSDrops": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S24_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S24_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S24_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_S4CH3KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Sahara": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Sahara",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Fortnitemares_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SCRN_Silencer": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Silencer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SCRN_Veiled": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SCRN_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SharpFang": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SharpFang_Extra": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang_Extra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SharpFang_Slash": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SharpFang_Slash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Silencer": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Silencer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Sparrow": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Sparrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Spectacle": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Spectacle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Stallion": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Stallion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Sunburst_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Sunburst_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_SunBurst_Mural": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_SunBurst_Mural",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Sunlit": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_TheHerald": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_TigerRoot": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_TigerRoot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Troops": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Troops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Veiled": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Venice": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_Venice_Skateboard": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_Venice_Skateboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_VitalPsych": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_VitalPsych_Battle": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_VitalPsych_Battle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LoadingScreen_ZuriEvergreen": {
+ "templateId": "AthenaLoadingScreen:LoadingScreen_ZuriEvergreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_001_Brite": {
+ "templateId": "AthenaLoadingScreen:LSID_001_Brite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_002_Raptor": {
+ "templateId": "AthenaLoadingScreen:LSID_002_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_003_Pickaxes": {
+ "templateId": "AthenaLoadingScreen:LSID_003_Pickaxes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_004_TacticalShotgun": {
+ "templateId": "AthenaLoadingScreen:LSID_004_TacticalShotgun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_005_SuppressedPistol": {
+ "templateId": "AthenaLoadingScreen:LSID_005_SuppressedPistol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_006_Minigun": {
+ "templateId": "AthenaLoadingScreen:LSID_006_Minigun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_007_TacticalCommando": {
+ "templateId": "AthenaLoadingScreen:LSID_007_TacticalCommando",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_008_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LSID_008_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_009_S4Cumulative1": {
+ "templateId": "AthenaLoadingScreen:LSID_009_S4Cumulative1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_010_S4Cumulative2": {
+ "templateId": "AthenaLoadingScreen:LSID_010_S4Cumulative2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_011_S4Cumulative3": {
+ "templateId": "AthenaLoadingScreen:LSID_011_S4Cumulative3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_012_S4Cumulative4": {
+ "templateId": "AthenaLoadingScreen:LSID_012_S4Cumulative4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_013_S4Cumulative5": {
+ "templateId": "AthenaLoadingScreen:LSID_013_S4Cumulative5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_014_S4Cumulative6": {
+ "templateId": "AthenaLoadingScreen:LSID_014_S4Cumulative6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_015_S4Cumulative7": {
+ "templateId": "AthenaLoadingScreen:LSID_015_S4Cumulative7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_016_LlamaSniper": {
+ "templateId": "AthenaLoadingScreen:LSID_016_LlamaSniper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_017_Carbide": {
+ "templateId": "AthenaLoadingScreen:LSID_017_Carbide",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_018_Rex": {
+ "templateId": "AthenaLoadingScreen:LSID_018_Rex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_019_TacticalJungle": {
+ "templateId": "AthenaLoadingScreen:LSID_019_TacticalJungle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_020_SupplyDrop": {
+ "templateId": "AthenaLoadingScreen:LSID_020_SupplyDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_021_Leviathan": {
+ "templateId": "AthenaLoadingScreen:LSID_021_Leviathan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_022_BriteGunner": {
+ "templateId": "AthenaLoadingScreen:LSID_022_BriteGunner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_023_Candy": {
+ "templateId": "AthenaLoadingScreen:LSID_023_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_024_Graffiti": {
+ "templateId": "AthenaLoadingScreen:LSID_024_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_025_Raven": {
+ "templateId": "AthenaLoadingScreen:LSID_025_Raven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_026_S4Cumulative8": {
+ "templateId": "AthenaLoadingScreen:LSID_026_S4Cumulative8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_027_S5Cumulative1": {
+ "templateId": "AthenaLoadingScreen:LSID_027_S5Cumulative1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_028_S5Cumulative2": {
+ "templateId": "AthenaLoadingScreen:LSID_028_S5Cumulative2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_029_S5Cumulative3": {
+ "templateId": "AthenaLoadingScreen:LSID_029_S5Cumulative3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_030_S5Cumulative4": {
+ "templateId": "AthenaLoadingScreen:LSID_030_S5Cumulative4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_031_S5Cumulative5": {
+ "templateId": "AthenaLoadingScreen:LSID_031_S5Cumulative5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_032_S5Cumulative6": {
+ "templateId": "AthenaLoadingScreen:LSID_032_S5Cumulative6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_033_S5Cumulative7": {
+ "templateId": "AthenaLoadingScreen:LSID_033_S5Cumulative7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_034_Abstrakt": {
+ "templateId": "AthenaLoadingScreen:LSID_034_Abstrakt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_035_Bandolier": {
+ "templateId": "AthenaLoadingScreen:LSID_035_Bandolier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_036_Drift": {
+ "templateId": "AthenaLoadingScreen:LSID_036_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_037_Tomatohead": {
+ "templateId": "AthenaLoadingScreen:LSID_037_Tomatohead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_038_HighExplosives": {
+ "templateId": "AthenaLoadingScreen:LSID_038_HighExplosives",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_039_Jailbirds": {
+ "templateId": "AthenaLoadingScreen:LSID_039_Jailbirds",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_040_Lifeguard": {
+ "templateId": "AthenaLoadingScreen:LSID_040_Lifeguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_041_SupplyLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_041_SupplyLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_042_Omen": {
+ "templateId": "AthenaLoadingScreen:LSID_042_Omen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_043_RedKnight": {
+ "templateId": "AthenaLoadingScreen:LSID_043_RedKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_044_FlyTrap": {
+ "templateId": "AthenaLoadingScreen:LSID_044_FlyTrap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_045_VikingFemale": {
+ "templateId": "AthenaLoadingScreen:LSID_045_VikingFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_046_VikingPattern": {
+ "templateId": "AthenaLoadingScreen:LSID_046_VikingPattern",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_047_S5Cumulative8": {
+ "templateId": "AthenaLoadingScreen:LSID_047_S5Cumulative8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_048_S5Cumulative9": {
+ "templateId": "AthenaLoadingScreen:LSID_048_S5Cumulative9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_049_S5Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_049_S5Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_050_TomatoTemple": {
+ "templateId": "AthenaLoadingScreen:LSID_050_TomatoTemple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_051_Ravage": {
+ "templateId": "AthenaLoadingScreen:LSID_051_Ravage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_052_EmoticonCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_052_EmoticonCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_053_SupplyLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_053_SupplyLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_054_Scuba": {
+ "templateId": "AthenaLoadingScreen:LSID_054_Scuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_055_Valkyrie": {
+ "templateId": "AthenaLoadingScreen:LSID_055_Valkyrie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_056_Fate": {
+ "templateId": "AthenaLoadingScreen:LSID_056_Fate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_057_Bunnies": {
+ "templateId": "AthenaLoadingScreen:LSID_057_Bunnies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_058_DJConcept": {
+ "templateId": "AthenaLoadingScreen:LSID_058_DJConcept",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_059_Vampire": {
+ "templateId": "AthenaLoadingScreen:LSID_059_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_060_Cowgirl": {
+ "templateId": "AthenaLoadingScreen:LSID_060_Cowgirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_061_Werewolf": {
+ "templateId": "AthenaLoadingScreen:LSID_061_Werewolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_062_S6Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_062_S6Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_063_S6Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_063_S6Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_064_S6Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_064_S6Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_065_S6Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_065_S6Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_066_S6Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_066_S6Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_067_S6Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_067_S6Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_068_S6Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_068_S6Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_069_S6Cumulative08": {
+ "templateId": "AthenaLoadingScreen:LSID_069_S6Cumulative08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_070_S6Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_070_S6Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_071_S6Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_071_S6Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_072_WinterLauncher": {
+ "templateId": "AthenaLoadingScreen:LSID_072_WinterLauncher",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_073_DustyDepot": {
+ "templateId": "AthenaLoadingScreen:LSID_073_DustyDepot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_074_DarkBomber": {
+ "templateId": "AthenaLoadingScreen:LSID_074_DarkBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_075_TacticalSanta": {
+ "templateId": "AthenaLoadingScreen:LSID_075_TacticalSanta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_076_Medics": {
+ "templateId": "AthenaLoadingScreen:LSID_076_Medics",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_078_SkullTrooper": {
+ "templateId": "AthenaLoadingScreen:LSID_078_SkullTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_079_Plane": {
+ "templateId": "AthenaLoadingScreen:LSID_079_Plane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_080_Gingerbread": {
+ "templateId": "AthenaLoadingScreen:LSID_080_Gingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_081_TenderDefender": {
+ "templateId": "AthenaLoadingScreen:LSID_081_TenderDefender",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_082_NeonCat": {
+ "templateId": "AthenaLoadingScreen:LSID_082_NeonCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_083_Crackshot": {
+ "templateId": "AthenaLoadingScreen:LSID_083_Crackshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_084_S7Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_084_S7Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_085_S7Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_085_S7Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_086_S7Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_086_S7Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_087_S7Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_087_S7Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_088_S7Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_088_S7Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_089_S7Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_089_S7Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_090_S7Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_090_S7Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_091_S7Cumulative08": {
+ "templateId": "AthenaLoadingScreen:LSID_091_S7Cumulative08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_092_S7Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_092_S7Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_093_S7Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_093_S7Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_094_HolidaySpecial": {
+ "templateId": "AthenaLoadingScreen:LSID_094_HolidaySpecial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_095_Prisoner": {
+ "templateId": "AthenaLoadingScreen:LSID_095_Prisoner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_096_PlaneKey": {
+ "templateId": "AthenaLoadingScreen:LSID_096_PlaneKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_097_PowerChord": {
+ "templateId": "AthenaLoadingScreen:LSID_097_PowerChord",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_098_DragonNinja": {
+ "templateId": "AthenaLoadingScreen:LSID_098_DragonNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_099_PirateTheme": {
+ "templateId": "AthenaLoadingScreen:LSID_099_PirateTheme",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_100_StPattyDay": {
+ "templateId": "AthenaLoadingScreen:LSID_100_StPattyDay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_101_IceQueen": {
+ "templateId": "AthenaLoadingScreen:LSID_101_IceQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_102_TriceraOps": {
+ "templateId": "AthenaLoadingScreen:LSID_102_TriceraOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_103_SprayCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_103_SprayCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_104_MasterKey": {
+ "templateId": "AthenaLoadingScreen:LSID_104_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_105_BlackWidow": {
+ "templateId": "AthenaLoadingScreen:LSID_105_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_106_TreasureMap": {
+ "templateId": "AthenaLoadingScreen:LSID_106_TreasureMap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_107_S8Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_107_S8Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_108_S8Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_108_S8Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_109_S8Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_109_S8Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_110_S8Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_110_S8Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_111_S8Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_111_S8Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_112_S8Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_112_S8Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_113_S8Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_113_S8Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_114_S8Cumulative08": {
+ "templateId": "AthenaLoadingScreen:LSID_114_S8Cumulative08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_115_S8Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_115_S8Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_116_S8Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_116_S8Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_117_Squishy": {
+ "templateId": "AthenaLoadingScreen:LSID_117_Squishy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_118_Heist": {
+ "templateId": "AthenaLoadingScreen:LSID_118_Heist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_119_VolcanoKey": {
+ "templateId": "AthenaLoadingScreen:LSID_119_VolcanoKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_120_Ashton": {
+ "templateId": "AthenaLoadingScreen:LSID_120_Ashton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_121_Vikings": {
+ "templateId": "AthenaLoadingScreen:LSID_121_Vikings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_122_Aztec": {
+ "templateId": "AthenaLoadingScreen:LSID_122_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_123_Inferno": {
+ "templateId": "AthenaLoadingScreen:LSID_123_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_124_AirRoyale": {
+ "templateId": "AthenaLoadingScreen:LSID_124_AirRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_125_LavaLegends": {
+ "templateId": "AthenaLoadingScreen:LSID_125_LavaLegends",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_126_FloorIsLava": {
+ "templateId": "AthenaLoadingScreen:LSID_126_FloorIsLava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_127_UnicornPickaxe": {
+ "templateId": "AthenaLoadingScreen:LSID_127_UnicornPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_128_AuroraGlow": {
+ "templateId": "AthenaLoadingScreen:LSID_128_AuroraGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_129_Stormtracker": {
+ "templateId": "AthenaLoadingScreen:LSID_129_Stormtracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_130_StrawberryPilot": {
+ "templateId": "AthenaLoadingScreen:LSID_130_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_131_S9Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_131_S9Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_132_S9Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_132_S9Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_133_S9Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_133_S9Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_134_S9Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_134_S9Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_135_S9Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_135_S9Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_136_S9Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_136_S9Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_137_S9Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_137_S9Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_138_S9Cumulative08": {
+ "templateId": "AthenaLoadingScreen:LSID_138_S9Cumulative08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_139_S9Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_139_S9Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_140_S9Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_140_S9Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_141_PS06": {
+ "templateId": "AthenaLoadingScreen:LSID_141_PS06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_142_MashLTM": {
+ "templateId": "AthenaLoadingScreen:LSID_142_MashLTM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_143_SummerDays": {
+ "templateId": "AthenaLoadingScreen:LSID_143_SummerDays",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_144_WaterBalloonLTM": {
+ "templateId": "AthenaLoadingScreen:LSID_144_WaterBalloonLTM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_145_Doggus": {
+ "templateId": "AthenaLoadingScreen:LSID_145_Doggus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_146_WorldCup2019": {
+ "templateId": "AthenaLoadingScreen:LSID_146_WorldCup2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_147_UtopiaKey": {
+ "templateId": "AthenaLoadingScreen:LSID_147_UtopiaKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_148_FortbyteReveal": {
+ "templateId": "AthenaLoadingScreen:LSID_148_FortbyteReveal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_151_JMSparkle": {
+ "templateId": "AthenaLoadingScreen:LSID_151_JMSparkle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_152_JMLuxe": {
+ "templateId": "AthenaLoadingScreen:LSID_152_JMLuxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_153_IJDriftboard": {
+ "templateId": "AthenaLoadingScreen:LSID_153_IJDriftboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_154_IJCuddle": {
+ "templateId": "AthenaLoadingScreen:LSID_154_IJCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_155_AKDrift": {
+ "templateId": "AthenaLoadingScreen:LSID_155_AKDrift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_156_AKBrite": {
+ "templateId": "AthenaLoadingScreen:LSID_156_AKBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_157_NTBattleBus": {
+ "templateId": "AthenaLoadingScreen:LSID_157_NTBattleBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_158_NTDurrr": {
+ "templateId": "AthenaLoadingScreen:LSID_158_NTDurrr",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_159_KTFirewalker": {
+ "templateId": "AthenaLoadingScreen:LSID_159_KTFirewalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_160_KTVendetta": {
+ "templateId": "AthenaLoadingScreen:LSID_160_KTVendetta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_161_H7OutfitsA": {
+ "templateId": "AthenaLoadingScreen:LSID_161_H7OutfitsA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_162_H7OutfitsB": {
+ "templateId": "AthenaLoadingScreen:LSID_162_H7OutfitsB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_163_SMRocketRide": {
+ "templateId": "AthenaLoadingScreen:LSID_163_SMRocketRide",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_164_SMCrackshot": {
+ "templateId": "AthenaLoadingScreen:LSID_164_SMCrackshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_165_S10Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_165_S10Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_166_S10Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_166_S10Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_167_S10Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_167_S10Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_168_S10Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_168_S10Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_169_S10Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_169_S10Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_170_S10Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_170_S10Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_171_S10Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_171_S10Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_172_S10Cumulative08_E9M2F": {
+ "templateId": "AthenaLoadingScreen:LSID_172_S10Cumulative08_E9M2F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_173_S10Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_173_S10Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_174_S10Cumulative10": {
+ "templateId": "AthenaLoadingScreen:LSID_174_S10Cumulative10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_175_JMTomato": {
+ "templateId": "AthenaLoadingScreen:LSID_175_JMTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_176_SMVolcano": {
+ "templateId": "AthenaLoadingScreen:LSID_176_SMVolcano",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_177_IJLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_177_IJLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_178_BlackMonday_S815X": {
+ "templateId": "AthenaLoadingScreen:LSID_178_BlackMonday_S815X",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_179_SXKey": {
+ "templateId": "AthenaLoadingScreen:LSID_179_SXKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_180_S11Cumulative01": {
+ "templateId": "AthenaLoadingScreen:LSID_180_S11Cumulative01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_181_S11Cumulative02": {
+ "templateId": "AthenaLoadingScreen:LSID_181_S11Cumulative02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_182_S11Cumulative03": {
+ "templateId": "AthenaLoadingScreen:LSID_182_S11Cumulative03",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_183_S11Cumulative04": {
+ "templateId": "AthenaLoadingScreen:LSID_183_S11Cumulative04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_184_S11Cumulative05": {
+ "templateId": "AthenaLoadingScreen:LSID_184_S11Cumulative05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_185_S11Cumulative06": {
+ "templateId": "AthenaLoadingScreen:LSID_185_S11Cumulative06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_186_S11Cumulative07": {
+ "templateId": "AthenaLoadingScreen:LSID_186_S11Cumulative07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_187_S11Cumulative08": {
+ "templateId": "AthenaLoadingScreen:LSID_187_S11Cumulative08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_188_S11Cumulative09": {
+ "templateId": "AthenaLoadingScreen:LSID_188_S11Cumulative09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_190_ICMechaTeam": {
+ "templateId": "AthenaLoadingScreen:LSID_190_ICMechaTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_191_TZNutcracker": {
+ "templateId": "AthenaLoadingScreen:LSID_191_TZNutcracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_192_JUWiggle": {
+ "templateId": "AthenaLoadingScreen:LSID_192_JUWiggle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_193_JMHollowhead": {
+ "templateId": "AthenaLoadingScreen:LSID_193_JMHollowhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_194_KTDeadfire": {
+ "templateId": "AthenaLoadingScreen:LSID_194_KTDeadfire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_195_H7Skull": {
+ "templateId": "AthenaLoadingScreen:LSID_195_H7Skull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_196_AMRockstar": {
+ "templateId": "AthenaLoadingScreen:LSID_196_AMRockstar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_197_SMRobot": {
+ "templateId": "AthenaLoadingScreen:LSID_197_SMRobot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_198_JYSeasonX": {
+ "templateId": "AthenaLoadingScreen:LSID_198_JYSeasonX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_199_SMTomato": {
+ "templateId": "AthenaLoadingScreen:LSID_199_SMTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_200_JUDrift": {
+ "templateId": "AthenaLoadingScreen:LSID_200_JUDrift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_201_JMInferno": {
+ "templateId": "AthenaLoadingScreen:LSID_201_JMInferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_202_TZDemi": {
+ "templateId": "AthenaLoadingScreen:LSID_202_TZDemi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_204_NTBear": {
+ "templateId": "AthenaLoadingScreen:LSID_204_NTBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_205_AMEternal": {
+ "templateId": "AthenaLoadingScreen:LSID_205_AMEternal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_206_GRLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_206_GRLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_207_Fortnitemares": {
+ "templateId": "AthenaLoadingScreen:LSID_207_Fortnitemares",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_208_SMPattern": {
+ "templateId": "AthenaLoadingScreen:LSID_208_SMPattern",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_209_AKCrackshot": {
+ "templateId": "AthenaLoadingScreen:LSID_209_AKCrackshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_210_NDoggo": {
+ "templateId": "AthenaLoadingScreen:LSID_210_NDoggo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_213_SkullDude": {
+ "templateId": "AthenaLoadingScreen:LSID_213_SkullDude",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_214_CycloneA": {
+ "templateId": "AthenaLoadingScreen:LSID_214_CycloneA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_215_CycloneB": {
+ "templateId": "AthenaLoadingScreen:LSID_215_CycloneB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_216_TNTina": {
+ "templateId": "AthenaLoadingScreen:LSID_216_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_217_Meowscles": {
+ "templateId": "AthenaLoadingScreen:LSID_217_Meowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_218_TeamUp": {
+ "templateId": "AthenaLoadingScreen:LSID_218_TeamUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_219_AlterEgo": {
+ "templateId": "AthenaLoadingScreen:LSID_219_AlterEgo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_220_AdventureGirl": {
+ "templateId": "AthenaLoadingScreen:LSID_220_AdventureGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_221_Midas": {
+ "templateId": "AthenaLoadingScreen:LSID_221_Midas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_222_FrenzyFarms": {
+ "templateId": "AthenaLoadingScreen:LSID_222_FrenzyFarms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_223_SharkIsland": {
+ "templateId": "AthenaLoadingScreen:LSID_223_SharkIsland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_224_LoveAndWar_Love": {
+ "templateId": "AthenaLoadingScreen:LSID_224_LoveAndWar_Love",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_225_LoveAndWar_War": {
+ "templateId": "AthenaLoadingScreen:LSID_225_LoveAndWar_War",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_226_ThreeMeowscles": {
+ "templateId": "AthenaLoadingScreen:LSID_226_ThreeMeowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_227_LlamaStormCenter": {
+ "templateId": "AthenaLoadingScreen:LSID_227_LlamaStormCenter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_228_BananaAgent": {
+ "templateId": "AthenaLoadingScreen:LSID_228_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_229_MountainBase": {
+ "templateId": "AthenaLoadingScreen:LSID_229_MountainBase",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_230_Donut": {
+ "templateId": "AthenaLoadingScreen:LSID_230_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_231_CycloneBraid": {
+ "templateId": "AthenaLoadingScreen:LSID_231_CycloneBraid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_232_S12Key": {
+ "templateId": "AthenaLoadingScreen:LSID_232_S12Key",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_233_StormTheAgency": {
+ "templateId": "AthenaLoadingScreen:LSID_233_StormTheAgency",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_234_BlackKnight": {
+ "templateId": "AthenaLoadingScreen:LSID_234_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_235_MechanicalEngineer": {
+ "templateId": "AthenaLoadingScreen:LSID_235_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_236_OceanRider": {
+ "templateId": "AthenaLoadingScreen:LSID_236_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_237_ProfessorPup": {
+ "templateId": "AthenaLoadingScreen:LSID_237_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_238_RacerZero": {
+ "templateId": "AthenaLoadingScreen:LSID_238_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_239_Sandcastle": {
+ "templateId": "AthenaLoadingScreen:LSID_239_Sandcastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_240_SpaceWanderer": {
+ "templateId": "AthenaLoadingScreen:LSID_240_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_241_TacticalScuba": {
+ "templateId": "AthenaLoadingScreen:LSID_241_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_242_Valet": {
+ "templateId": "AthenaLoadingScreen:LSID_242_Valet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_243_Floatilla": {
+ "templateId": "AthenaLoadingScreen:LSID_243_Floatilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_244_RollerDerby": {
+ "templateId": "AthenaLoadingScreen:LSID_244_RollerDerby",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_246_HighTowerDate": {
+ "templateId": "AthenaLoadingScreen:LSID_246_HighTowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_247_HighTowerGrape": {
+ "templateId": "AthenaLoadingScreen:LSID_247_HighTowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_248_HighTowerHoneyDew": {
+ "templateId": "AthenaLoadingScreen:LSID_248_HighTowerHoneyDew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_249_HighTowerMango": {
+ "templateId": "AthenaLoadingScreen:LSID_249_HighTowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_250_HighTowerSquash": {
+ "templateId": "AthenaLoadingScreen:LSID_250_HighTowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_251_HighTowerTapas": {
+ "templateId": "AthenaLoadingScreen:LSID_251_HighTowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_252_HighTowerTomato": {
+ "templateId": "AthenaLoadingScreen:LSID_252_HighTowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_253_HighTowerWasabi": {
+ "templateId": "AthenaLoadingScreen:LSID_253_HighTowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_254_S14SeasonalA": {
+ "templateId": "AthenaLoadingScreen:LSID_254_S14SeasonalA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_256_Corrupted": {
+ "templateId": "AthenaLoadingScreen:LSID_256_Corrupted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_257_FNCS_CuddleTeam": {
+ "templateId": "AthenaLoadingScreen:LSID_257_FNCS_CuddleTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_258_Backspin": {
+ "templateId": "AthenaLoadingScreen:LSID_258_Backspin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_259_MidasRevenge": {
+ "templateId": "AthenaLoadingScreen:LSID_259_MidasRevenge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_260_AncientGladiator": {
+ "templateId": "AthenaLoadingScreen:LSID_260_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_261_Shapeshifter": {
+ "templateId": "AthenaLoadingScreen:LSID_261_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_262_Lexa": {
+ "templateId": "AthenaLoadingScreen:LSID_262_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_263_FutureSamurai": {
+ "templateId": "AthenaLoadingScreen:LSID_263_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_264_Flapjack": {
+ "templateId": "AthenaLoadingScreen:LSID_264_Flapjack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_265_SpaceFighter": {
+ "templateId": "AthenaLoadingScreen:LSID_265_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_266_Cosmos": {
+ "templateId": "AthenaLoadingScreen:LSID_266_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_267_S15SeasonalA": {
+ "templateId": "AthenaLoadingScreen:LSID_267_S15SeasonalA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_268_Holiday1": {
+ "templateId": "AthenaLoadingScreen:LSID_268_Holiday1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_269_Holiday2": {
+ "templateId": "AthenaLoadingScreen:LSID_269_Holiday2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_270_Nightmare_IZN91": {
+ "templateId": "AthenaLoadingScreen:LSID_270_Nightmare_IZN91",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_271_FNCS_S15_ChampAxe": {
+ "templateId": "AthenaLoadingScreen:LSID_271_FNCS_S15_ChampAxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_272_FoxWarrior_6DFA1": {
+ "templateId": "AthenaLoadingScreen:LSID_272_FoxWarrior_6DFA1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_273_Tar_ITJ9S": {
+ "templateId": "AthenaLoadingScreen:LSID_273_Tar_ITJ9S",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_274_Skirmish_PJ9TZ": {
+ "templateId": "AthenaLoadingScreen:LSID_274_Skirmish_PJ9TZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_275_FoxWarrior2": {
+ "templateId": "AthenaLoadingScreen:LSID_275_FoxWarrior2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_276_Kepler": {
+ "templateId": "AthenaLoadingScreen:LSID_276_Kepler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_277_RustLordDoggoLavaRain": {
+ "templateId": "AthenaLoadingScreen:LSID_277_RustLordDoggoLavaRain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_278_GoldenTouch": {
+ "templateId": "AthenaLoadingScreen:LSID_278_GoldenTouch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_279_Obsidian": {
+ "templateId": "AthenaLoadingScreen:LSID_279_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_280_Sentinel": {
+ "templateId": "AthenaLoadingScreen:LSID_280_Sentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_281_CubeNinja": {
+ "templateId": "AthenaLoadingScreen:LSID_281_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_282_DinoHunter": {
+ "templateId": "AthenaLoadingScreen:LSID_282_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_283_AgentJonesy": {
+ "templateId": "AthenaLoadingScreen:LSID_283_AgentJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_284_ChickenWarrior": {
+ "templateId": "AthenaLoadingScreen:LSID_284_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_286_LlamaRama2_8ASUQ": {
+ "templateId": "AthenaLoadingScreen:LSID_286_LlamaRama2_8ASUQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_287_BuffCatComic_JBE9O": {
+ "templateId": "AthenaLoadingScreen:LSID_287_BuffCatComic_JBE9O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_288_Bicycle": {
+ "templateId": "AthenaLoadingScreen:LSID_288_Bicycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_289_YogurtJonesy": {
+ "templateId": "AthenaLoadingScreen:LSID_289_YogurtJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_290_AprilSubs": {
+ "templateId": "AthenaLoadingScreen:LSID_290_AprilSubs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_291_S16_FNCS": {
+ "templateId": "AthenaLoadingScreen:LSID_291_S16_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_293_Cranium": {
+ "templateId": "AthenaLoadingScreen:LSID_293_Cranium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_294_Alchemy_09U3R": {
+ "templateId": "AthenaLoadingScreen:LSID_294_Alchemy_09U3R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_295_Headcase": {
+ "templateId": "AthenaLoadingScreen:LSID_295_Headcase",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_296_Cavern_60EXF": {
+ "templateId": "AthenaLoadingScreen:LSID_296_Cavern_60EXF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_297_FoodKnights": {
+ "templateId": "AthenaLoadingScreen:LSID_297_FoodKnights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_298_SpaceCuddles": {
+ "templateId": "AthenaLoadingScreen:LSID_298_SpaceCuddles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_299_SpaceCuddles2": {
+ "templateId": "AthenaLoadingScreen:LSID_299_SpaceCuddles2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_300_SpaceCuddles3": {
+ "templateId": "AthenaLoadingScreen:LSID_300_SpaceCuddles3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_301_Broccoli_U6K04": {
+ "templateId": "AthenaLoadingScreen:LSID_301_Broccoli_U6K04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_302_Daybreak": {
+ "templateId": "AthenaLoadingScreen:LSID_302_Daybreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_303_WastelandWarrior": {
+ "templateId": "AthenaLoadingScreen:LSID_303_WastelandWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_304_SkeletonQueen": {
+ "templateId": "AthenaLoadingScreen:LSID_304_SkeletonQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_305_Downpour_CHB8O": {
+ "templateId": "AthenaLoadingScreen:LSID_305_Downpour_CHB8O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_306_SpaceCuddles4": {
+ "templateId": "AthenaLoadingScreen:LSID_306_SpaceCuddles4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_307_Emperor": {
+ "templateId": "AthenaLoadingScreen:LSID_307_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_308_AlienTrooper": {
+ "templateId": "AthenaLoadingScreen:LSID_308_AlienTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_309_Believer": {
+ "templateId": "AthenaLoadingScreen:LSID_309_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_310_Faux": {
+ "templateId": "AthenaLoadingScreen:LSID_310_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_311_Ruckus": {
+ "templateId": "AthenaLoadingScreen:LSID_311_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_312_Innovator": {
+ "templateId": "AthenaLoadingScreen:LSID_312_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_313_Invader": {
+ "templateId": "AthenaLoadingScreen:LSID_313_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_314_Antique": {
+ "templateId": "AthenaLoadingScreen:LSID_314_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_315_Key": {
+ "templateId": "AthenaLoadingScreen:LSID_315_Key",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_316_Explosion": {
+ "templateId": "AthenaLoadingScreen:LSID_316_Explosion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_317_Cow": {
+ "templateId": "AthenaLoadingScreen:LSID_317_Cow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_318_Firecracker": {
+ "templateId": "AthenaLoadingScreen:LSID_318_Firecracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_319_Summer": {
+ "templateId": "AthenaLoadingScreen:LSID_319_Summer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_320_Linguini_8O4H0": {
+ "templateId": "AthenaLoadingScreen:LSID_320_Linguini_8O4H0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_321_DaysStore": {
+ "templateId": "AthenaLoadingScreen:LSID_321_DaysStore",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_322_CosmicSummerWave": {
+ "templateId": "AthenaLoadingScreen:LSID_322_CosmicSummerWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_323_Majesty_0P2RG": {
+ "templateId": "AthenaLoadingScreen:LSID_323_Majesty_0P2RG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_324_BuffCatFan_99Q4A": {
+ "templateId": "AthenaLoadingScreen:LSID_324_BuffCatFan_99Q4A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_325_RiftTourMKTG1_18M49": {
+ "templateId": "AthenaLoadingScreen:LSID_325_RiftTourMKTG1_18M49",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_326_RiftTourMKTG2": {
+ "templateId": "AthenaLoadingScreen:LSID_326_RiftTourMKTG2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_328_Quarrel_K4C12": {
+ "templateId": "AthenaLoadingScreen:LSID_328_Quarrel_K4C12",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_329_Rift": {
+ "templateId": "AthenaLoadingScreen:LSID_329_Rift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_330_RiftStack_WHFK1": {
+ "templateId": "AthenaLoadingScreen:LSID_330_RiftStack_WHFK1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_331_FNCS": {
+ "templateId": "AthenaLoadingScreen:LSID_331_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_332_Monarch": {
+ "templateId": "AthenaLoadingScreen:LSID_332_Monarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_333_Monarch2": {
+ "templateId": "AthenaLoadingScreen:LSID_333_Monarch2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_334_Suspenders": {
+ "templateId": "AthenaLoadingScreen:LSID_334_Suspenders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_335_WastelandWarrior": {
+ "templateId": "AthenaLoadingScreen:LSID_335_WastelandWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_336_PunkKoi": {
+ "templateId": "AthenaLoadingScreen:LSID_336_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_337_CerealBox": {
+ "templateId": "AthenaLoadingScreen:LSID_337_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_338_Division": {
+ "templateId": "AthenaLoadingScreen:LSID_338_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_339_GhostHunter": {
+ "templateId": "AthenaLoadingScreen:LSID_339_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_340_SpaceChimp": {
+ "templateId": "AthenaLoadingScreen:LSID_340_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_342_Clash": {
+ "templateId": "AthenaLoadingScreen:LSID_342_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_343_GhostHunterSideWas": {
+ "templateId": "AthenaLoadingScreen:LSID_343_GhostHunterSideWas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_344_SpaceChimp2": {
+ "templateId": "AthenaLoadingScreen:LSID_344_SpaceChimp2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_345_S18KeyArt": {
+ "templateId": "AthenaLoadingScreen:LSID_345_S18KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_347_Corrupt": {
+ "templateId": "AthenaLoadingScreen:LSID_347_Corrupt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_348_DarkTrioIntro": {
+ "templateId": "AthenaLoadingScreen:LSID_348_DarkTrioIntro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_349_DarkTrio2": {
+ "templateId": "AthenaLoadingScreen:LSID_349_DarkTrio2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_350_CerealBoxParade": {
+ "templateId": "AthenaLoadingScreen:LSID_350_CerealBoxParade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_351_DarkTrio3": {
+ "templateId": "AthenaLoadingScreen:LSID_351_DarkTrio3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_352_Wrath": {
+ "templateId": "AthenaLoadingScreen:LSID_352_Wrath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_353_ReferaFriendTaxi": {
+ "templateId": "AthenaLoadingScreen:LSID_353_ReferaFriendTaxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_354_FNCS18": {
+ "templateId": "AthenaLoadingScreen:LSID_354_FNCS18",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_355_VampireHunter": {
+ "templateId": "AthenaLoadingScreen:LSID_355_VampireHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_356_CubeQueen": {
+ "templateId": "AthenaLoadingScreen:LSID_356_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_357_Apparitions": {
+ "templateId": "AthenaLoadingScreen:LSID_357_Apparitions",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_358_Sunrise_1Q2KG": {
+ "templateId": "AthenaLoadingScreen:LSID_358_Sunrise_1Q2KG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_359_Giggle_6OHH8": {
+ "templateId": "AthenaLoadingScreen:LSID_359_Giggle_6OHH8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_360_Relish_FRX3N": {
+ "templateId": "AthenaLoadingScreen:LSID_360_Relish_FRX3N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_361_DarkTrioBonus": {
+ "templateId": "AthenaLoadingScreen:LSID_361_DarkTrioBonus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_362_Jinx_F9OY4": {
+ "templateId": "AthenaLoadingScreen:LSID_362_Jinx_F9OY4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_363_DarkTrioNov_4B2M5": {
+ "templateId": "AthenaLoadingScreen:LSID_363_DarkTrioNov_4B2M5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_364_Ashes_0XBPK": {
+ "templateId": "AthenaLoadingScreen:LSID_364_Ashes_0XBPK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_365_ZombieElastic": {
+ "templateId": "AthenaLoadingScreen:LSID_365_ZombieElastic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_366_Uproar_8MFSF": {
+ "templateId": "AthenaLoadingScreen:LSID_366_Uproar_8MFSF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_367_Paperbag_3WGO8": {
+ "templateId": "AthenaLoadingScreen:LSID_367_Paperbag_3WGO8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_368_CubeQueen2": {
+ "templateId": "AthenaLoadingScreen:LSID_368_CubeQueen2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_369_Headband": {
+ "templateId": "AthenaLoadingScreen:LSID_369_Headband",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_370_HeadbandPizza": {
+ "templateId": "AthenaLoadingScreen:LSID_370_HeadbandPizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_371_Headband_BB": {
+ "templateId": "AthenaLoadingScreen:LSID_371_Headband_BB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_372_Grandeur_UOK4E": {
+ "templateId": "AthenaLoadingScreen:LSID_372_Grandeur_UOK4E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_373_Nucleus_TZ5C1": {
+ "templateId": "AthenaLoadingScreen:LSID_373_Nucleus_TZ5C1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_374_GuavaKey_IY0H9": {
+ "templateId": "AthenaLoadingScreen:LSID_374_GuavaKey_IY0H9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_375_GuavaEvent_9GXE3": {
+ "templateId": "AthenaLoadingScreen:LSID_375_GuavaEvent_9GXE3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_378_S19_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LSID_378_S19_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_379_Turtleneck": {
+ "templateId": "AthenaLoadingScreen:LSID_379_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_381_BuffLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_381_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_382_Gumball": {
+ "templateId": "AthenaLoadingScreen:LSID_382_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_383_IslandNomad": {
+ "templateId": "AthenaLoadingScreen:LSID_383_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_384_LoneWolf": {
+ "templateId": "AthenaLoadingScreen:LSID_384_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_385_Motorcyclist": {
+ "templateId": "AthenaLoadingScreen:LSID_385_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_386_Parallel": {
+ "templateId": "AthenaLoadingScreen:LSID_386_Parallel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_387_Island": {
+ "templateId": "AthenaLoadingScreen:LSID_387_Island",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_389_Collage": {
+ "templateId": "AthenaLoadingScreen:LSID_389_Collage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_390_KittyWarrior": {
+ "templateId": "AthenaLoadingScreen:LSID_390_KittyWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_391_TurtleneckAlt": {
+ "templateId": "AthenaLoadingScreen:LSID_391_TurtleneckAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_392_IceLegends": {
+ "templateId": "AthenaLoadingScreen:LSID_392_IceLegends",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_393_WinterFest2021": {
+ "templateId": "AthenaLoadingScreen:LSID_393_WinterFest2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_394_GumballStomp": {
+ "templateId": "AthenaLoadingScreen:LSID_394_GumballStomp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_395_ExoSuitAlt": {
+ "templateId": "AthenaLoadingScreen:LSID_395_ExoSuitAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_396_FNCS_GrandRoyale": {
+ "templateId": "AthenaLoadingScreen:LSID_396_FNCS_GrandRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_397_ButterCake": {
+ "templateId": "AthenaLoadingScreen:LSID_397_ButterCake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_398_UproarVI_5KIXU": {
+ "templateId": "AthenaLoadingScreen:LSID_398_UproarVI_5KIXU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_399_Foe_AN5QC": {
+ "templateId": "AthenaLoadingScreen:LSID_399_Foe_AN5QC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_400_Keen_T56WF": {
+ "templateId": "AthenaLoadingScreen:LSID_400_Keen_T56WF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_401_FNCS_Drops": {
+ "templateId": "AthenaLoadingScreen:LSID_401_FNCS_Drops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_402_IslandNomadMask": {
+ "templateId": "AthenaLoadingScreen:LSID_402_IslandNomadMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_403_RainbowHat": {
+ "templateId": "AthenaLoadingScreen:LSID_403_RainbowHat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_404_Gimmick_GXP4P": {
+ "templateId": "AthenaLoadingScreen:LSID_404_Gimmick_GXP4P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_405_FNCS_Iris": {
+ "templateId": "AthenaLoadingScreen:LSID_405_FNCS_Iris",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_406_SCRN_WomensDay2022": {
+ "templateId": "AthenaLoadingScreen:LSID_406_SCRN_WomensDay2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_408_SCRN_S2RebelsKeyArt": {
+ "templateId": "AthenaLoadingScreen:LSID_408_SCRN_S2RebelsKeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_409_InnovatorKey": {
+ "templateId": "AthenaLoadingScreen:LSID_409_InnovatorKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_410_Cadet": {
+ "templateId": "AthenaLoadingScreen:LSID_410_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_411_CubeKing": {
+ "templateId": "AthenaLoadingScreen:LSID_411_CubeKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_412_CyberArmor": {
+ "templateId": "AthenaLoadingScreen:LSID_412_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_413_KnightCat": {
+ "templateId": "AthenaLoadingScreen:LSID_413_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_414_OrderGuard": {
+ "templateId": "AthenaLoadingScreen:LSID_414_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_415_Sienna": {
+ "templateId": "AthenaLoadingScreen:LSID_415_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_416_Mystic": {
+ "templateId": "AthenaLoadingScreen:LSID_416_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_417_S20_BattleBus": {
+ "templateId": "AthenaLoadingScreen:LSID_417_S20_BattleBus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_418_S20_Drill": {
+ "templateId": "AthenaLoadingScreen:LSID_418_S20_Drill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_419_S20_AllOutWar": {
+ "templateId": "AthenaLoadingScreen:LSID_419_S20_AllOutWar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_420_SCRN_Snowfall": {
+ "templateId": "AthenaLoadingScreen:LSID_420_SCRN_Snowfall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_421_SCRN_JourneyMentor": {
+ "templateId": "AthenaLoadingScreen:LSID_421_SCRN_JourneyMentor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_422_TacticalBR_Reward1": {
+ "templateId": "AthenaLoadingScreen:LSID_422_TacticalBR_Reward1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_423_Binary": {
+ "templateId": "AthenaLoadingScreen:LSID_423_Binary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_424_NoPermit": {
+ "templateId": "AthenaLoadingScreen:LSID_424_NoPermit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_425_POIBattle": {
+ "templateId": "AthenaLoadingScreen:LSID_425_POIBattle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_426_BusJump": {
+ "templateId": "AthenaLoadingScreen:LSID_426_BusJump",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_427_FNCSDrops": {
+ "templateId": "AthenaLoadingScreen:LSID_427_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_428_Lyrical": {
+ "templateId": "AthenaLoadingScreen:LSID_428_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_429_Rumble": {
+ "templateId": "AthenaLoadingScreen:LSID_429_Rumble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_430_ForsakeBeginning": {
+ "templateId": "AthenaLoadingScreen:LSID_430_ForsakeBeginning",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_431_Cactus": {
+ "templateId": "AthenaLoadingScreen:LSID_431_Cactus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_432_SCRN_Ultralight": {
+ "templateId": "AthenaLoadingScreen:LSID_432_SCRN_Ultralight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_433_Raspberry": {
+ "templateId": "AthenaLoadingScreen:LSID_433_Raspberry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_435_BinaryTwin": {
+ "templateId": "AthenaLoadingScreen:LSID_435_BinaryTwin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_436_ForsakeTransition": {
+ "templateId": "AthenaLoadingScreen:LSID_436_ForsakeTransition",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_437_BusLlama": {
+ "templateId": "AthenaLoadingScreen:LSID_437_BusLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_438_Armadillo": {
+ "templateId": "AthenaLoadingScreen:LSID_438_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_439_Forsake": {
+ "templateId": "AthenaLoadingScreen:LSID_439_Forsake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_440_Noble": {
+ "templateId": "AthenaLoadingScreen:LSID_440_Noble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_441_CharacterCloud": {
+ "templateId": "AthenaLoadingScreen:LSID_441_CharacterCloud",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_442_Armadillo_Heartache": {
+ "templateId": "AthenaLoadingScreen:LSID_442_Armadillo_Heartache",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_443_C3S3_KeyArt": {
+ "templateId": "AthenaLoadingScreen:LSID_443_C3S3_KeyArt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_444_BlueJay": {
+ "templateId": "AthenaLoadingScreen:LSID_444_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_445_Collectable": {
+ "templateId": "AthenaLoadingScreen:LSID_445_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_446_Fuchsia": {
+ "templateId": "AthenaLoadingScreen:LSID_446_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_447_Lancelot": {
+ "templateId": "AthenaLoadingScreen:LSID_447_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_449_PinkWidow": {
+ "templateId": "AthenaLoadingScreen:LSID_449_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_450_Realm": {
+ "templateId": "AthenaLoadingScreen:LSID_450_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_451_Canary": {
+ "templateId": "AthenaLoadingScreen:LSID_451_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_452_RealityTree": {
+ "templateId": "AthenaLoadingScreen:LSID_452_RealityTree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_455_Lofi": {
+ "templateId": "AthenaLoadingScreen:LSID_455_Lofi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_456_Ensemble_BusGroup": {
+ "templateId": "AthenaLoadingScreen:LSID_456_Ensemble_BusGroup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_457_Ensemble_Characters": {
+ "templateId": "AthenaLoadingScreen:LSID_457_Ensemble_Characters",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_458_Gloom": {
+ "templateId": "AthenaLoadingScreen:LSID_458_Gloom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_459_S21_FNCS": {
+ "templateId": "AthenaLoadingScreen:LSID_459_S21_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_460_Trifle_Parfait": {
+ "templateId": "AthenaLoadingScreen:LSID_460_Trifle_Parfait",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_461_Pennant": {
+ "templateId": "AthenaLoadingScreen:LSID_461_Pennant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_462_DesertShadow": {
+ "templateId": "AthenaLoadingScreen:LSID_462_DesertShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_463_SoundwaveSeriesAN": {
+ "templateId": "AthenaLoadingScreen:LSID_463_SoundwaveSeriesAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_464_FruityDreams": {
+ "templateId": "AthenaLoadingScreen:LSID_464_FruityDreams",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_465_MaskedDancer": {
+ "templateId": "AthenaLoadingScreen:LSID_465_MaskedDancer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_466_NoSweat": {
+ "templateId": "AthenaLoadingScreen:LSID_466_NoSweat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_467_CuddleCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_467_CuddleCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_468_BurgerCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_468_BurgerCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_469_BratCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_469_BratCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_470_MeowsclesCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_470_MeowsclesCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_471_PeelyBoardCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_471_PeelyBoardCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_472_TacoTimeCollage": {
+ "templateId": "AthenaLoadingScreen:LSID_472_TacoTimeCollage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_473_Barium": {
+ "templateId": "AthenaLoadingScreen:LSID_473_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_474_SCRN_Barium": {
+ "templateId": "AthenaLoadingScreen:LSID_474_SCRN_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_475_SCRN_Stamina": {
+ "templateId": "AthenaLoadingScreen:LSID_475_SCRN_Stamina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_476_Chaos": {
+ "templateId": "AthenaLoadingScreen:LSID_476_Chaos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_477_RainbowRoyale": {
+ "templateId": "AthenaLoadingScreen:LSID_477_RainbowRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_478_RainbowRoyale_Art": {
+ "templateId": "AthenaLoadingScreen:LSID_478_RainbowRoyale_Art",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_479_Astral": {
+ "templateId": "AthenaLoadingScreen:LSID_479_Astral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_DefaultBG": {
+ "templateId": "AthenaLoadingScreen:LSID_DefaultBG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_STW001_HitTheRoad": {
+ "templateId": "AthenaLoadingScreen:LSID_STW001_HitTheRoad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_STW001_Holdfast": {
+ "templateId": "AthenaLoadingScreen:LSID_STW001_Holdfast",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_STW002_Starlight1": {
+ "templateId": "AthenaLoadingScreen:LSID_STW002_Starlight1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_STW002_StormKing": {
+ "templateId": "AthenaLoadingScreen:LSID_STW002_StormKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaLoadingScreen:LSID_STW003_HitTheRoad_MTL": {
+ "templateId": "AthenaLoadingScreen:LSID_STW003_HitTheRoad_MTL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_000_Default": {
+ "templateId": "AthenaMusicPack:MusicPack_000_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_000_STW_Default": {
+ "templateId": "AthenaMusicPack:MusicPack_000_STW_Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_001_Floss": {
+ "templateId": "AthenaMusicPack:MusicPack_001_Floss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_002_Spooky": {
+ "templateId": "AthenaMusicPack:MusicPack_002_Spooky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_003_OGRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_003_OGRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_004_Holiday": {
+ "templateId": "AthenaMusicPack:MusicPack_004_Holiday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_005_Disco": {
+ "templateId": "AthenaMusicPack:MusicPack_005_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_006_Twist": {
+ "templateId": "AthenaMusicPack:MusicPack_006_Twist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_007_Pirate": {
+ "templateId": "AthenaMusicPack:MusicPack_007_Pirate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_008_Coral": {
+ "templateId": "AthenaMusicPack:MusicPack_008_Coral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_009_StarPower": {
+ "templateId": "AthenaMusicPack:MusicPack_009_StarPower",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_010_RunningMan": {
+ "templateId": "AthenaMusicPack:MusicPack_010_RunningMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_011_GetFunky": {
+ "templateId": "AthenaMusicPack:MusicPack_011_GetFunky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_012_ElectroSwing": {
+ "templateId": "AthenaMusicPack:MusicPack_012_ElectroSwing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_013_RoboTrack": {
+ "templateId": "AthenaMusicPack:MusicPack_013_RoboTrack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_013_RoboTrackRaisin": {
+ "templateId": "AthenaMusicPack:MusicPack_013_RoboTrackRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_014_S9Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_014_S9Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_015_GoodVibes": {
+ "templateId": "AthenaMusicPack:MusicPack_015_GoodVibes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_016_WorldCup": {
+ "templateId": "AthenaMusicPack:MusicPack_016_WorldCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_017_PhoneItIn": {
+ "templateId": "AthenaMusicPack:MusicPack_017_PhoneItIn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_018_Glitter": {
+ "templateId": "AthenaMusicPack:MusicPack_018_Glitter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_019_Birthday2019": {
+ "templateId": "AthenaMusicPack:MusicPack_019_Birthday2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_020_BunkerJam": {
+ "templateId": "AthenaMusicPack:MusicPack_020_BunkerJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_022_DayDream": {
+ "templateId": "AthenaMusicPack:MusicPack_022_DayDream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_023_OG": {
+ "templateId": "AthenaMusicPack:MusicPack_023_OG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_024_Showdown": {
+ "templateId": "AthenaMusicPack:MusicPack_024_Showdown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_025_MakeItRain": {
+ "templateId": "AthenaMusicPack:MusicPack_025_MakeItRain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_026_LasagnaChill": {
+ "templateId": "AthenaMusicPack:MusicPack_026_LasagnaChill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_027_LasagnaDope": {
+ "templateId": "AthenaMusicPack:MusicPack_027_LasagnaDope",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_028_LlamaBell": {
+ "templateId": "AthenaMusicPack:MusicPack_028_LlamaBell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_029_Wiggle": {
+ "templateId": "AthenaMusicPack:MusicPack_029_Wiggle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_030_BlackMonday_X91ZH": {
+ "templateId": "AthenaMusicPack:MusicPack_030_BlackMonday_X91ZH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_031_ChipTune": {
+ "templateId": "AthenaMusicPack:MusicPack_031_ChipTune",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_032_GrooveJam": {
+ "templateId": "AthenaMusicPack:MusicPack_032_GrooveJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_033_RockOut": {
+ "templateId": "AthenaMusicPack:MusicPack_033_RockOut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_034_SXRocketEvent": {
+ "templateId": "AthenaMusicPack:MusicPack_034_SXRocketEvent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_034_SXRocketEventRaisin": {
+ "templateId": "AthenaMusicPack:MusicPack_034_SXRocketEventRaisin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_035_BattleBreakers": {
+ "templateId": "AthenaMusicPack:MusicPack_035_BattleBreakers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_036_Storm": {
+ "templateId": "AthenaMusicPack:MusicPack_036_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_037_Extraterrestrial": {
+ "templateId": "AthenaMusicPack:MusicPack_037_Extraterrestrial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_038_Crackdown": {
+ "templateId": "AthenaMusicPack:MusicPack_038_Crackdown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_039_Envy": {
+ "templateId": "AthenaMusicPack:MusicPack_039_Envy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_040_XmasChipTunes": {
+ "templateId": "AthenaMusicPack:MusicPack_040_XmasChipTunes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_041_Slick": {
+ "templateId": "AthenaMusicPack:MusicPack_041_Slick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_042_BunnyHop": {
+ "templateId": "AthenaMusicPack:MusicPack_042_BunnyHop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_043_Overdrive": {
+ "templateId": "AthenaMusicPack:MusicPack_043_Overdrive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_044_S12Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_044_S12Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_045_Carnaval": {
+ "templateId": "AthenaMusicPack:MusicPack_045_Carnaval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_046_Paws": {
+ "templateId": "AthenaMusicPack:MusicPack_046_Paws",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_047_FreestylinClubRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_047_FreestylinClubRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_048_SpyRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_048_SpyRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_049_BalletSpinRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_049_BalletSpinRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_050_BillyBounce": {
+ "templateId": "AthenaMusicPack:MusicPack_050_BillyBounce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_051_Headbanger": {
+ "templateId": "AthenaMusicPack:MusicPack_051_Headbanger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_052_S13Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_052_S13Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_053_FortniteTrapRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_053_FortniteTrapRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_054_Fritter": {
+ "templateId": "AthenaMusicPack:MusicPack_054_Fritter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_055_Switchstep": {
+ "templateId": "AthenaMusicPack:MusicPack_055_Switchstep",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_056_S14_Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_056_S14_Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_057_S14_Hero": {
+ "templateId": "AthenaMusicPack:MusicPack_057_S14_Hero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_058_S14_Villain": {
+ "templateId": "AthenaMusicPack:MusicPack_058_S14_Villain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_060_TakeTheW": {
+ "templateId": "AthenaMusicPack:MusicPack_060_TakeTheW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_061_RLxFN": {
+ "templateId": "AthenaMusicPack:MusicPack_061_RLxFN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_063_KeydUp": {
+ "templateId": "AthenaMusicPack:MusicPack_063_KeydUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_064_FortniteFright": {
+ "templateId": "AthenaMusicPack:MusicPack_064_FortniteFright",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_065_FortlishRap": {
+ "templateId": "AthenaMusicPack:MusicPack_065_FortlishRap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_066_ComicBookTrack": {
+ "templateId": "AthenaMusicPack:MusicPack_066_ComicBookTrack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_067_Bollywood": {
+ "templateId": "AthenaMusicPack:MusicPack_067_Bollywood",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_068_S14EndEvent": {
+ "templateId": "AthenaMusicPack:MusicPack_068_S14EndEvent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_069_OldSchool": {
+ "templateId": "AthenaMusicPack:MusicPack_069_OldSchool",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_070_StarPowerRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_070_StarPowerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_071_FortniteCarollingRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_071_FortniteCarollingRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_072_HolidayEuroDiscoRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_072_HolidayEuroDiscoRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_073_RL2PromoTrack": {
+ "templateId": "AthenaMusicPack:MusicPack_073_RL2PromoTrack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_074_PlanetaryVibe": {
+ "templateId": "AthenaMusicPack:MusicPack_074_PlanetaryVibe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_075_FishstickQuest": {
+ "templateId": "AthenaMusicPack:MusicPack_075_FishstickQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_076_IO_Guard": {
+ "templateId": "AthenaMusicPack:MusicPack_076_IO_Guard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_077_ButterBarn": {
+ "templateId": "AthenaMusicPack:MusicPack_077_ButterBarn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_078_RaiseTheRoof": {
+ "templateId": "AthenaMusicPack:MusicPack_078_RaiseTheRoof",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_079_S16_Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_079_S16_Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_080_S15_EndEvent": {
+ "templateId": "AthenaMusicPack:MusicPack_080_S15_EndEvent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_081_RL_LlamaRama_9LRCK": {
+ "templateId": "AthenaMusicPack:MusicPack_081_RL_LlamaRama_9LRCK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_082_LivingLarge": {
+ "templateId": "AthenaMusicPack:MusicPack_082_LivingLarge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_083_TowerGuards": {
+ "templateId": "AthenaMusicPack:MusicPack_083_TowerGuards",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_084_BuffCatComic_5JC9Y": {
+ "templateId": "AthenaMusicPack:MusicPack_084_BuffCatComic_5JC9Y",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_085_Phonograph": {
+ "templateId": "AthenaMusicPack:MusicPack_085_Phonograph",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_086_Hype": {
+ "templateId": "AthenaMusicPack:MusicPack_086_Hype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_087_Antique": {
+ "templateId": "AthenaMusicPack:MusicPack_087_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_088_Believer": {
+ "templateId": "AthenaMusicPack:MusicPack_088_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_089_Innovator": {
+ "templateId": "AthenaMusicPack:MusicPack_089_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_090_EasyLife": {
+ "templateId": "AthenaMusicPack:MusicPack_090_EasyLife",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_091_Summer": {
+ "templateId": "AthenaMusicPack:MusicPack_091_Summer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_092_Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_092_Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_093_SpaceCuddles": {
+ "templateId": "AthenaMusicPack:MusicPack_093_SpaceCuddles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_094_SpaceCuddlesInstrumental": {
+ "templateId": "AthenaMusicPack:MusicPack_094_SpaceCuddlesInstrumental",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_095_SummerNight": {
+ "templateId": "AthenaMusicPack:MusicPack_095_SummerNight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_096_CineAlienRemix": {
+ "templateId": "AthenaMusicPack:MusicPack_096_CineAlienRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_098_PopLock": {
+ "templateId": "AthenaMusicPack:MusicPack_098_PopLock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_099_FNCS": {
+ "templateId": "AthenaMusicPack:MusicPack_099_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_100_CerealBox": {
+ "templateId": "AthenaMusicPack:MusicPack_100_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_101_CerealBox_Instrumental": {
+ "templateId": "AthenaMusicPack:MusicPack_101_CerealBox_Instrumental",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_102_SpaceChimp": {
+ "templateId": "AthenaMusicPack:MusicPack_102_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_103_SpaceChimpInstrumental": {
+ "templateId": "AthenaMusicPack:MusicPack_103_SpaceChimpInstrumental",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_104_Kiwi": {
+ "templateId": "AthenaMusicPack:MusicPack_104_Kiwi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_105_S18Cine": {
+ "templateId": "AthenaMusicPack:MusicPack_105_S18Cine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_106_Bistro_DQZH0": {
+ "templateId": "AthenaMusicPack:MusicPack_106_Bistro_DQZH0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_108_Paperbag_R2R4P": {
+ "templateId": "AthenaMusicPack:MusicPack_108_Paperbag_R2R4P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_109_CubeQueen": {
+ "templateId": "AthenaMusicPack:MusicPack_109_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_112_Uproar_59WME": {
+ "templateId": "AthenaMusicPack:MusicPack_112_Uproar_59WME",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_113_S18_FNCS": {
+ "templateId": "AthenaMusicPack:MusicPack_113_S18_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_114_IslandNomad": {
+ "templateId": "AthenaMusicPack:MusicPack_114_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_115_Motorcyclist": {
+ "templateId": "AthenaMusicPack:MusicPack_115_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_116_Gumball": {
+ "templateId": "AthenaMusicPack:MusicPack_116_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_117_WinterFest2021": {
+ "templateId": "AthenaMusicPack:MusicPack_117_WinterFest2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_118_TheMarch": {
+ "templateId": "AthenaMusicPack:MusicPack_118_TheMarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_119_CH1_DefaultMusic": {
+ "templateId": "AthenaMusicPack:MusicPack_119_CH1_DefaultMusic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_120_MonkeySS": {
+ "templateId": "AthenaMusicPack:MusicPack_120_MonkeySS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_121_CH3_DefaultMusic": {
+ "templateId": "AthenaMusicPack:MusicPack_121_CH3_DefaultMusic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_122_Sleek_3ST6M": {
+ "templateId": "AthenaMusicPack:MusicPack_122_Sleek_3ST6M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_123_BestMates": {
+ "templateId": "AthenaMusicPack:MusicPack_123_BestMates",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_124_Zest": {
+ "templateId": "AthenaMusicPack:MusicPack_124_Zest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_125_S19_FNCS": {
+ "templateId": "AthenaMusicPack:MusicPack_125_S19_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_126_Woman": {
+ "templateId": "AthenaMusicPack:MusicPack_126_Woman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_127_Cadet": {
+ "templateId": "AthenaMusicPack:MusicPack_127_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_128_CubeKing": {
+ "templateId": "AthenaMusicPack:MusicPack_128_CubeKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_129_OrderGuard": {
+ "templateId": "AthenaMusicPack:MusicPack_129_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_131_MC": {
+ "templateId": "AthenaMusicPack:MusicPack_131_MC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_132_MayCrew": {
+ "templateId": "AthenaMusicPack:MusicPack_132_MayCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_133_Armadillo": {
+ "templateId": "AthenaMusicPack:MusicPack_133_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_134_FNCS20": {
+ "templateId": "AthenaMusicPack:MusicPack_134_FNCS20",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_135_MayCrew_Instrumental": {
+ "templateId": "AthenaMusicPack:MusicPack_135_MayCrew_Instrumental",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_136_BlueJay": {
+ "templateId": "AthenaMusicPack:MusicPack_136_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_137_NightNight": {
+ "templateId": "AthenaMusicPack:MusicPack_137_NightNight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_138_Collectable": {
+ "templateId": "AthenaMusicPack:MusicPack_138_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_139_BG": {
+ "templateId": "AthenaMusicPack:MusicPack_139_BG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_140_DaysOfSummer": {
+ "templateId": "AthenaMusicPack:MusicPack_140_DaysOfSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_141_LilWhip": {
+ "templateId": "AthenaMusicPack:MusicPack_141_LilWhip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_142_Barium": {
+ "templateId": "AthenaMusicPack:MusicPack_142_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_143_S21_FNCS": {
+ "templateId": "AthenaMusicPack:MusicPack_143_S21_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_144_SeptemberCrew": {
+ "templateId": "AthenaMusicPack:MusicPack_144_SeptemberCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_145_RainbowRoyale": {
+ "templateId": "AthenaMusicPack:MusicPack_145_RainbowRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_146_BadBear": {
+ "templateId": "AthenaMusicPack:MusicPack_146_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_147_TheHerald": {
+ "templateId": "AthenaMusicPack:MusicPack_147_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_148_ChillCat": {
+ "templateId": "AthenaMusicPack:MusicPack_148_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_150_CrewLobby": {
+ "templateId": "AthenaMusicPack:MusicPack_150_CrewLobby",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_151_CrewLobby_Instrumental": {
+ "templateId": "AthenaMusicPack:MusicPack_151_CrewLobby_Instrumental",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_153_Fortnitemares_FreakyBoss": {
+ "templateId": "AthenaMusicPack:MusicPack_153_Fortnitemares_FreakyBoss",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_154_Invitational_Album": {
+ "templateId": "AthenaMusicPack:MusicPack_154_Invitational_Album",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_156_Radish_Event": {
+ "templateId": "AthenaMusicPack:MusicPack_156_Radish_Event",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_157_Radish_NightNight": {
+ "templateId": "AthenaMusicPack:MusicPack_157_Radish_NightNight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_158_VampireHunters": {
+ "templateId": "AthenaMusicPack:MusicPack_158_VampireHunters",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_159_Chainmail": {
+ "templateId": "AthenaMusicPack:MusicPack_159_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_160_Venice": {
+ "templateId": "AthenaMusicPack:MusicPack_160_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_161_Citadel": {
+ "templateId": "AthenaMusicPack:MusicPack_161_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_162_S23Default": {
+ "templateId": "AthenaMusicPack:MusicPack_162_S23Default",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_163_Winterfest_2022": {
+ "templateId": "AthenaMusicPack:MusicPack_163_Winterfest_2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_164_RedPepper_Winterfest": {
+ "templateId": "AthenaMusicPack:MusicPack_164_RedPepper_Winterfest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_165_SunBurst1": {
+ "templateId": "AthenaMusicPack:MusicPack_165_SunBurst1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_166_SunBurst2": {
+ "templateId": "AthenaMusicPack:MusicPack_166_SunBurst2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_167_SunBurst3": {
+ "templateId": "AthenaMusicPack:MusicPack_167_SunBurst3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_169_FNCS23": {
+ "templateId": "AthenaMusicPack:MusicPack_169_FNCS23",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_170_MagicMeadow": {
+ "templateId": "AthenaMusicPack:MusicPack_170_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_171_FlailingFins": {
+ "templateId": "AthenaMusicPack:MusicPack_171_FlailingFins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_172_MetalScout": {
+ "templateId": "AthenaMusicPack:MusicPack_172_MetalScout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_173_VitalPsych": {
+ "templateId": "AthenaMusicPack:MusicPack_173_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_174_LocalZilla": {
+ "templateId": "AthenaMusicPack:MusicPack_174_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_175_Dazzle": {
+ "templateId": "AthenaMusicPack:MusicPack_175_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_176_MirageHiker": {
+ "templateId": "AthenaMusicPack:MusicPack_176_MirageHiker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_177_TigerRootQuest": {
+ "templateId": "AthenaMusicPack:MusicPack_177_TigerRootQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_178_S24FNCSDrops": {
+ "templateId": "AthenaMusicPack:MusicPack_178_S24FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_179_FearlessFlight": {
+ "templateId": "AthenaMusicPack:MusicPack_179_FearlessFlight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_STW001_CannyValley": {
+ "templateId": "AthenaMusicPack:MusicPack_STW001_CannyValley",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_STW001_Holdfast": {
+ "templateId": "AthenaMusicPack:MusicPack_STW001_Holdfast",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaMusicPack:MusicPack_STW001_Starlight": {
+ "templateId": "AthenaMusicPack:MusicPack_STW001_Starlight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_001_Dog": {
+ "templateId": "AthenaBackpack:PetCarrier_001_Dog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_002_Chameleon": {
+ "templateId": "AthenaBackpack:PetCarrier_002_Chameleon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_003_Dragon": {
+ "templateId": "AthenaBackpack:PetCarrier_003_Dragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_004_Hamster": {
+ "templateId": "AthenaBackpack:PetCarrier_004_Hamster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_005_Wolf": {
+ "templateId": "AthenaBackpack:PetCarrier_005_Wolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_006_Gingerbread": {
+ "templateId": "AthenaBackpack:PetCarrier_006_Gingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_007_Woodsy": {
+ "templateId": "AthenaBackpack:PetCarrier_007_Woodsy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_008_Fox": {
+ "templateId": "AthenaBackpack:PetCarrier_008_Fox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_009_Cat": {
+ "templateId": "AthenaBackpack:PetCarrier_009_Cat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_010_RoboKitty": {
+ "templateId": "AthenaBackpack:PetCarrier_010_RoboKitty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_011_Dog_Raptor": {
+ "templateId": "AthenaBackpack:PetCarrier_011_Dog_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_012_Drift_Fox": {
+ "templateId": "AthenaBackpack:PetCarrier_012_Drift_Fox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_013_BbqLarry": {
+ "templateId": "AthenaBackpack:PetCarrier_013_BbqLarry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_014_HightowerRadish": {
+ "templateId": "AthenaBackpack:PetCarrier_014_HightowerRadish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_015_Cosmos": {
+ "templateId": "AthenaBackpack:PetCarrier_015_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_016_Invader": {
+ "templateId": "AthenaBackpack:PetCarrier_016_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaBackpack:PetCarrier_TBD_DarkWolf": {
+ "templateId": "AthenaBackpack:PetCarrier_TBD_DarkWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_001_Dog": {
+ "templateId": "AthenaPet:PetID_001_Dog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_002_Chameleon": {
+ "templateId": "AthenaPet:PetID_002_Chameleon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_003_Dragon": {
+ "templateId": "AthenaPet:PetID_003_Dragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_004_Hamster": {
+ "templateId": "AthenaPet:PetID_004_Hamster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_005_Wolf": {
+ "templateId": "AthenaPet:PetID_005_Wolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_006_Gingerbread": {
+ "templateId": "AthenaPet:PetID_006_Gingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_007_Woodsy": {
+ "templateId": "AthenaPet:PetID_007_Woodsy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_008_Fox": {
+ "templateId": "AthenaPet:PetID_008_Fox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_009_Cat": {
+ "templateId": "AthenaPet:PetID_009_Cat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_010_RoboKitty": {
+ "templateId": "AthenaPet:PetID_010_RoboKitty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_011_Dog_Raptor": {
+ "templateId": "AthenaPet:PetID_011_Dog_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_012_Drift_Fox": {
+ "templateId": "AthenaPet:PetID_012_Drift_Fox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_013_BBQ_Larry": {
+ "templateId": "AthenaPet:PetID_013_BBQ_Larry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_016_Invader": {
+ "templateId": "AthenaPet:PetID_016_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_TBD_Cosmos": {
+ "templateId": "AthenaPet:PetID_TBD_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPet:PetID_TBD_HightowerRadish": {
+ "templateId": "AthenaPet:PetID_TBD_HightowerRadish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_AccumulateRetro": {
+ "templateId": "AthenaPickaxe:Pickaxe_AccumulateRetro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_AgentXKoi": {
+ "templateId": "AthenaPickaxe:Pickaxe_AgentXKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_AllKnowing": {
+ "templateId": "AthenaPickaxe:Pickaxe_AllKnowing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Amour": {
+ "templateId": "AthenaPickaxe:Pickaxe_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Apprentice": {
+ "templateId": "AthenaPickaxe:Pickaxe_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ArcticIceBlue": {
+ "templateId": "AthenaPickaxe:Pickaxe_ArcticIceBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ArcticIceTalus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ArcticIceTalus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BadBear": {
+ "templateId": "AthenaPickaxe:Pickaxe_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Ballerina": {
+ "templateId": "AthenaPickaxe:Pickaxe_Ballerina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BariumDemon": {
+ "templateId": "AthenaPickaxe:Pickaxe_BariumDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Basil": {
+ "templateId": "AthenaPickaxe:Pickaxe_Basil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Bites": {
+ "templateId": "AthenaPickaxe:Pickaxe_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage8"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BlueGlaze": {
+ "templateId": "AthenaPickaxe:Pickaxe_BlueGlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BlueJet": {
+ "templateId": "AthenaPickaxe:Pickaxe_BlueJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BoneMarrow": {
+ "templateId": "AthenaPickaxe:Pickaxe_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_BoneWand": {
+ "templateId": "AthenaPickaxe:Pickaxe_BoneWand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Boredom": {
+ "templateId": "AthenaPickaxe:Pickaxe_Boredom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Calavera": {
+ "templateId": "AthenaPickaxe:Pickaxe_Calavera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Candor": {
+ "templateId": "AthenaPickaxe:Pickaxe_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Cavalry_Alt": {
+ "templateId": "AthenaPickaxe:Pickaxe_Cavalry_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Chainmail": {
+ "templateId": "AthenaPickaxe:Pickaxe_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ChaosDarkIce": {
+ "templateId": "AthenaPickaxe:Pickaxe_ChaosDarkIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ChillCat": {
+ "templateId": "AthenaPickaxe:Pickaxe_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_CirrusVine": {
+ "templateId": "AthenaPickaxe:Pickaxe_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Citadel": {
+ "templateId": "AthenaPickaxe:Pickaxe_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ClearRadius": {
+ "templateId": "AthenaPickaxe:Pickaxe_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Conscience": {
+ "templateId": "AthenaPickaxe:Pickaxe_Conscience",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_CoyoteTrail": {
+ "templateId": "AthenaPickaxe:Pickaxe_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_CoyoteTrailDark": {
+ "templateId": "AthenaPickaxe:Pickaxe_CoyoteTrailDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_CrimsonPeak": {
+ "templateId": "AthenaPickaxe:Pickaxe_CrimsonPeak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_CrowbarSleek": {
+ "templateId": "AthenaPickaxe:Pickaxe_CrowbarSleek",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DarkAzalea": {
+ "templateId": "AthenaPickaxe:Pickaxe_DarkAzalea",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Dazzle": {
+ "templateId": "AthenaPickaxe:Pickaxe_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Deathvalley": {
+ "templateId": "AthenaPickaxe:Pickaxe_Deathvalley",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Defect": {
+ "templateId": "AthenaPickaxe:Pickaxe_Defect",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "RichColor2",
+ "active": "000",
+ "owned": [
+ "000",
+ "001",
+ "002",
+ "003"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Despair": {
+ "templateId": "AthenaPickaxe:Pickaxe_Despair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DistantEchoCastle": {
+ "templateId": "AthenaPickaxe:Pickaxe_DistantEchoCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DistantEchoPilot": {
+ "templateId": "AthenaPickaxe:Pickaxe_DistantEchoPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DistantEchoPro": {
+ "templateId": "AthenaPickaxe:Pickaxe_DistantEchoPro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DualParadox": {
+ "templateId": "AthenaPickaxe:Pickaxe_DualParadox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_DualParadoxGold": {
+ "templateId": "AthenaPickaxe:Pickaxe_DualParadoxGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Ebony": {
+ "templateId": "AthenaPickaxe:Pickaxe_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Elevate": {
+ "templateId": "AthenaPickaxe:Pickaxe_Elevate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_EmberRae": {
+ "templateId": "AthenaPickaxe:Pickaxe_EmberRae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_EmeraldGlassGreen": {
+ "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_EmeraldGlassPink": {
+ "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_EmeraldGlassRebel": {
+ "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassRebel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_EmeraldGlassTransform": {
+ "templateId": "AthenaPickaxe:Pickaxe_EmeraldGlassTransform",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_FallValleyBlink": {
+ "templateId": "AthenaPickaxe:Pickaxe_FallValleyBlink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_FallValleyCharge": {
+ "templateId": "AthenaPickaxe:Pickaxe_FallValleyCharge",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_FearlessFlightHero": {
+ "templateId": "AthenaPickaxe:Pickaxe_FearlessFlightHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_FearlessFlightMenaceUniversal": {
+ "templateId": "AthenaPickaxe:Pickaxe_FearlessFlightMenaceUniversal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Flamingo": {
+ "templateId": "AthenaPickaxe:Pickaxe_Flamingo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_FNBirthday5": {
+ "templateId": "AthenaPickaxe:Pickaxe_FNBirthday5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Forsake_FNCS": {
+ "templateId": "AthenaPickaxe:Pickaxe_Forsake_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_GalaxyKnight": {
+ "templateId": "AthenaPickaxe:Pickaxe_GalaxyKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_GelatinGummi": {
+ "templateId": "AthenaPickaxe:Pickaxe_GelatinGummi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Genius": {
+ "templateId": "AthenaPickaxe:Pickaxe_Genius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Genius_Blob": {
+ "templateId": "AthenaPickaxe:Pickaxe_Genius_Blob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_GoldenGuard": {
+ "templateId": "AthenaPickaxe:Pickaxe_GoldenGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_HauntKoi": {
+ "templateId": "AthenaPickaxe:Pickaxe_HauntKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_HeadhunterStar": {
+ "templateId": "AthenaPickaxe:Pickaxe_HeadhunterStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Headset": {
+ "templateId": "AthenaPickaxe:Pickaxe_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Hitman": {
+ "templateId": "AthenaPickaxe:Pickaxe_Hitman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_HumanBeing": {
+ "templateId": "AthenaPickaxe:Pickaxe_HumanBeing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_011_Medieval": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_011_Medieval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_012_District": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_012_District",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_013_Teslacoil": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_013_Teslacoil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_014_WinterCamo": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_014_WinterCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_015_HolidayCandyCane": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_015_HolidayCandyCane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_016_Disco": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_016_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_017_Shark": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_017_Shark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_018_Anchor": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_018_Anchor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_019_Heart": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_019_Heart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_020_Keg": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_020_Keg",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_021_Megalodon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_021_Megalodon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_022_HolidayGiftWrap": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_022_HolidayGiftWrap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_023_SkiBoot": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_023_SkiBoot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_024_Plunger": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_024_Plunger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_025_Dragon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_025_Dragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_026_Brite": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_026_Brite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_027_Scavenger": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_027_Scavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_028_Space": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_028_Space",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_029_Assassin": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_029_Assassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_030_ArtDeco": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_030_ArtDeco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_031_Squeak": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_031_Squeak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_032_Tactical": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_032_Tactical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_033_PotOfGold": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_033_PotOfGold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_034_RockerPunk": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_034_RockerPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_035_Prismatic": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_035_Prismatic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_036_CuChulainn": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_036_CuChulainn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_037_Stealth": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_037_Stealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_038_Carrot": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_038_Carrot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_039_TacticalBlack": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_039_TacticalBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_040_Pizza": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_040_Pizza",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_041_PajamaParty": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_041_PajamaParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_042_CircuitBreaker": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_042_CircuitBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_043_OrbitingPlanets": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_043_OrbitingPlanets",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_044_TacticalUrbanHammer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_044_TacticalUrbanHammer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_045_Valor": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_045_Valor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_046_Candy": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_046_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_047_CarbideBlue": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_047_CarbideBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_048_CarbideBlack": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_048_CarbideBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_049_Metal": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_049_Metal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_050_Graffiti": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_050_Graffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_051_NeonGlow": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_051_NeonGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_052_Hazmat": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_052_Hazmat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_053_Deco": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_053_Deco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_054_FilmCamera": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_054_FilmCamera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_055_Stop": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_055_Stop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_056_Venus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_056_Venus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_057_Jailbird": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_057_Jailbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_058_Basketball": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_058_Basketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_059_DarkEagle": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_059_DarkEagle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_060_DarkNinja": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_060_DarkNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_061_WWIIPilot": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_061_WWIIPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_062_Soccer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_062_Soccer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_063_Vuvuzela": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_063_Vuvuzela",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_064_Gumshoe": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_064_Gumshoe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_065_SpeedyRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_065_SpeedyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_066_FlintlockRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_066_FlintlockRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_067_Taxi": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_067_Taxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_068_Drift": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_068_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_069_DarkViking": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_069_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_070_Viking": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_070_Viking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_071_StreetRacer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_071_StreetRacer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_072_Luchador": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_072_Luchador",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_073_Balloon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_073_Balloon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_074_SharpDresser": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_074_SharpDresser",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_075_Huya": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_075_Huya",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_076_Douyu": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_076_Douyu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_077_CarbideWhite": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_077_CarbideWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_078_Lifeguard": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_078_Lifeguard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_079_ModernMilitary": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_079_ModernMilitary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_080_Scuba": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_080_Scuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_081_StreetRacerCobra": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_081_StreetRacerCobra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_082_SushiChef": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_082_SushiChef",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_083_Exercise": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_083_Exercise",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_084_DurrburgerHero": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_084_DurrburgerHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_085_Wukong": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_085_Wukong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_086_Biker": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_086_Biker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_087_Hippie": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_087_Hippie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_088_PSBurnout": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_088_PSBurnout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_089_RavenQuill": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_089_RavenQuill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_090_SamuraiBlue": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_090_SamuraiBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_091_Hacivat": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_091_Hacivat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_092_Bling": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_092_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_093_Medic": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_093_Medic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_094_Football": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_094_Football",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_095_FootballTrophy": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_095_FootballTrophy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_096_FootballReferee": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_096_FootballReferee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_097_RaptorArcticCamo": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_097_RaptorArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_098_GarageBand": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_098_GarageBand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_099_ModernMilitaryRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_099_ModernMilitaryRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_100_DieselPunk": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_100_DieselPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_101_Octoberfest": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_101_Octoberfest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_102_RedRiding": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_102_RedRiding",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_103_FortniteDJ": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_103_FortniteDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_104_Cowgirl": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_104_Cowgirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_105_Scarecrow": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_105_Scarecrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_106_DarkBomber": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_106_DarkBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_107_HalloweenTomato": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_107_HalloweenTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_107_Plague": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_107_Plague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_108_PumpkinSlice": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_108_PumpkinSlice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_109_SkullTrooper": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_109_SkullTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_110_Vampire": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_110_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_111_BlackWidow": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_111_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_112_GuanYu": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_112_GuanYu",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_113_Muertos": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_113_Muertos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_114_BadassCowboyCowSkull": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_114_BadassCowboyCowSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_115_EvilCowboy": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_115_EvilCowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_116_Celestial": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_116_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_117_MadCommander": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_117_MadCommander",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_118_StreetOps": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_118_StreetOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_119_AnimalJackets": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_119_AnimalJackets",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_120_SamuraiUltraArmor": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_120_SamuraiUltraArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_121_RobotRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_121_RobotRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_122_Witch": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_122_Witch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_123_HornedMask": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_123_HornedMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_124_Feathers": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_124_Feathers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_125_Moth": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_125_Moth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_126_Yeti": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_126_Yeti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_127_Rhino": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_127_Rhino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_131_Nautilus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_131_Nautilus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_131_NeonCat": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_131_NeonCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_132_ArcticSniper": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_132_ArcticSniper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_133_Demon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_133_Demon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_133_IceKing": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_133_IceKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_134_Snowman": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_134_Snowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_135_SnowNinja": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_135_SnowNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_136_Math": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_136_Math",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_137_NutCracker": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_137_NutCracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_138_Gnome": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_138_Gnome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_139_Gingerbread": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_139_Gingerbread",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_140_StreetGoth": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_140_StreetGoth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_141_Krampus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_141_Krampus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_142_TeriyakiFish": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_142_TeriyakiFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_143_FlintlockWinter": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_143_FlintlockWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_144_Angel": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_144_Angel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_145_IceMaiden": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_145_IceMaiden",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_146_MilitaryFashion": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_146_MilitaryFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_147_TechOps": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_147_TechOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_148_Barbarian": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_148_Barbarian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_149_WavyMan": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_149_WavyMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_150_IceQueen": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_150_IceQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1",
+ "Emissive2",
+ "Emissive3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_151_AlienFishhead": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_151_AlienFishhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_152_DragonMask": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_152_DragonMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_153_RoseLeader": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_153_RoseLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_154_Squishy": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_154_Squishy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_155_ValentinesFrozen": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_155_ValentinesFrozen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_156_RavenQuillFrozen": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_156_RavenQuillFrozen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_157_Dumpling": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_157_Dumpling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_158_FuzzyBear": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_158_FuzzyBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_159_RobotTrouble": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_159_RobotTrouble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_160_IceCream": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_160_IceCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_161_LoveLlama": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_161_LoveLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_162_SkullBrite": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_162_SkullBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_163_PirateOctopus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_163_PirateOctopus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_164_DragonNinja": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_164_DragonNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive1",
+ "owned": [
+ "Emissive1",
+ "Emissive2",
+ "Emissive3",
+ "Emissive4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_165_MasterKey": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_165_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_166_Shiny": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_166_Shiny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_167_Medusa": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_167_Medusa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_168_Bandolier": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_168_Bandolier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_169_Farmer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_169_Farmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_170_Aztec": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_170_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_171_OrangeCamo": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_171_OrangeCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_172_BandageNinja": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_172_BandageNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_173_SciOps": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_173_SciOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_174_LuckyRider": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_174_LuckyRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_175_Tropical": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_175_Tropical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_176_DevilRock": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_176_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_177_EvilSuit": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_177_EvilSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_178_SpeedyMidnight": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_178_SpeedyMidnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_179_StarWand": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_179_StarWand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_180_TriStar": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_180_TriStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_181_Log": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_181_Log",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_182_PirateWheel": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_182_PirateWheel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_183_BaseballBat2018": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_183_BaseballBat2018",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_184_DarkShaman": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_184_DarkShaman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_185_BadassCowboyCactus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_185_BadassCowboyCactus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_186_DemonStone": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_186_DemonStone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_187_FurnaceFace": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_187_FurnaceFace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_188_StreetAssassin": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_188_StreetAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_189_StreetOpsStealth": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_189_StreetOpsStealth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_190_GolfClub": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_190_GolfClub",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_191_Banana": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_191_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_192_PalmTree": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_192_PalmTree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_193_HotDog": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_193_HotDog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_194_TheBomb": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_194_TheBomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_195_SpaceBunny": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_195_SpaceBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_196_EvilBunny": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_196_EvilBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_197_HoppityHeist": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_197_HoppityHeist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_198_BountyBunny": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_198_BountyBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_199_ShinyHammer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_199_ShinyHammer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_200_MoonlightAssassin": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_200_MoonlightAssassin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_201_Swashbuckler": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_201_Swashbuckler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_202_AshtonBoardwalk": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_202_AshtonBoardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_203_AshtonSaltLake": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_203_AshtonSaltLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_204_Miner": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_204_Miner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_205_StrawberryPilot": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_205_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_206_StrawberryPilot_1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_206_StrawberryPilot_1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_207_BountyHunter": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_207_BountyHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_208_Masako": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_208_Masako",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_209_BattleSuit": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_209_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_210_BunkerMan": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_210_BunkerMan",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_211_BunkerMan_1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_211_BunkerMan_1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_212_CyberScavenger": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_212_CyberScavenger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_213_AssassinSuitSledgehammer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_213_AssassinSuitSledgehammer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_214_Geisha": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_214_Geisha",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_215_Pug": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_215_Pug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_216_DemonHunter1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_216_DemonHunter1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_217_UrbanScavenger1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_217_UrbanScavenger1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_218_StormSoldier": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_218_StormSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_219_BandageNinja1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_219_BandageNinja1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_220_ForkKnife1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_220_ForkKnife1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_221_SkullBriteEclipse": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_221_SkullBriteEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_222_Banner": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_222_Banner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_223_Jellyfish": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_223_Jellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_224_Butterfly": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_224_Butterfly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_225_Caterpillar": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_225_Caterpillar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_226_CyberFuBlade": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_226_CyberFuBlade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_227_FemaleGlowBro": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_227_FemaleGlowBro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_228_MaleGlowBro": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_228_MaleGlowBro",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_229_TechMage": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_229_TechMage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_230_Drift1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_230_Drift1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_231_Flamingo2": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_231_Flamingo2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_232_Grillin1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_232_Grillin1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_233_Birthday2019": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_233_Birthday2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_234_CyberKarate": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_234_CyberKarate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_235_Lasagna": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_235_Lasagna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_236_Multibot1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_236_Multibot1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_237_Warpaint": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_237_Warpaint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_238_Bubblegum": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_238_Bubblegum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_239_PizzaPitPJ1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_239_PizzaPitPJ1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_240_GraffitiRemix1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_240_GraffitiRemix1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_241_KnightRemix": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_241_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_242_SparkleRemix": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_242_SparkleRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_243_DJRemix": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_243_DJRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_244_RustRemix1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_244_RustRemix1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_245_VoyagerRemix1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_245_VoyagerRemix1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_246_BlueBadass1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_246_BlueBadass1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_247_BoneWasp": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_247_BoneWasp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_248_MechPilot": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_248_MechPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_249_Squishy1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_249_Squishy1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_250_Lopex": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_250_Lopex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_251_MascotMilitiaBurger": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_251_MascotMilitiaBurger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_252_MascotMilitiaTomato": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_252_MascotMilitiaTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_253_StarWalker": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_253_StarWalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_254_Syko": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_254_Syko",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_255_WiseMaster": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_255_WiseMaster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_256_TechOpsBlue": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_256_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_257_FrostMystery1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_257_FrostMystery1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_258_RockerPunkCube1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_258_RockerPunkCube1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_259_CupidFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_259_CupidFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_260_AngelEclipse1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_260_AngelEclipse1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_261_DarkEagleFire1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_261_DarkEagleFire1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_262_FutureBikerWhite": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_262_FutureBikerWhite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_263_JonesyCube": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_263_JonesyCube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_264_LemonLime1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_264_LemonLime1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_265_BarbequeLarry1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_265_BarbequeLarry1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_266_PaddedArmor": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_266_PaddedArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_267_RaptorBlackOps": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_267_RaptorBlackOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_268_ToxicKitty1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_268_ToxicKitty1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_269_WWIIPilotSciFi": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_269_WWIIPilotSciFi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_270_Jumpstart": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_270_Jumpstart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_271_Punchy": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_271_Punchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_272_SleepyTime": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_272_SleepyTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_273_StreetFashionRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_273_StreetFashionRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_274_StreetUrchin": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_274_StreetUrchin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_275_Traveler": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_275_Traveler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_277_BlackMondayMale_5TLSD": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_277_BlackMondayMale_5TLSD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_278_BrightGunnerRemix1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_278_BrightGunnerRemix1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_279_MaleLlamaHeroMilitia": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_279_MaleLlamaHeroMilitia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_280_MascotMilitiaCuddle1h": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_280_MascotMilitiaCuddle1h",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_281_BulletBlueFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_281_BulletBlueFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_282_CODSquadPlaidFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_282_CODSquadPlaidFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_283_CODSquadPlaidMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_283_CODSquadPlaidMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_284_CrazyEight1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_284_CrazyEight1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_285_CuddleTeamDark": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_285_CuddleTeamDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_286_FishermanFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_286_FishermanFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_287_RockClimber1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_287_RockClimber1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_288_RebirthMedicFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_288_RebirthMedicFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage0",
+ "owned": [
+ "Stage0",
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_289_RedRidingRemixFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_289_RedRidingRemixFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_290_Sheath1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_290_Sheath1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_291_SlurpMonster": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_291_SlurpMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_292_TacticalFisherman1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_292_TacticalFisherman1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_293_Viper": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_293_Viper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_294_CandyCane": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_294_CandyCane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_295_DarkDino1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_295_DarkDino1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_296_DevilRockMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_296_DevilRockMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_297_FlowerSkeletonFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_297_FlowerSkeletonFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_298_Freak1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_298_Freak1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_299_GoatRobe": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_299_GoatRobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_300_Mastermind": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_300_Mastermind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_301_ModernWitch": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_301_ModernWitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_302_TourBus1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_302_TourBus1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_303_Nosh": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_303_Nosh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_304_NoshHunter1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_304_NoshHunter1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_305_Phantom1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_305_Phantom1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_306_PunkDevil": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_306_PunkDevil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_307_SkeletonHunter": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_307_SkeletonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_308_SpookyNeonMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_308_SpookyNeonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_309_Storm": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_309_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_310_SubmarinerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_310_SubmarinerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_311_JetSkiFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_311_JetSkiFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_312_JetSkiMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_312_JetSkiMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_313_ShiitakeShaolinMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_313_ShiitakeShaolinMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_314_WeepingWoodsMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_314_WeepingWoodsMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_315_BaneFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_315_BaneFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_316_BigChuggus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_316_BigChuggus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_317_BoneSnake1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_317_BoneSnake1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_318_BulletBlueMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_318_BulletBlueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_319_CavalryBanditFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_319_CavalryBanditFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_320_ForestDwellerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_320_ForestDwellerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_321_ForestQueenFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_321_ForestQueenFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_322_FrogmanMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_322_FrogmanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_323_PinkTrooperMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_323_PinkTrooperMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_324_NorthPole": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_324_NorthPole",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_325_FestivePugMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_325_FestivePugMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_326_GalileoFerry1H_F5IUA": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_326_GalileoFerry1H_F5IUA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_327_GalileoKayak_50NFG": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_327_GalileoKayak_50NFG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_328_GalileoRocket_SNC0L": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_328_GalileoRocket_SNC0L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_329_GingerbreadCookie1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_329_GingerbreadCookie1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_330_HolidayTimeMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_330_HolidayTimeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_331_KaneMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_331_KaneMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_332_MintMiner": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_332_MintMiner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_333_MsAlpineFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_333_MsAlpineFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_334_SweaterWeatherMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_334_SweaterWeatherMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_335_TacticalBearMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_335_TacticalBearMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_336_TNTinaFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_336_TNTinaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_337_WingedFuryFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_337_WingedFuryFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_338_BandageNinjaBlue1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_338_BandageNinjaBlue1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_339_CODSquadHoodie": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_339_CODSquadHoodie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_340_DragonRacerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_340_DragonRacerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_341_FrogmanFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_341_FrogmanFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_342_GummiMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_342_GummiMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_343_HoodieBanditFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_343_HoodieBanditFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_344_MartialArtistMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_344_MartialArtistMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_345_ModernMilitaryEclipse": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_345_ModernMilitaryEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_346_NeonGraffiti": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_346_NeonGraffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_348_SharkAttackMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_348_SharkAttackMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_349_StreetRatMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_349_StreetRatMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_350_TheGoldenSkeleton": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_350_TheGoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_351_TigerFashionFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_351_TigerFashionFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_352_VirtualShadowMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_352_VirtualShadowMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_353_AgentAce1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_353_AgentAce1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_354_AgentRogue1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_354_AgentRogue1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_355_BuffCatMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_355_BuffCatMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_356_CandyMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_356_CandyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_357_CatBurglarMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_357_CatBurglarMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_358_CuteDuoMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_358_CuteDuoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_359_CycloneMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_359_CycloneMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_360_DesertOpsCamoFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_360_DesertOpsCamoFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_361_HenchmanMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_361_HenchmanMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_362_LollipopFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_362_LollipopFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_363_LollipopTricksterFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_363_LollipopTricksterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_364_PhotographerFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_364_PhotographerFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_365_SpyTechHackerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_365_SpyTechHackerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_366_SpyMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_366_SpyMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_367_WinterHunter": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_367_WinterHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_368_BananaAgent": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_368_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_369_AnarchyAcresFarmer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_369_AnarchyAcresFarmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_370_BlueFlames": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_370_BlueFlames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_371_PineappleBandit1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_371_PineappleBandit1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_372_StreetFashionEmeraldFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_372_StreetFashionEmeraldFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_373_TeriyakiFishAssassin1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_373_TeriyakiFishAssassin1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_374_TwinDarkFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_374_TwinDarkFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_375_AgentXFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_375_AgentXFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_376_FNCS": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_376_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_377_SpyTechFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_377_SpyTechFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_378_SpyTechMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_378_SpyTechMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_379_TailorMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_379_TailorMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_380_TargetPracticeMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_380_TargetPracticeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_381_CardboardCrew": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_381_CardboardCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_382_Donut1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_382_Donut1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_383_HandymanMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_383_HandymanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_384_InformerMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_384_InformerMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_385_BadEggMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_385_BadEggMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_386_CometMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_386_CometMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_387_DonutCup": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_387_DonutCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_388_DonutDish1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_388_DonutDish1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_389_DonutPlate1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_389_DonutPlate1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_390_FemaleHitman1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_390_FemaleHitman1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_391_GraffitiAssassinFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_391_GraffitiAssassinFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_392_Hostile": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_392_Hostile",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_393_NeonCatSpyFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_393_NeonCatSpyFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_394_RaveNinjaFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_394_RaveNinjaFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_395_SplinterMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_395_SplinterMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_396_RapVillainessFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_396_RapVillainessFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_397_TechExplorerMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_397_TechExplorerMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_398_WildCatFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_398_WildCatFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_399_LoofahFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_399_LoofahFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_400_AquaJacketMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_400_AquaJacketMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_401_BeaconMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_401_BeaconMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_402_BlackKnightFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_402_BlackKnightFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_403_CavalryBanditShadow1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_403_CavalryBanditShadow1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_404_GatorMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_404_GatorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_406_HardcoreSportzFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_406_HardcoreSportzFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_407_HeistShadow": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_407_HeistShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_408_MastermindShadow": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_408_MastermindShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_409_MechanicalEngineer1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_409_MechanicalEngineer1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_410_OceanRiderFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_410_OceanRiderFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_411_PartyGoldMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_411_PartyGoldMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_412_ProfessorPupMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_412_ProfessorPupMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_413_PythonFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_413_PythonFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_414_RacerZero": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_414_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_415_SandcastleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_415_SandcastleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_416_SpaceWandererFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_416_SpaceWandererFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_417_TacticalScubaMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_417_TacticalScubaMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_418_CupidDarkFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_418_CupidDarkFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_419_JonesyVagabondMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_419_JonesyVagabondMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_420_CandyAppleSour_JXBZA": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_420_CandyAppleSour_JXBZA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_421_CandySummerFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_421_CandySummerFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_422_GolfSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_422_GolfSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_423_GreenJacketFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_423_GreenJacketFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_424_HeartBreakerFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_424_HeartBreakerFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_425_MsWhipFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_425_MsWhipFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_426_PunkDevilSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_426_PunkDevilSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_427_Seaweed1H_CZ9HA": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_427_Seaweed1H_CZ9HA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_428_SharkSuitMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_428_SharkSuitMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_429_CelestialFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_429_CelestialFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_430_DirtyDocksFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_430_DirtyDocksFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_431_DirtyDocksMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_431_DirtyDocksMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_432_Dummeez": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_432_Dummeez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_433_LawnGnome": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_433_LawnGnome",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_434_MilitaryFashionSummerMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_434_MilitaryFashionSummerMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_435_TeriyakiAtlantisMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_435_TeriyakiAtlantisMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_436_AnglerFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_436_AnglerFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_438_AntiLlamaFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_438_AntiLlamaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_439_AxlMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_439_AxlMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_440_FloatillaCaptainMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_440_FloatillaCaptainMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_441_IslanderFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_441_IslanderFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_442_LadyAtlantisFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_442_LadyAtlantisFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_443_MaskedDancerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_443_MaskedDancerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_444_MultibotStealth1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_444_MultibotStealth1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_445_RaiderPinkFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_445_RaiderPinkFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_446_SeaSalt": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_446_SeaSalt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_447_SpaceWandererMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_447_SpaceWandererMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_448_SportsFashionFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_448_SportsFashionFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_449_TripleScoopFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_449_TripleScoopFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_450_Valet": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_450_Valet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_451_DarkEaglePurple": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_451_DarkEaglePurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_452_DarkNinjaPurple1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_452_DarkNinjaPurple1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_453_HightowerDate": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_453_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_454_HightowerGrapeMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_454_HightowerGrapeMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_455_HightowerHoneydew1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_455_HightowerHoneydew1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_456_HightowerMango1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_456_HightowerMango1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_457_HightowerSquash1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_457_HightowerSquash1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_458_HightowerTapas1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_458_HightowerTapas1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_459_HightowerTomato1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_459_HightowerTomato1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_460_HightowerWasabi1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_460_HightowerWasabi1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_461_SkullBriteCube": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_461_SkullBriteCube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_462_Soy_4CW52": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_462_Soy_4CW52",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_463_Elastic1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_463_Elastic1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_464_LongShortsMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_464_LongShortsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_465_BackspinMale1H_R40E7": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_465_BackspinMale1H_R40E7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_466_CavalryFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_466_CavalryFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_467_CloakedAssassinFemale1H_XGC2B": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_467_CloakedAssassinFemale1H_XGC2B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_468_KevinCoutureMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_468_KevinCoutureMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_469_MythFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_469_MythFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_470_MythMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_470_MythMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_471_StreetFashionGarnetFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_471_StreetFashionGarnetFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_472_TeriyakiFishPrincessFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_472_TeriyakiFishPrincessFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_473_VampireCasualFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_473_VampireCasualFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_474_BlackWidowJacketFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_474_BlackWidowJacketFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_475_ChOnePickaxe": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_475_ChOnePickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_476_DarkBomberSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_476_DarkBomberSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_477_DeliSandwichMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_477_DeliSandwichMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_478_FlowerSkeletonMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_478_FlowerSkeletonMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_479_LunchBox1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_479_LunchBox1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_480_PoisonFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_480_PoisonFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_481_SpookyNeonFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_481_SpookyNeonFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_482_BabaYagaFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_482_BabaYagaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_483_DurrburgerSkull1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_483_DurrburgerSkull1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_484_FamineMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_484_FamineMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_485_FrankieFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_485_FrankieFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_486_JekyllMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_486_JekyllMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_487_PumpkinPunk": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_487_PumpkinPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_488_PumpkinSpice1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_488_PumpkinSpice1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_489_PumpkinSpiceHammer": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_489_PumpkinSpiceHammer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_490_TeriyakiFishSkull1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_490_TeriyakiFishSkull1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_491_YorkMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_491_YorkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_492_EmbersMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_492_EmbersMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_493_NauticalPajamasMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_493_NauticalPajamasMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_494_NauticalPajamasNightMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_494_NauticalPajamasNightMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_495_NauticalPajamasUnderwaterMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_495_NauticalPajamasUnderwaterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_496_ParcelGoldMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_496_ParcelGoldMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_497_ParcelPetalFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_497_ParcelPetalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_498_ParcelPrankHammerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_498_ParcelPrankHammerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_499_ParcelPrankMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_499_ParcelPrankMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_500_TapDanceFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_500_TapDanceFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_501_EternityFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_501_EternityFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_502_PiemanMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_502_PiemanMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_503_RaiderSilverFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_503_RaiderSilverFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_504_VertigoMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_504_VertigoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_505_AncientGladiatorMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_505_AncientGladiatorMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_506_FlapjackWranglerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_506_FlapjackWranglerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_507_FutureSamuraiMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_507_FutureSamuraiMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_508_HistorianMale_6BQSW": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_508_HistorianMale_6BQSW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_509_IceClaw1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_509_IceClaw1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_510_JupiterMale_G035V": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_510_JupiterMale_G035V",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_511_LexaFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_511_LexaFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_512_RenegadeRaiderHolidayFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_512_RenegadeRaiderHolidayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_513_ShapeshifterFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_513_ShapeshifterFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_514_SnowmanFashion": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_514_SnowmanFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_515_SpaceFighterFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_515_SpaceFighterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle0",
+ "owned": [
+ "Particle0",
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_516_TeriyakiFishElf1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_516_TeriyakiFishElf1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_517_CherryFemale_Z0S97": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_517_CherryFemale_Z0S97",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_518_CupidWinterFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_518_CupidWinterFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_519_DriftWinterMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_519_DriftWinterMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_520_FancyCandyMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_520_FancyCandyMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_521_FestiveMoose": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_521_FestiveMoose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_522_FrostbyteMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_522_FrostbyteMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_523_HolidayLightsMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_523_HolidayLightsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_524_Neon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_524_Neon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_525_PlumRetro1H_3FBV3": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_525_PlumRetro1H_3FBV3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_526_SnowboarderMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_526_SnowboarderMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_527_Stars": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_527_Stars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_528_StreetFashionHolidayFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_528_StreetFashionHolidayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_529_TiptoeMale_MQ5UM": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_529_TiptoeMale_MQ5UM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_530_TiramisuMale1H_R94F2": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_530_TiramisuMale1H_R94F2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_531_Turkey1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_531_Turkey1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_532_WombatFemale_CWE2D": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_532_WombatFemale_CWE2D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_533_WombatMale_L7QPQ": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_533_WombatMale_L7QPQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_534_CombatDollFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_534_CombatDollFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_539_LexaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_539_LexaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_540_NightmareMale_7OSOH": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_540_NightmareMale_7OSOH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_541_StreetFashionEclipseFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_541_StreetFashionEclipseFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_543_TyphoonRobotMale_S4B4M": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_543_TyphoonRobotMale_S4B4M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_544_FoxWarriorFemale_BYVM8": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_544_FoxWarriorFemale_BYVM8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_545_CrushFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_545_CrushFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_546_MainframeMale_XW9S6": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_546_MainframeMale_XW9S6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_547_StreetCuddlesMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_547_StreetCuddlesMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_548_TarMale_8X3BY": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_548_TarMale_8X3BY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_549_AncientGladiatorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_549_AncientGladiatorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_550_CasualBomberLightFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_550_CasualBomberLightFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_551_KeplerFemale_AOYI5": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_551_KeplerFemale_AOYI5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_552_LlamaHeroWinterMale_S9MDN": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_552_LlamaHeroWinterMale_S9MDN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_553_SkirmishFemale_J2JXX": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_553_SkirmishFemale_J2JXX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_554_SkirmishMale_ML78Q": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_554_SkirmishMale_ML78Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_555_BuilderMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_555_BuilderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_556_CatBurglarFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_556_CatBurglarFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_557_LionSoldierMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_557_LionSoldierMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_558_SmallFryMale_YBD34": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_558_SmallFryMale_YBD34",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_559_SpaceWarriorMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_559_SpaceWarriorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_560_TacticalWoodlandBlueMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_560_TacticalWoodlandBlueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_561_AssembleR": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_561_AssembleR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_562_BananaLeader": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_562_BananaLeader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_563_ChickenWarriorMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_563_ChickenWarriorMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_564_CubeNinjaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_564_CubeNinjaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_565_DarkMinionMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_565_DarkMinionMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_566_DinoHunterFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_566_DinoHunterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_567_NeonCatFashionFemale_FX9S5": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_567_NeonCatFashionFemale_FX9S5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_568_ObsidianFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_568_ObsidianFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_569_ScholarFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_569_ScholarFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_570_Temple": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_570_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_571_TowerSentinelFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_571_TowerSentinelFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_572_BunnyFashionFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_572_BunnyFashionFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_573_HipHareMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_573_HipHareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_574_SailorSquadLeaderFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_574_SailorSquadLeaderFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_575_SailorSquadRebelFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_575_SailorSquadRebelFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_576_SailorSquadRoseFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_576_SailorSquadRoseFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_578_WickedDuckFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_578_WickedDuckFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_579_WickedDuckMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_579_WickedDuckMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_580_AccumulateMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_580_AccumulateMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_581_Alchemy_HKAS0": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_581_Alchemy_HKAS0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_585_TerrainManMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_585_TerrainManMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_586_ArmoredEngineerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_586_ArmoredEngineerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_587_BicycleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_587_BicycleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_588_BuffCatComicMale_12ZAD": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_588_BuffCatComicMale_12ZAD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_589_CavernMale_9U0A8": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_589_CavernMale_9U0A8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_590_CraniumMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_590_CraniumMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_591_DinoCollectorFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_591_DinoCollectorFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_592_DurrburgerKnightMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_592_DurrburgerKnightMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_593_RaptorKnightMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_593_RaptorKnightMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_594_TacoKnightFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_594_TacoKnightFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_595_TacticalRedPunkFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_595_TacticalRedPunkFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_596_TomatoKnightMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_596_TomatoKnightMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_597_BroccoliMale_GMZ6W": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_597_BroccoliMale_GMZ6W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_598_CavemanMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_598_CavemanMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_599_CavernFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_599_CavernFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_600_DarkElfFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_600_DarkElfFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_601_StoneViperFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_601_StoneViperFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_602_TaxiUpgradedMulticolorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_602_TaxiUpgradedMulticolorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_603_AssembleL": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_603_AssembleL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_604_DownpourMale_Z48CM": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_604_DownpourMale_Z48CM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_605_GrimMale_8GT61": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_605_GrimMale_8GT61",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_606_ShrapnelFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_606_ShrapnelFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_607_SpaceCuddlesFemale_0ECBA": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_607_SpaceCuddlesFemale_0ECBA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle3",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_608_SpartanFutureFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_608_SpartanFutureFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_610_TowerSentinelMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_610_TowerSentinelMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_611_WastelandWarriorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_611_WastelandWarriorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_612_AntiqueMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_612_AntiqueMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_613_BelieverFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_613_BelieverFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_614_EmperorMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_614_EmperorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_615_FauxMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_615_FauxMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_616_InnovatorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_616_InnovatorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_617_InvaderMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_617_InvaderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5",
+ "Particle6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_618_JonesyCattleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_618_JonesyCattleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_619_Rockstar_Female": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_619_Rockstar_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_620_Ruckus": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_620_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_621_CarabusMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_621_CarabusMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_622_CatBurglarSummerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_622_CatBurglarSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_623_CavernArmoredMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_623_CavernArmoredMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_624_FirecrackerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_624_FirecrackerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_625_HenchmanSummerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_625_HenchmanSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_626_JurassicArchaeologySummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_626_JurassicArchaeologySummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_627_LinguiniMale_2ZOX0": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_627_LinguiniMale_2ZOX0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_628_MajestyMale_514VT": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_628_MajestyMale_514VT",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_629_MechanicalEngineerSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_629_MechanicalEngineerSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_630_SlurpMonsterSummerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_630_SlurpMonsterSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_631_StreetFashionSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_631_StreetFashionSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_632_SummerMarshmallowFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_632_SummerMarshmallowFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_633_BlueCheeseMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_633_BlueCheeseMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_634_BrightBomberMintFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_634_BrightBomberMintFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_635_BuffCatFanFemale_J642P": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_635_BuffCatFanFemale_J642P",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_636_DojoMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_636_DojoMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_637_Golf_Male": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_637_Golf_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_638_MusicianFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_638_MusicianFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_639_PliantFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_639_PliantFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_640_PliantMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_640_PliantMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_641_TheGoldenSkeletonMintMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_641_TheGoldenSkeletonMintMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_642_TreasureHunterFashionMintFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_642_TreasureHunterFashionMintFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_643_AlienSummerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_643_AlienSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_644_BuffetFemale_TOH8A": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_644_BuffetFemale_TOH8A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_645_QuarrelFemale_W3B7A": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_645_QuarrelFemale_W3B7A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_646_QuarrelMale_PTOBI": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_646_QuarrelMale_PTOBI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_647_SeesawSlipperMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_647_SeesawSlipperMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_648_StereoFemale_0DTZ9": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_648_StereoFemale_0DTZ9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_649_AntiquePalMale1H_GBT24": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_649_AntiquePalMale1H_GBT24",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_650_CelestialGlowFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_650_CelestialGlowFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_651_KeyboardMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_651_KeyboardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_652_LarsMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_652_LarsMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_653_LavishMale1H_SWKJB": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_653_LavishMale1H_SWKJB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_654_MaskedWarriorSpringMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_654_MaskedWarriorSpringMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_655_MonarchFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_655_MonarchFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_656_NinjaWolfMale_7PTDP": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_656_NinjaWolfMale_7PTDP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_657_PolygonMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_657_PolygonMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_658_PolygonMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_658_PolygonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_659_RuckusMini_O051M": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_659_RuckusMini_O051M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_660_TieDyeFashionFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_660_TieDyeFashionFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_661_VividMale1H_ZN6Q0": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_661_VividMale1H_ZN6Q0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_662_AlienFloraMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_662_AlienFloraMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_663_AngelDarkFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_663_AngelDarkFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_664_DragonfruitMale1H_4BIXL": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_664_DragonfruitMale1H_4BIXL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_665_BuffLlamaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_665_BuffLlamaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle3",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_666_CerealBoxMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_666_CerealBoxMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_667_ClashMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_667_ClashMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_668_ClashVMale1H_5TA18": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_668_ClashVMale1H_5TA18",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_669_DivisionFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_669_DivisionFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_670_FNBirthdayMale_FQK1E": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_670_FNBirthdayMale_FQK1E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_671_GhostHunterFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_671_GhostHunterFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_672_PunkKoiFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_672_PunkKoiFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_673_SpaceChimpMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_673_SpaceChimpMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_674_TeriyakiFishToonMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_674_TeriyakiFishToonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "JerseyColor",
+ "active": "001",
+ "owned": [
+ "001",
+ "002",
+ "003",
+ "004",
+ "005",
+ "006",
+ "007",
+ "008",
+ "009",
+ "010",
+ "011",
+ "012",
+ "013",
+ "014",
+ "015",
+ "016",
+ "017",
+ "018",
+ "019",
+ "020",
+ "021",
+ "022"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_675_TextilePupMale_96JZF": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_675_TextilePupMale_96JZF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_676_CritterFrenzyMale_B21OE": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_676_CritterFrenzyMale_B21OE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_677_CritterCuddleMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_677_CritterCuddleMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_678_PsycheMale_81RMH": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_678_PsycheMale_81RMH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_679_RenegadeSkullFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_679_RenegadeSkullFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_680_TomcatMale_LOSMX": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_680_TomcatMale_LOSMX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_681_WerewolfFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_681_WerewolfFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_682_BistroAstronautFemale_A3MD2": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_682_BistroAstronautFemale_A3MD2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_683_CritterManiacMale_S4I63": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_683_CritterManiacMale_S4I63",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_684_CubeQueenFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_684_CubeQueenFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_685_DisguiseBlackFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_685_DisguiseBlackFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat2",
+ "owned": [
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_686_DriftHorrorMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_686_DriftHorrorMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_687_GiggleMale_YCQ4S": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_687_GiggleMale_YCQ4S",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_688_PinkEmoFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_688_PinkEmoFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_689_RavenQuillDesertMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_689_RavenQuillDesertMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_690_RelishFemale_DC74M": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_690_RelishFemale_DC74M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_691_RelishMale_FVCA7": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_691_RelishMale_FVCA7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_692_SnowJacketFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_692_SnowJacketFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_693_SunriseCastle1H_5XE1U": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_693_SunriseCastle1H_5XE1U",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_694_SunrisePalace1H_SDI6M": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_694_SunrisePalace1H_SDI6M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_695_SweetTeriyakiMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_695_SweetTeriyakiMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4",
+ "Particle5"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_696_Grasshopper_Male_24OGH": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_696_Grasshopper_Male_24OGH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_697_SAMFemale1H_RV6AN": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_697_SAMFemale1H_RV6AN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_698_SupersonicPink_8VM90": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_698_SupersonicPink_8VM90",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_699_UproarBraidsFemale_LY5GM": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_699_UproarBraidsFemale_LY5GM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_700_ZombieElasticFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_700_ZombieElasticFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_701_CrazyEightTechMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_701_CrazyEightTechMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_702_GrandeurMale_6UV6L": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_702_GrandeurMale_6UV6L",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_703_HeadbandMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_703_HeadbandMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_704_HeadbandKMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_704_HeadbandKMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_705_HeadbandSMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_705_HeadbandSMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_706_HeadbandStandAloneMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_706_HeadbandStandAloneMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_707_NeonCatTechFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_707_NeonCatTechFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_708_NucleusMale_72W2J": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_708_NucleusMale_72W2J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_709_PeelyTechMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_709_PeelyTechMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_710_AssembleKMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_710_AssembleKMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_711_DarkPitMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_711_DarkPitMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_712_ExoSuitFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_712_ExoSuitFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_713_GumballMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_713_GumballMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_714_IslandNomadFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_714_IslandNomadFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_715_LoneWolfMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_715_LoneWolfMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_716_MotorcyclistFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_716_MotorcyclistFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_717_NetworkFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_717_NetworkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_718_ParallelComicMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_718_ParallelComicMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_719_RustyBoltFemale_0VJ7J": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_719_RustyBoltFemale_0VJ7J",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_720_RustyBoltMale_UZ5E5": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_720_RustyBoltMale_UZ5E5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_722_TurtleneckMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_722_TurtleneckMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_723_CatBurglarWinterMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_723_CatBurglarWinterMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_724_InnovatorFestiveFemale_EX2RM": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_724_InnovatorFestiveFemale_EX2RM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_725_JurassicArchaeologyWinterFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_725_JurassicArchaeologyWinterFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_726_KittyWarriorMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_726_KittyWarriorMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_727_LateralFemale_D9XJG": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_727_LateralFemale_D9XJG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_728_OrbitTealMale_3NIST": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_728_OrbitTealMale_3NIST",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_729_PeppermintFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_729_PeppermintFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_730_RenegadeRaiderIceFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_730_RenegadeRaiderIceFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_731_ScholarFestiveFemale1h": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_731_ScholarFestiveFemale1h",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_732_ShovelMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_732_ShovelMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_733_SlitherFemale_M1YCL": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_733_SlitherFemale_M1YCL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_734_SlitherMale_762K0": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_734_SlitherMale_762K0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_735_FoeMale_2T3KB": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_735_FoeMale_2T3KB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_736_KeenFemale_3LR4C": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_736_KeenFemale_3LR4C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_737_KeenMale_07J9U": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_737_KeenMale_07J9U",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_738_PrimalFalconFemale_S72BI": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_738_PrimalFalconFemale_S72BI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_739_SharpDresserDarkMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_739_SharpDresserDarkMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_740_SkullPunk_7K48Y": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_740_SkullPunk_7K48Y",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_741_UproarFemale_NDHS3": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_741_UproarFemale_NDHS3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_742_FlowerSkeletonLoveMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_742_FlowerSkeletonLoveMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_743_LoveQueenFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_743_LoveQueenFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_744_SleekGlassesMale_ID69U": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_744_SleekGlassesMale_ID69U",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_745_SleekMale_ECRL0": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_745_SleekMale_ECRL0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_746_ZestFemale_4Y9TG": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_746_ZestFemale_4Y9TG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_747_ZestMale_3KAEG": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_747_ZestMale_3KAEG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_748_GimmickFemale_2W2M2": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_748_GimmickFemale_2W2M2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_749_GimmickMale_5C033": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_749_GimmickMale_5C033",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_750_PeelyToonMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_750_PeelyToonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_751_RoverFemale_44TG1": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_751_RoverFemale_44TG1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_752_RoverMale_I98VZ": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_752_RoverMale_I98VZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_753_ValentinesFashionFemale_CPGK7": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_753_ValentinesFashionFemale_CPGK7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_754_WeepingWoodsToonMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_754_WeepingWoodsToonMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_755_AssemblePMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_755_AssemblePMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_756_Bizarre": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_756_Bizarre",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3",
+ "Particle4"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_757_BlizzardBomberFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_757_BlizzardBomberFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_758_JadeFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_758_JadeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_759_JetSkiCrystalFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_759_JetSkiCrystalFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_760_JourneyMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_760_JourneyMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_761_LeatherJacketPurpleFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_761_LeatherJacketPurpleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_762_LurkFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_762_LurkFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_763_ThriveFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_763_ThriveFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_764_ThriveSpiritFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_764_ThriveSpiritFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_765_BacteriaFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_765_BacteriaFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_766_BinaryFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_766_BinaryFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_767_CadetFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_767_CadetFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_768_CyberArmorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_768_CyberArmorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2"
+ ]
+ },
+ {
+ "channel": "Pattern",
+ "active": "Mat8",
+ "owned": [
+ "Mat8",
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ },
+ {
+ "channel": "Parts",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Numeric",
+ "active": "Stage10",
+ "owned": [
+ "Stage10",
+ "Stage11",
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage12",
+ "Stage13",
+ "Stage5",
+ "Stage8",
+ "Stage6",
+ "Stage15",
+ "Stage7",
+ "Stage14",
+ "Stage16",
+ "Stage9",
+ "Stage1"
+ ]
+ },
+ {
+ "channel": "Mesh",
+ "active": "Stage2",
+ "owned": [
+ "Stage2",
+ "Stage3",
+ "Stage10",
+ "Stage11",
+ "Stage12",
+ "Stage4",
+ "Stage5",
+ "Stage13",
+ "Stage16",
+ "Stage14",
+ "Stage7",
+ "Stage15",
+ "Stage6",
+ "Stage8",
+ "Stage1",
+ "Stage9"
+ ]
+ },
+ {
+ "channel": "JerseyColor",
+ "active": "Stage3",
+ "owned": [
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage6",
+ "Stage7",
+ "Stage15",
+ "Stage14",
+ "Stage8",
+ "Stage9",
+ "Stage11",
+ "Stage10",
+ "Stage2",
+ "Stage13",
+ "Stage12",
+ "Stage1"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Stage2",
+ "owned": [
+ "Stage2",
+ "Stage3",
+ "Stage4",
+ "Stage5",
+ "Stage7",
+ "Stage8",
+ "Stage6",
+ "Stage1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_769_JourneyMentorFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_769_JourneyMentorFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_770_KnightCatFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_770_KnightCatFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_771_LittleEggFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_771_LittleEggFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_772_MysticMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_772_MysticMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_773_OrderGuardMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_773_OrderGuardMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle4",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_774_SiennaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_774_SiennaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_775_SnowfallFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_775_SnowfallFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_776_TheOriginMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_776_TheOriginMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_777_CactusRockerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_777_CactusRockerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_778_CactusRockerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_778_CactusRockerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_779_VampireHunterFemale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_779_VampireHunterFemale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_780_AssassinSledgehammerCamo": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_780_AssassinSledgehammerCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_781_BlackbirdMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_781_BlackbirdMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_782_CactusDancerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_782_CactusDancerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_783_CactusDancerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_783_CactusDancerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_784_CroissantMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_784_CroissantMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_785_ForsakeFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_785_ForsakeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_787_LyricalFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_787_LyricalFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_788_LyricalMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_788_LyricalMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_789_MockingbirdFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_789_MockingbirdFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_790_NightingaleFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_790_NightingaleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_791_RumbleFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_791_RumbleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_792_RumbleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_792_RumbleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_793_BinaryTwinFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_793_BinaryTwinFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_794_CarbideKnightMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_794_CarbideKnightMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_795_DarkStormMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_795_DarkStormMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_796_IndigoMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_796_IndigoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_797_NeonCatSpeedFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_797_NeonCatSpeedFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_798_RaspberryFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_798_RaspberryFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_799_ShinyCreatureFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_799_ShinyCreatureFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_800_UltralightFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_800_UltralightFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_801_AlfredoMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_801_AlfredoMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_802_EternalVanguardFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_802_EternalVanguardFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_803_FlappyGreenMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_803_FlappyGreenMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_804_FNCSS20Male": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_804_FNCSS20Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_805_GlareMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_805_GlareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_806_ModNinjaMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_806_ModNinjaMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_807_NeonGraffitiLavaFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_807_NeonGraffitiLavaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_808_NobleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_808_NobleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_809_RavenQuillParrotFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_809_RavenQuillParrotFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_810_RebirthSoldierFreshMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_810_RebirthSoldierFreshMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_811_ArmadilloMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_811_ArmadilloMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_812_BlueJayFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_812_BlueJayFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_813_CanaryMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_813_CanaryMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_814_CollectableMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_814_CollectableMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_815_FuchsiaFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_815_FuchsiaFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_816_LancelotMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_816_LancelotMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ },
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_818_PinkWidowFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_818_PinkWidowFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_819_RealmMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_819_RealmMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_820_SpectacleWebMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_820_SpectacleWebMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_821_EnsembleFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_821_EnsembleFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_822_EnsembleSnakeMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_822_EnsembleSnakeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_823_GloomFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_823_GloomFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_824_RedSleevesMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_824_RedSleevesMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_825_BariumFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_825_BariumFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_826_ParfaitFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_826_ParfaitFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_827_RaysFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_827_RaysFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_828_TrifleMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_828_TrifleMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_829_DesertShadowBladeMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_829_DesertShadowBladeMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_830_FruitcakeFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_830_FruitcakeFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_831_FuzzyBearSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_831_FuzzyBearSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_832_OhanaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_832_OhanaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_833_PunkKoiSummerFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_833_PunkKoiSummerFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_834_PunkKoiSummerSaiFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_834_PunkKoiSummerSaiFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_835_SpyMaleFNCS1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_835_SpyMaleFNCS1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_836_SummerStrideFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_836_SummerStrideFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_837_SummerVividDollFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_837_SummerVividDollFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_838_SunBeamFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_838_SunBeamFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_839_SunStarMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_839_SunStarMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_840_SunTideMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_840_SunTideMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_841_ApexWildMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_841_ApexWildMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_842_ChaosFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_842_ChaosFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_843_DesertShadowMale1H": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_843_DesertShadowMale1H",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_844_FogFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_844_FogFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_845_FutureSamuraiSummerMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_845_FutureSamuraiSummerMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_846_StaminaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_846_StaminaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_847_StaminaMaleStandalone": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_847_StaminaMaleStandalone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_848_WayfareFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_848_WayfareFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_849_WayfareMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_849_WayfareMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_850_WayfareMaskFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_850_WayfareMaskFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_851_AstralFemale": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_851_AstralFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_852_Handlebar_Female": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_852_Handlebar_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_853_NeonJam": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_853_NeonJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_854_WildCard": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_854_WildCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW001_Tier_1": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW001_Tier_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW002_Tier_3": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW002_Tier_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW003_Tier_4": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW003_Tier_4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW004_Tier_5": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW004_Tier_5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW005_Tier_6": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW005_Tier_6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW006_Tier_7": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW006_Tier_7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_STW007_Basic": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_STW007_Basic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_TBD_CosmosWeapon": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_TBD_CosmosWeapon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ID_TBD_CrystalShard": {
+ "templateId": "AthenaPickaxe:Pickaxe_ID_TBD_CrystalShard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Imitator": {
+ "templateId": "AthenaPickaxe:Pickaxe_Imitator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Impulse": {
+ "templateId": "AthenaPickaxe:Pickaxe_Impulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Material",
+ "active": "Mat1",
+ "owned": [
+ "Mat1",
+ "Mat2",
+ "Mat3",
+ "Mat4",
+ "Mat5",
+ "Mat6",
+ "Mat7"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Inferno": {
+ "templateId": "AthenaPickaxe:Pickaxe_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_InspireSpell": {
+ "templateId": "AthenaPickaxe:Pickaxe_InspireSpell",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_IronBlaze": {
+ "templateId": "AthenaPickaxe:Pickaxe_IronBlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_IvyCross": {
+ "templateId": "AthenaPickaxe:Pickaxe_IvyCross",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_JollyTroll": {
+ "templateId": "AthenaPickaxe:Pickaxe_JollyTroll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_KeyTracker": {
+ "templateId": "AthenaPickaxe:Pickaxe_KeyTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Lettuce": {
+ "templateId": "AthenaPickaxe:Pickaxe_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_LettuceCat": {
+ "templateId": "AthenaPickaxe:Pickaxe_LettuceCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_LightningDragon": {
+ "templateId": "AthenaPickaxe:Pickaxe_LightningDragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Lilac": {
+ "templateId": "AthenaPickaxe:Pickaxe_Lilac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_LocalZilla": {
+ "templateId": "AthenaPickaxe:Pickaxe_LocalZilla",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Lockjaw": {
+ "templateId": "AthenaPickaxe:Pickaxe_Lockjaw",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Looper": {
+ "templateId": "AthenaPickaxe:Pickaxe_Looper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_LopexSnow": {
+ "templateId": "AthenaPickaxe:Pickaxe_LopexSnow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MagicMeadow": {
+ "templateId": "AthenaPickaxe:Pickaxe_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MagicMeadow_Reward": {
+ "templateId": "AthenaPickaxe:Pickaxe_MagicMeadow_Reward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MasterKeyOrderMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_MasterKeyOrderMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MechanicalEngineerRev": {
+ "templateId": "AthenaPickaxe:Pickaxe_MechanicalEngineerRev",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MechPilotSharkSpeed": {
+ "templateId": "AthenaPickaxe:Pickaxe_MechPilotSharkSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MercurialStorm": {
+ "templateId": "AthenaPickaxe:Pickaxe_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MetalScout": {
+ "templateId": "AthenaPickaxe:Pickaxe_MetalScout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MetalScoutGlare": {
+ "templateId": "AthenaPickaxe:Pickaxe_MetalScoutGlare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Meteorwomen_Alt": {
+ "templateId": "AthenaPickaxe:Pickaxe_Meteorwomen_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_MirageHike": {
+ "templateId": "AthenaPickaxe:Pickaxe_MirageHike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Mochi": {
+ "templateId": "AthenaPickaxe:Pickaxe_Mochi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Mouse": {
+ "templateId": "AthenaPickaxe:Pickaxe_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Nebula": {
+ "templateId": "AthenaPickaxe:Pickaxe_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_NightHawk": {
+ "templateId": "AthenaPickaxe:Pickaxe_NightHawk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_NitroFlow": {
+ "templateId": "AthenaPickaxe:Pickaxe_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Nox": {
+ "templateId": "AthenaPickaxe:Pickaxe_Nox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_OceanBreeze": {
+ "templateId": "AthenaPickaxe:Pickaxe_OceanBreeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Patches": {
+ "templateId": "AthenaPickaxe:Pickaxe_Patches",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PeelyToonSpring": {
+ "templateId": "AthenaPickaxe:Pickaxe_PeelyToonSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PencilCherry": {
+ "templateId": "AthenaPickaxe:Pickaxe_PencilCherry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Progressive",
+ "active": "Particle18",
+ "owned": [
+ "Particle18",
+ "Particle19",
+ "Particle20"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Photographer_Holiday_Female": {
+ "templateId": "AthenaPickaxe:Pickaxe_Photographer_Holiday_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PinkJet": {
+ "templateId": "AthenaPickaxe:Pickaxe_PinkJet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PinkSpike": {
+ "templateId": "AthenaPickaxe:Pickaxe_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PinkTrooper": {
+ "templateId": "AthenaPickaxe:Pickaxe_PinkTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PinkTrooper_Clobber": {
+ "templateId": "AthenaPickaxe:Pickaxe_PinkTrooper_Clobber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_PlotTwist": {
+ "templateId": "AthenaPickaxe:Pickaxe_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Possession": {
+ "templateId": "AthenaPickaxe:Pickaxe_Possession",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Quartz": {
+ "templateId": "AthenaPickaxe:Pickaxe_Quartz",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_RedPepper": {
+ "templateId": "AthenaPickaxe:Pickaxe_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_RenegadeRaider_Spark": {
+ "templateId": "AthenaPickaxe:Pickaxe_RenegadeRaider_Spark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_RoseDust": {
+ "templateId": "AthenaPickaxe:Pickaxe_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_RoseForm": {
+ "templateId": "AthenaPickaxe:Pickaxe_RoseForm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Ruins": {
+ "templateId": "AthenaPickaxe:Pickaxe_Ruins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SaharaMale": {
+ "templateId": "AthenaPickaxe:Pickaxe_SaharaMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SailorSquadLeaderKoi1h": {
+ "templateId": "AthenaPickaxe:Pickaxe_SailorSquadLeaderKoi1h",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SamuraiBlueLight": {
+ "templateId": "AthenaPickaxe:Pickaxe_SamuraiBlueLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ScarletBionic": {
+ "templateId": "AthenaPickaxe:Pickaxe_ScarletBionic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SharpFang": {
+ "templateId": "AthenaPickaxe:Pickaxe_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SharpSilver": {
+ "templateId": "AthenaPickaxe:Pickaxe_SharpSilver",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_ShinyStar": {
+ "templateId": "AthenaPickaxe:Pickaxe_ShinyStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Emissive",
+ "active": "Emissive0",
+ "owned": [
+ "Emissive0",
+ "Emissive1"
+ ]
+ },
+ {
+ "channel": "Material",
+ "active": "Mat0",
+ "owned": [
+ "Mat0",
+ "Mat1"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Silencer": {
+ "templateId": "AthenaPickaxe:Pickaxe_Silencer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SirWolf": {
+ "templateId": "AthenaPickaxe:Pickaxe_SirWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SnowSoldierFashion": {
+ "templateId": "AthenaPickaxe:Pickaxe_SnowSoldierFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Sparrow": {
+ "templateId": "AthenaPickaxe:Pickaxe_Sparrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SpookyNeonBlue": {
+ "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SpookyNeonOrange": {
+ "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonOrange",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SpookyNeonRed": {
+ "templateId": "AthenaPickaxe:Pickaxe_SpookyNeonRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SpyMale_FNCS_22": {
+ "templateId": "AthenaPickaxe:Pickaxe_SpyMale_FNCS_22",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_StallionAviator": {
+ "templateId": "AthenaPickaxe:Pickaxe_StallionAviator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_StallionSmoke": {
+ "templateId": "AthenaPickaxe:Pickaxe_StallionSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_SunBurstAlt": {
+ "templateId": "AthenaPickaxe:Pickaxe_SunBurstAlt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Sunlit": {
+ "templateId": "AthenaPickaxe:Pickaxe_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista": {
+ "templateId": "AthenaPickaxe:Pickaxe_TaxiUpgraded_Vista",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_TheHerald": {
+ "templateId": "AthenaPickaxe:Pickaxe_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_TigerRootFame": {
+ "templateId": "AthenaPickaxe:Pickaxe_TigerRootFame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_TigerRootHype": {
+ "templateId": "AthenaPickaxe:Pickaxe_TigerRootHype",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Titanium": {
+ "templateId": "AthenaPickaxe:Pickaxe_Titanium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Troops": {
+ "templateId": "AthenaPickaxe:Pickaxe_Troops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_TroubleMaker": {
+ "templateId": "AthenaPickaxe:Pickaxe_TroubleMaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Veiled": {
+ "templateId": "AthenaPickaxe:Pickaxe_Veiled",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_Venice": {
+ "templateId": "AthenaPickaxe:Pickaxe_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Mesh",
+ "active": "Stage1",
+ "owned": [
+ "Stage1",
+ "Stage2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_VillainessVault": {
+ "templateId": "AthenaPickaxe:Pickaxe_VillainessVault",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:PIckaxe_Virtuous": {
+ "templateId": "AthenaPickaxe:PIckaxe_Virtuous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_VitalPsych": {
+ "templateId": "AthenaPickaxe:Pickaxe_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:Pickaxe_WinterHunterFNCS": {
+ "templateId": "AthenaPickaxe:Pickaxe_WinterHunterFNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:PreSeasonGlider": {
+ "templateId": "AthenaGlider:PreSeasonGlider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:PreSeasonGlider_Elite": {
+ "templateId": "AthenaGlider:PreSeasonGlider_Elite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:SickleBatPickaxe": {
+ "templateId": "AthenaPickaxe:SickleBatPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:SkiIcePickaxe": {
+ "templateId": "AthenaPickaxe:SkiIcePickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Solo_Umbrella": {
+ "templateId": "AthenaGlider:Solo_Umbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_000_TestSpray": {
+ "templateId": "AthenaDance:SPID_000_TestSpray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_001_BasicBanner": {
+ "templateId": "AthenaDance:SPID_001_BasicBanner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_002_XMark": {
+ "templateId": "AthenaDance:SPID_002_XMark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_003_Arrow": {
+ "templateId": "AthenaDance:SPID_003_Arrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_004_ChalkOutline": {
+ "templateId": "AthenaDance:SPID_004_ChalkOutline",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_005_Abstract": {
+ "templateId": "AthenaDance:SPID_005_Abstract",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_006_Rainbow": {
+ "templateId": "AthenaDance:SPID_006_Rainbow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_007_SmileGG": {
+ "templateId": "AthenaDance:SPID_007_SmileGG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_008_Hearts": {
+ "templateId": "AthenaDance:SPID_008_Hearts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_009_Window": {
+ "templateId": "AthenaDance:SPID_009_Window",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_010_Tunnel": {
+ "templateId": "AthenaDance:SPID_010_Tunnel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_011_Looted": {
+ "templateId": "AthenaDance:SPID_011_Looted",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_012_RoyalStroll": {
+ "templateId": "AthenaDance:SPID_012_RoyalStroll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_013_TrapWarning": {
+ "templateId": "AthenaDance:SPID_013_TrapWarning",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_014_Raven": {
+ "templateId": "AthenaDance:SPID_014_Raven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_015_Lips": {
+ "templateId": "AthenaDance:SPID_015_Lips",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_016_Ponytail": {
+ "templateId": "AthenaDance:SPID_016_Ponytail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_017_Splattershot": {
+ "templateId": "AthenaDance:SPID_017_Splattershot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_018_ShadowOps": {
+ "templateId": "AthenaDance:SPID_018_ShadowOps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_019_Circle": {
+ "templateId": "AthenaDance:SPID_019_Circle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_020_ThreeLlamas": {
+ "templateId": "AthenaDance:SPID_020_ThreeLlamas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_021_DoIt": {
+ "templateId": "AthenaDance:SPID_021_DoIt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_022_SoloShowdown": {
+ "templateId": "AthenaDance:SPID_022_SoloShowdown",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_023_E3": {
+ "templateId": "AthenaDance:SPID_023_E3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_024_Boogie": {
+ "templateId": "AthenaDance:SPID_024_Boogie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_025_CrazyCastle": {
+ "templateId": "AthenaDance:SPID_025_CrazyCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_026_DarkViking": {
+ "templateId": "AthenaDance:SPID_026_DarkViking",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_028_Durrr": {
+ "templateId": "AthenaDance:SPID_028_Durrr",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_029_LaserShark": {
+ "templateId": "AthenaDance:SPID_029_LaserShark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_030_Luchador": {
+ "templateId": "AthenaDance:SPID_030_Luchador",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_031_Pixels": {
+ "templateId": "AthenaDance:SPID_031_Pixels",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_032_PotatoAim": {
+ "templateId": "AthenaDance:SPID_032_PotatoAim",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_033_FakeDoor": {
+ "templateId": "AthenaDance:SPID_033_FakeDoor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_034_GoodVibes": {
+ "templateId": "AthenaDance:SPID_034_GoodVibes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_035_NordicLlama": {
+ "templateId": "AthenaDance:SPID_035_NordicLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_036_StrawberryPaws": {
+ "templateId": "AthenaDance:SPID_036_StrawberryPaws",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_037_Drift": {
+ "templateId": "AthenaDance:SPID_037_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_038_Sushi": {
+ "templateId": "AthenaDance:SPID_038_Sushi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_039_Yummy": {
+ "templateId": "AthenaDance:SPID_039_Yummy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_040_Birthday2018": {
+ "templateId": "AthenaDance:SPID_040_Birthday2018",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_041_GC2018": {
+ "templateId": "AthenaDance:SPID_041_GC2018",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_042_LlamaControllers": {
+ "templateId": "AthenaDance:SPID_042_LlamaControllers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_043_Flairspray": {
+ "templateId": "AthenaDance:SPID_043_Flairspray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_044_Bling": {
+ "templateId": "AthenaDance:SPID_044_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_045_Oni": {
+ "templateId": "AthenaDance:SPID_045_Oni",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_046_PixelRaven": {
+ "templateId": "AthenaDance:SPID_046_PixelRaven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_047_Gremlins": {
+ "templateId": "AthenaDance:SPID_047_Gremlins",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_049_CactusMaze": {
+ "templateId": "AthenaDance:SPID_049_CactusMaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_050_FullMoon": {
+ "templateId": "AthenaDance:SPID_050_FullMoon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_051_GameOver": {
+ "templateId": "AthenaDance:SPID_051_GameOver",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_053_GGPotion": {
+ "templateId": "AthenaDance:SPID_053_GGPotion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_055_WallCrawler": {
+ "templateId": "AthenaDance:SPID_055_WallCrawler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_056_ManholeCover": {
+ "templateId": "AthenaDance:SPID_056_ManholeCover",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_057_CreepyBunny": {
+ "templateId": "AthenaDance:SPID_057_CreepyBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_058_Cowgirl": {
+ "templateId": "AthenaDance:SPID_058_Cowgirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_059_DJ": {
+ "templateId": "AthenaDance:SPID_059_DJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_060_DayOfDead": {
+ "templateId": "AthenaDance:SPID_060_DayOfDead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_061_Spiderweb": {
+ "templateId": "AthenaDance:SPID_061_Spiderweb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_062_Werewolf": {
+ "templateId": "AthenaDance:SPID_062_Werewolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_063_Cowboy": {
+ "templateId": "AthenaDance:SPID_063_Cowboy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_064_S6Lvl100": {
+ "templateId": "AthenaDance:SPID_064_S6Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_065_DiscoBaller": {
+ "templateId": "AthenaDance:SPID_065_DiscoBaller",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_066_Llamalaxy": {
+ "templateId": "AthenaDance:SPID_066_Llamalaxy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_067_GGSnowman": {
+ "templateId": "AthenaDance:SPID_067_GGSnowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_068_EvilTree": {
+ "templateId": "AthenaDance:SPID_068_EvilTree",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_069_BagOfCoal": {
+ "templateId": "AthenaDance:SPID_069_BagOfCoal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_070_Hohoho": {
+ "templateId": "AthenaDance:SPID_070_Hohoho",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_071_NeonCat": {
+ "templateId": "AthenaDance:SPID_071_NeonCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_072_Mothhead": {
+ "templateId": "AthenaDance:SPID_072_Mothhead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_073_Porthole": {
+ "templateId": "AthenaDance:SPID_073_Porthole",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_074_CuddleHula": {
+ "templateId": "AthenaDance:SPID_074_CuddleHula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_075_MeltingSnowman": {
+ "templateId": "AthenaDance:SPID_075_MeltingSnowman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_076_Yeti": {
+ "templateId": "AthenaDance:SPID_076_Yeti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_077_Baited": {
+ "templateId": "AthenaDance:SPID_077_Baited",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_078_PixelRamirez": {
+ "templateId": "AthenaDance:SPID_078_PixelRamirez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_079_CatGirl": {
+ "templateId": "AthenaDance:SPID_079_CatGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_080_S7Lvl100": {
+ "templateId": "AthenaDance:SPID_080_S7Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_081_Bananas": {
+ "templateId": "AthenaDance:SPID_081_Bananas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_082_Ornament": {
+ "templateId": "AthenaDance:SPID_082_Ornament",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_083_Winter": {
+ "templateId": "AthenaDance:SPID_083_Winter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_084_Festivus": {
+ "templateId": "AthenaDance:SPID_084_Festivus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_085_ShareTheLove_A": {
+ "templateId": "AthenaDance:SPID_085_ShareTheLove_A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_086_ShareTheLove_B": {
+ "templateId": "AthenaDance:SPID_086_ShareTheLove_B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_087_ShareTheLove_C": {
+ "templateId": "AthenaDance:SPID_087_ShareTheLove_C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_088_ShareTheLove_D": {
+ "templateId": "AthenaDance:SPID_088_ShareTheLove_D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_089_ShareTheLove_E": {
+ "templateId": "AthenaDance:SPID_089_ShareTheLove_E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_090_DanceFloorBox": {
+ "templateId": "AthenaDance:SPID_090_DanceFloorBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_091_DragonNinja": {
+ "templateId": "AthenaDance:SPID_091_DragonNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_092_BananaPeel": {
+ "templateId": "AthenaDance:SPID_092_BananaPeel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_093_TheEnd": {
+ "templateId": "AthenaDance:SPID_093_TheEnd",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_094_WootDog": {
+ "templateId": "AthenaDance:SPID_094_WootDog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_095_LoveRanger": {
+ "templateId": "AthenaDance:SPID_095_LoveRanger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_096_FallenLoveRanger": {
+ "templateId": "AthenaDance:SPID_096_FallenLoveRanger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_097_FireElf": {
+ "templateId": "AthenaDance:SPID_097_FireElf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_098_Shiny": {
+ "templateId": "AthenaDance:SPID_098_Shiny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_099_Key": {
+ "templateId": "AthenaDance:SPID_099_Key",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_100_Salty": {
+ "templateId": "AthenaDance:SPID_100_Salty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_101_BriteBomber": {
+ "templateId": "AthenaDance:SPID_101_BriteBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_102_GGAztec": {
+ "templateId": "AthenaDance:SPID_102_GGAztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_103_Mermaid": {
+ "templateId": "AthenaDance:SPID_103_Mermaid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_104_S8Lvl100": {
+ "templateId": "AthenaDance:SPID_104_S8Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_105_Parrot": {
+ "templateId": "AthenaDance:SPID_105_Parrot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_106_Ashton_Boardwalk": {
+ "templateId": "AthenaDance:SPID_106_Ashton_Boardwalk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_107_Ashton_Jim": {
+ "templateId": "AthenaDance:SPID_107_Ashton_Jim",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_108_Fate": {
+ "templateId": "AthenaDance:SPID_108_Fate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_109_StrawberryPilot": {
+ "templateId": "AthenaDance:SPID_109_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_110_Rooster": {
+ "templateId": "AthenaDance:SPID_110_Rooster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_111_Ark": {
+ "templateId": "AthenaDance:SPID_111_Ark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_112_RockPeople": {
+ "templateId": "AthenaDance:SPID_112_RockPeople",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_113_NanaNana": {
+ "templateId": "AthenaDance:SPID_113_NanaNana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_114_Bush": {
+ "templateId": "AthenaDance:SPID_114_Bush",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_115_PixelJonesy": {
+ "templateId": "AthenaDance:SPID_115_PixelJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_116_Robot": {
+ "templateId": "AthenaDance:SPID_116_Robot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_117_NoSymbol": {
+ "templateId": "AthenaDance:SPID_117_NoSymbol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_118_ChevronLeft": {
+ "templateId": "AthenaDance:SPID_118_ChevronLeft",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_119_ChevronRight": {
+ "templateId": "AthenaDance:SPID_119_ChevronRight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_120_S9Lvl100": {
+ "templateId": "AthenaDance:SPID_120_S9Lvl100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_121_Sunbird": {
+ "templateId": "AthenaDance:SPID_121_Sunbird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_122_VigilanteBall": {
+ "templateId": "AthenaDance:SPID_122_VigilanteBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_123_PeelyArms": {
+ "templateId": "AthenaDance:SPID_123_PeelyArms",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_124_Goat": {
+ "templateId": "AthenaDance:SPID_124_Goat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_125_VigilanteFace": {
+ "templateId": "AthenaDance:SPID_125_VigilanteFace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_126_WorldCup": {
+ "templateId": "AthenaDance:SPID_126_WorldCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_127_SummerDays01": {
+ "templateId": "AthenaDance:SPID_127_SummerDays01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_128_SummerDays02": {
+ "templateId": "AthenaDance:SPID_128_SummerDays02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_129_Birthday2019": {
+ "templateId": "AthenaDance:SPID_129_Birthday2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_130_GameJam2019": {
+ "templateId": "AthenaDance:SPID_130_GameJam2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_131_Teknique": {
+ "templateId": "AthenaDance:SPID_131_Teknique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_132_BlackKnight": {
+ "templateId": "AthenaDance:SPID_132_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_133_Butterfly": {
+ "templateId": "AthenaDance:SPID_133_Butterfly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_134_DustyDepot": {
+ "templateId": "AthenaDance:SPID_134_DustyDepot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_135_RiskyReels": {
+ "templateId": "AthenaDance:SPID_135_RiskyReels",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_136_RocketLaunch": {
+ "templateId": "AthenaDance:SPID_136_RocketLaunch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_137_RustLord": {
+ "templateId": "AthenaDance:SPID_137_RustLord",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_138_SparkleSpecialist": {
+ "templateId": "AthenaDance:SPID_138_SparkleSpecialist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_139_TiltedMap": {
+ "templateId": "AthenaDance:SPID_139_TiltedMap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_140_MoistyMire": {
+ "templateId": "AthenaDance:SPID_140_MoistyMire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_141_S10Level100": {
+ "templateId": "AthenaDance:SPID_141_S10Level100",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_142_CubeRune": {
+ "templateId": "AthenaDance:SPID_142_CubeRune",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_143_Drift": {
+ "templateId": "AthenaDance:SPID_143_Drift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_144_VisitorGG": {
+ "templateId": "AthenaDance:SPID_144_VisitorGG",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_145_Comet": {
+ "templateId": "AthenaDance:SPID_145_Comet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_146_Rocket": {
+ "templateId": "AthenaDance:SPID_146_Rocket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_147_Smoothie": {
+ "templateId": "AthenaDance:SPID_147_Smoothie",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_148_Umbrella": {
+ "templateId": "AthenaDance:SPID_148_Umbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_149_FireIce": {
+ "templateId": "AthenaDance:SPID_149_FireIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_150_IceDragon": {
+ "templateId": "AthenaDance:SPID_150_IceDragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_151_DarkVoyager": {
+ "templateId": "AthenaDance:SPID_151_DarkVoyager",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_152_DriftRemix": {
+ "templateId": "AthenaDance:SPID_152_DriftRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_153_KnightRemix": {
+ "templateId": "AthenaDance:SPID_153_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_155_BarbequeLarryBunnyHead": {
+ "templateId": "AthenaDance:SPID_155_BarbequeLarryBunnyHead",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_157_BarbequeLarryMask": {
+ "templateId": "AthenaDance:SPID_157_BarbequeLarryMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_158_ZoneWars": {
+ "templateId": "AthenaDance:SPID_158_ZoneWars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_159_BlackMonday01_TY6N5": {
+ "templateId": "AthenaDance:SPID_159_BlackMonday01_TY6N5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_160_BlackMonday02_PM0U6": {
+ "templateId": "AthenaDance:SPID_160_BlackMonday02_PM0U6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_161_S11_StandardLogo": {
+ "templateId": "AthenaDance:SPID_161_S11_StandardLogo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_162_S11_RockClimber": {
+ "templateId": "AthenaDance:SPID_162_S11_RockClimber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_163_S11_Bees": {
+ "templateId": "AthenaDance:SPID_163_S11_Bees",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_164_S11_PinkTeeth": {
+ "templateId": "AthenaDance:SPID_164_S11_PinkTeeth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_165_S11_AlterEgoLogo": {
+ "templateId": "AthenaDance:SPID_165_S11_AlterEgoLogo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_166_S11_CrazyEight": {
+ "templateId": "AthenaDance:SPID_166_S11_CrazyEight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_167_S11_Pug": {
+ "templateId": "AthenaDance:SPID_167_S11_Pug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_169_Eucalyptus": {
+ "templateId": "AthenaDance:SPID_169_Eucalyptus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_170_Quokka": {
+ "templateId": "AthenaDance:SPID_170_Quokka",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_171_Rose": {
+ "templateId": "AthenaDance:SPID_171_Rose",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_172_Shaka": {
+ "templateId": "AthenaDance:SPID_172_Shaka",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_173_ThumbsUp": {
+ "templateId": "AthenaDance:SPID_173_ThumbsUp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_174_Tiger": {
+ "templateId": "AthenaDance:SPID_174_Tiger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_175_S11_Squid": {
+ "templateId": "AthenaDance:SPID_175_S11_Squid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_176_Storm": {
+ "templateId": "AthenaDance:SPID_176_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_177_Mastermind": {
+ "templateId": "AthenaDance:SPID_177_Mastermind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_178_SearchAndDestroy": {
+ "templateId": "AthenaDance:SPID_178_SearchAndDestroy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_179_S11_FNCS": {
+ "templateId": "AthenaDance:SPID_179_S11_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_180_BlueCrackshot": {
+ "templateId": "AthenaDance:SPID_180_BlueCrackshot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_185_PolarBear": {
+ "templateId": "AthenaDance:SPID_185_PolarBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_189_SkullDude": {
+ "templateId": "AthenaDance:SPID_189_SkullDude",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_190_TNTina": {
+ "templateId": "AthenaDance:SPID_190_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_191_Meowscles": {
+ "templateId": "AthenaDance:SPID_191_Meowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_192_AdventureGirl": {
+ "templateId": "AthenaDance:SPID_192_AdventureGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_193_Midas": {
+ "templateId": "AthenaDance:SPID_193_Midas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_194_DumpsterFire": {
+ "templateId": "AthenaDance:SPID_194_DumpsterFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_195_Cyclone": {
+ "templateId": "AthenaDance:SPID_195_Cyclone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_196_CarnavalA": {
+ "templateId": "AthenaDance:SPID_196_CarnavalA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_197_CarnavalB": {
+ "templateId": "AthenaDance:SPID_197_CarnavalB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_198_DarkHeart": {
+ "templateId": "AthenaDance:SPID_198_DarkHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_199_BananaAgent": {
+ "templateId": "AthenaDance:SPID_199_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_200_GoldMeowscles": {
+ "templateId": "AthenaDance:SPID_200_GoldMeowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_201_DonutA": {
+ "templateId": "AthenaDance:SPID_201_DonutA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_202_DonutB": {
+ "templateId": "AthenaDance:SPID_202_DonutB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_203_UnicornRain": {
+ "templateId": "AthenaDance:SPID_203_UnicornRain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_204_S12_FNCS": {
+ "templateId": "AthenaDance:SPID_204_S12_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_205_ArLamp": {
+ "templateId": "AthenaDance:SPID_205_ArLamp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_206_EyeballOctopus": {
+ "templateId": "AthenaDance:SPID_206_EyeballOctopus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_207_BlackKnight": {
+ "templateId": "AthenaDance:SPID_207_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_208_MechanicalEngineer": {
+ "templateId": "AthenaDance:SPID_208_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_209_OceanRider": {
+ "templateId": "AthenaDance:SPID_209_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_210_ProfessorPup": {
+ "templateId": "AthenaDance:SPID_210_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_211_RacerZero": {
+ "templateId": "AthenaDance:SPID_211_RacerZero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_212_SandCastle": {
+ "templateId": "AthenaDance:SPID_212_SandCastle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_213_SeasonSpray1": {
+ "templateId": "AthenaDance:SPID_213_SeasonSpray1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_214_SeasonSpray2": {
+ "templateId": "AthenaDance:SPID_214_SeasonSpray2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_215_MeowsclesBox": {
+ "templateId": "AthenaDance:SPID_215_MeowsclesBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_216_S13_FNCS": {
+ "templateId": "AthenaDance:SPID_216_S13_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_217_TheBratHotdog": {
+ "templateId": "AthenaDance:SPID_217_TheBratHotdog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_218_S14_HighTowerDate": {
+ "templateId": "AthenaDance:SPID_218_S14_HighTowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_219_S14_HighTowerGrape": {
+ "templateId": "AthenaDance:SPID_219_S14_HighTowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_220_S14_HighTowerHoneyDew": {
+ "templateId": "AthenaDance:SPID_220_S14_HighTowerHoneyDew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_221_S14_HighTowerMango": {
+ "templateId": "AthenaDance:SPID_221_S14_HighTowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_222_S14_HighTowerRadish": {
+ "templateId": "AthenaDance:SPID_222_S14_HighTowerRadish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_223_S14_HighTowerSquash": {
+ "templateId": "AthenaDance:SPID_223_S14_HighTowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_224_S14_HighTowerTapas": {
+ "templateId": "AthenaDance:SPID_224_S14_HighTowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_225_S14_HighTowerTomato": {
+ "templateId": "AthenaDance:SPID_225_S14_HighTowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_226_S14_HighTowerWasabi": {
+ "templateId": "AthenaDance:SPID_226_S14_HighTowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_227_3rdBirthday": {
+ "templateId": "AthenaDance:SPID_227_3rdBirthday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_228_RLxFN": {
+ "templateId": "AthenaDance:SPID_228_RLxFN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_229_S14_FNCS": {
+ "templateId": "AthenaDance:SPID_229_S14_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_230_Fortnitemares": {
+ "templateId": "AthenaDance:SPID_230_Fortnitemares",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_231_Embers": {
+ "templateId": "AthenaDance:SPID_231_Embers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_231_S15_AncientGladiator": {
+ "templateId": "AthenaDance:SPID_231_S15_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_232_PeelyBhangra": {
+ "templateId": "AthenaDance:SPID_232_PeelyBhangra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_232_S15_Shapeshifter": {
+ "templateId": "AthenaDance:SPID_232_S15_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_233_S15_Lexa": {
+ "templateId": "AthenaDance:SPID_233_S15_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_234_S15_FutureSamurai": {
+ "templateId": "AthenaDance:SPID_234_S15_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_235_S15_Flapjack": {
+ "templateId": "AthenaDance:SPID_235_S15_Flapjack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_236_S15_SpaceFighter": {
+ "templateId": "AthenaDance:SPID_236_S15_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_237_S15_Cosmos": {
+ "templateId": "AthenaDance:SPID_237_S15_Cosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_238_S15_SkullSanta": {
+ "templateId": "AthenaDance:SPID_238_S15_SkullSanta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_239_S15_Holiday2020_Snowmando": {
+ "templateId": "AthenaDance:SPID_239_S15_Holiday2020_Snowmando",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_240_S15_Holiday2": {
+ "templateId": "AthenaDance:SPID_240_S15_Holiday2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_241_Nightmare": {
+ "templateId": "AthenaDance:SPID_241_Nightmare",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_242_S15_FNCS": {
+ "templateId": "AthenaDance:SPID_242_S15_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_243_AFL_Winter": {
+ "templateId": "AthenaDance:SPID_243_AFL_Winter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_244_Valentines2021": {
+ "templateId": "AthenaDance:SPID_244_Valentines2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_245_Valentines2021_2": {
+ "templateId": "AthenaDance:SPID_245_Valentines2021_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_246_Obsidian": {
+ "templateId": "AthenaDance:SPID_246_Obsidian",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_247_Sentinel": {
+ "templateId": "AthenaDance:SPID_247_Sentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_248_CubeNinja": {
+ "templateId": "AthenaDance:SPID_248_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_249_DinoHunter": {
+ "templateId": "AthenaDance:SPID_249_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_250_AgentJonesy": {
+ "templateId": "AthenaDance:SPID_250_AgentJonesy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_251_ChickenWarrior": {
+ "templateId": "AthenaDance:SPID_251_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_252_Temple": {
+ "templateId": "AthenaDance:SPID_252_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_253_Alt_1": {
+ "templateId": "AthenaDance:SPID_253_Alt_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_254_Alt_2": {
+ "templateId": "AthenaDance:SPID_254_Alt_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_255_Alt_3": {
+ "templateId": "AthenaDance:SPID_255_Alt_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_256_Bicycle": {
+ "templateId": "AthenaDance:SPID_256_Bicycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_257_TempleCreative": {
+ "templateId": "AthenaDance:SPID_257_TempleCreative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_258_Llamarama2_EZIRR": {
+ "templateId": "AthenaDance:SPID_258_Llamarama2_EZIRR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_259_RebootAFriend": {
+ "templateId": "AthenaDance:SPID_259_RebootAFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_260_CreativeWorldTour": {
+ "templateId": "AthenaDance:SPID_260_CreativeWorldTour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_260_S16_FNCS": {
+ "templateId": "AthenaDance:SPID_260_S16_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_261_Basketball_2021_MIAO3": {
+ "templateId": "AthenaDance:SPID_261_Basketball_2021_MIAO3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_262_Broccoli_920HJ": {
+ "templateId": "AthenaDance:SPID_262_Broccoli_920HJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_263_Grim_5A9JD": {
+ "templateId": "AthenaDance:SPID_263_Grim_5A9JD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_264_Emperor": {
+ "templateId": "AthenaDance:SPID_264_Emperor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_265_AlienTrooper": {
+ "templateId": "AthenaDance:SPID_265_AlienTrooper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_266_Faux": {
+ "templateId": "AthenaDance:SPID_266_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_267_Ruckus": {
+ "templateId": "AthenaDance:SPID_267_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_268_Innovator": {
+ "templateId": "AthenaDance:SPID_268_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_269_Invader": {
+ "templateId": "AthenaDance:SPID_269_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_270_Antique": {
+ "templateId": "AthenaDance:SPID_270_Antique",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_271_Believer": {
+ "templateId": "AthenaDance:SPID_271_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_272_Supporter": {
+ "templateId": "AthenaDance:SPID_272_Supporter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_273_Faux2": {
+ "templateId": "AthenaDance:SPID_273_Faux2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_274_Alt_3": {
+ "templateId": "AthenaDance:SPID_274_Alt_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_275_Soccer": {
+ "templateId": "AthenaDance:SPID_275_Soccer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_276_Hot": {
+ "templateId": "AthenaDance:SPID_276_Hot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_277_Mascot": {
+ "templateId": "AthenaDance:SPID_277_Mascot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_278_BelieverSkull": {
+ "templateId": "AthenaDance:SPID_278_BelieverSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_279_EasyLife": {
+ "templateId": "AthenaDance:SPID_279_EasyLife",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_280_Fest": {
+ "templateId": "AthenaDance:SPID_280_Fest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_281_FNCS_AllStars": {
+ "templateId": "AthenaDance:SPID_281_FNCS_AllStars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_282_FNCS_AllStarsAlt2": {
+ "templateId": "AthenaDance:SPID_282_FNCS_AllStarsAlt2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_283_Menace": {
+ "templateId": "AthenaDance:SPID_283_Menace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_284_RiftTour2021": {
+ "templateId": "AthenaDance:SPID_284_RiftTour2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_285_RainbowRoyaleHeart": {
+ "templateId": "AthenaDance:SPID_285_RainbowRoyaleHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_286_RainbowRoyaleLlama": {
+ "templateId": "AthenaDance:SPID_286_RainbowRoyaleLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_287_RainbowRoyaleBoogieBomb": {
+ "templateId": "AthenaDance:SPID_287_RainbowRoyaleBoogieBomb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_288_RainbowRoyaleStar": {
+ "templateId": "AthenaDance:SPID_288_RainbowRoyaleStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_289_RiftTourAccLink_X1FV9": {
+ "templateId": "AthenaDance:SPID_289_RiftTourAccLink_X1FV9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_290_RiftTour2021Extra": {
+ "templateId": "AthenaDance:SPID_290_RiftTour2021Extra",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_291_SeesawCottonCandy": {
+ "templateId": "AthenaDance:SPID_291_SeesawCottonCandy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_292_SeesawDots": {
+ "templateId": "AthenaDance:SPID_292_SeesawDots",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_293_SeesawWings": {
+ "templateId": "AthenaDance:SPID_293_SeesawWings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_294_SeesawTeeth": {
+ "templateId": "AthenaDance:SPID_294_SeesawTeeth",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_295_Stereo_AEZ4I": {
+ "templateId": "AthenaDance:SPID_295_Stereo_AEZ4I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_296_FNCS": {
+ "templateId": "AthenaDance:SPID_296_FNCS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_297_ReferAFriendTaxi": {
+ "templateId": "AthenaDance:SPID_297_ReferAFriendTaxi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_298_Console": {
+ "templateId": "AthenaDance:SPID_298_Console",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_299_TheMarch": {
+ "templateId": "AthenaDance:SPID_299_TheMarch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_300_PunkKoi": {
+ "templateId": "AthenaDance:SPID_300_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_301_CerealBox": {
+ "templateId": "AthenaDance:SPID_301_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_302_Division": {
+ "templateId": "AthenaDance:SPID_302_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_303_GhostHunter": {
+ "templateId": "AthenaDance:SPID_303_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_304_SpaceChimp": {
+ "templateId": "AthenaDance:SPID_304_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_305_TeriyakiFishToon": {
+ "templateId": "AthenaDance:SPID_305_TeriyakiFishToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_306_Clash": {
+ "templateId": "AthenaDance:SPID_306_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_308_CritterCuddleLlama": {
+ "templateId": "AthenaDance:SPID_308_CritterCuddleLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_309_CritterCuddle": {
+ "templateId": "AthenaDance:SPID_309_CritterCuddle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_310_CritterFrenzyJar": {
+ "templateId": "AthenaDance:SPID_310_CritterFrenzyJar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_311_CritterRaven": {
+ "templateId": "AthenaDance:SPID_311_CritterRaven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_315_4thBirthday": {
+ "templateId": "AthenaDance:SPID_315_4thBirthday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_316_Textile2_O0CJQ": {
+ "templateId": "AthenaDance:SPID_316_Textile2_O0CJQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_318_Textile1_5WJ1Q": {
+ "templateId": "AthenaDance:SPID_318_Textile1_5WJ1Q",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_319_FNCS18": {
+ "templateId": "AthenaDance:SPID_319_FNCS18",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_320_SoundWave": {
+ "templateId": "AthenaDance:SPID_320_SoundWave",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_321_FortnitemaresCup2021": {
+ "templateId": "AthenaDance:SPID_321_FortnitemaresCup2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_322_Grasshopper_83HQ3": {
+ "templateId": "AthenaDance:SPID_322_Grasshopper_83HQ3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_323_ScienceDungeonSTW": {
+ "templateId": "AthenaDance:SPID_323_ScienceDungeonSTW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_324_CubeQueen": {
+ "templateId": "AthenaDance:SPID_324_CubeQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_325_UproarGraffiti_QFE4O": {
+ "templateId": "AthenaDance:SPID_325_UproarGraffiti_QFE4O",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_326_SoundwaveSeries": {
+ "templateId": "AthenaDance:SPID_326_SoundwaveSeries",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_327_GrasshopperHeart_CP6MR": {
+ "templateId": "AthenaDance:SPID_327_GrasshopperHeart_CP6MR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_328_GrasshopperHammer_5D0FN": {
+ "templateId": "AthenaDance:SPID_328_GrasshopperHammer_5D0FN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_329_ItalianDA": {
+ "templateId": "AthenaDance:SPID_329_ItalianDA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_330_Haste_52NCD": {
+ "templateId": "AthenaDance:SPID_330_Haste_52NCD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_331_RL_GG_K34SP": {
+ "templateId": "AthenaDance:SPID_331_RL_GG_K34SP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_332_RustyBoltLogo_ZB1B0": {
+ "templateId": "AthenaDance:SPID_332_RustyBoltLogo_ZB1B0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_333_RustyBoltCreature_ZGF9S": {
+ "templateId": "AthenaDance:SPID_333_RustyBoltCreature_ZGF9S",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_334_Turtleneck": {
+ "templateId": "AthenaDance:SPID_334_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_335_BuffLlama": {
+ "templateId": "AthenaDance:SPID_335_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_336_ExoSuit": {
+ "templateId": "AthenaDance:SPID_336_ExoSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_337_Gumball": {
+ "templateId": "AthenaDance:SPID_337_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_338_IslandNomad": {
+ "templateId": "AthenaDance:SPID_338_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_339_LoneWolf": {
+ "templateId": "AthenaDance:SPID_339_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_340_Motorcyclist": {
+ "templateId": "AthenaDance:SPID_340_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_341_Parallel": {
+ "templateId": "AthenaDance:SPID_341_Parallel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_342_LoneWolfHero": {
+ "templateId": "AthenaDance:SPID_342_LoneWolfHero",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_343_Slither1_4EHZI": {
+ "templateId": "AthenaDance:SPID_343_Slither1_4EHZI",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_344_Slither2_58PVJ": {
+ "templateId": "AthenaDance:SPID_344_Slither2_58PVJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_345_Slither3_T063W": {
+ "templateId": "AthenaDance:SPID_345_Slither3_T063W",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_346_Winterfest_2021": {
+ "templateId": "AthenaDance:SPID_346_Winterfest_2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_347_ShowdownTomato": {
+ "templateId": "AthenaDance:SPID_347_ShowdownTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_348_ShowdownReaper": {
+ "templateId": "AthenaDance:SPID_348_ShowdownReaper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_349_ShowdownPanda": {
+ "templateId": "AthenaDance:SPID_349_ShowdownPanda",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_350_WinterfestCreative": {
+ "templateId": "AthenaDance:SPID_350_WinterfestCreative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_351_AO_SummerSmash": {
+ "templateId": "AthenaDance:SPID_351_AO_SummerSmash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_352_Sleek_8M482": {
+ "templateId": "AthenaDance:SPID_352_Sleek_8M482",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_353_FNCS_Drops": {
+ "templateId": "AthenaDance:SPID_353_FNCS_Drops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_354_HelmetDrops": {
+ "templateId": "AthenaDance:SPID_354_HelmetDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_355_FlowerSkeleton": {
+ "templateId": "AthenaDance:SPID_355_FlowerSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_356_BlueStriker": {
+ "templateId": "AthenaDance:SPID_356_BlueStriker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_357_SoundwaveSeriesMC": {
+ "templateId": "AthenaDance:SPID_357_SoundwaveSeriesMC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_358_Trey_13D84": {
+ "templateId": "AthenaDance:SPID_358_Trey_13D84",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_359_Dr_U39EK": {
+ "templateId": "AthenaDance:SPID_359_Dr_U39EK",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_360_IWD2021": {
+ "templateId": "AthenaDance:SPID_360_IWD2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_361_ThriveTourneyReward": {
+ "templateId": "AthenaDance:SPID_361_ThriveTourneyReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_362_Binary": {
+ "templateId": "AthenaDance:SPID_362_Binary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_363_Cadet": {
+ "templateId": "AthenaDance:SPID_363_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_364_CubeKing": {
+ "templateId": "AthenaDance:SPID_364_CubeKing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_365_CyberArmor": {
+ "templateId": "AthenaDance:SPID_365_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_366_JourneyMentor": {
+ "templateId": "AthenaDance:SPID_366_JourneyMentor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_367_KnightCat": {
+ "templateId": "AthenaDance:SPID_367_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_368_LittleEggChick": {
+ "templateId": "AthenaDance:SPID_368_LittleEggChick",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_369_LittleEggDrops": {
+ "templateId": "AthenaDance:SPID_369_LittleEggDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_370_MysticAmulet": {
+ "templateId": "AthenaDance:SPID_370_MysticAmulet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_371_MysticRunes": {
+ "templateId": "AthenaDance:SPID_371_MysticRunes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_372_OrderGuard": {
+ "templateId": "AthenaDance:SPID_372_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_373_Sienna": {
+ "templateId": "AthenaDance:SPID_373_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_374_TacticalBR_Reward1": {
+ "templateId": "AthenaDance:SPID_374_TacticalBR_Reward1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_375_TacticalBR_Reward2": {
+ "templateId": "AthenaDance:SPID_375_TacticalBR_Reward2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_376_TacticalBR_Reward3": {
+ "templateId": "AthenaDance:SPID_376_TacticalBR_Reward3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_377_TacticalBR_Reward4": {
+ "templateId": "AthenaDance:SPID_377_TacticalBR_Reward4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_378_TacticalBR_Reward5": {
+ "templateId": "AthenaDance:SPID_378_TacticalBR_Reward5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_379_PostpartyReward": {
+ "templateId": "AthenaDance:SPID_379_PostpartyReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_380_CollegeCup": {
+ "templateId": "AthenaDance:SPID_380_CollegeCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_381_Windwalker": {
+ "templateId": "AthenaDance:SPID_381_Windwalker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_382_UERaider": {
+ "templateId": "AthenaDance:SPID_382_UERaider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_383_FNCSDrops": {
+ "templateId": "AthenaDance:SPID_383_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_384_CuddleKing_Competitive": {
+ "templateId": "AthenaDance:SPID_384_CuddleKing_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_386_Waterskiing_Competitive": {
+ "templateId": "AthenaDance:SPID_386_Waterskiing_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_387_Jonesy_Competitive": {
+ "templateId": "AthenaDance:SPID_387_Jonesy_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_390_SlurpMonster_Competitive": {
+ "templateId": "AthenaDance:SPID_390_SlurpMonster_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_391_Drift_Competitive": {
+ "templateId": "AthenaDance:SPID_391_Drift_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_392_GhoulPopsicles_Competitive": {
+ "templateId": "AthenaDance:SPID_392_GhoulPopsicles_Competitive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_393_Madcubes_CuddleTeam": {
+ "templateId": "AthenaDance:SPID_393_Madcubes_CuddleTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_394_Madcubes_SpookyTeam": {
+ "templateId": "AthenaDance:SPID_394_Madcubes_SpookyTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_395_Madcubes_Doggo": {
+ "templateId": "AthenaDance:SPID_395_Madcubes_Doggo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_396_Madcubes_ShadowMeowscles": {
+ "templateId": "AthenaDance:SPID_396_Madcubes_ShadowMeowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_397_Madcubes_Meowscles": {
+ "templateId": "AthenaDance:SPID_397_Madcubes_Meowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_398_Madcubes_Guff": {
+ "templateId": "AthenaDance:SPID_398_Madcubes_Guff",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_399_Vehicle_Raptor": {
+ "templateId": "AthenaDance:SPID_399_Vehicle_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_400_Vehicle_Jade": {
+ "templateId": "AthenaDance:SPID_400_Vehicle_Jade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_401_Vehicle_Rainbow": {
+ "templateId": "AthenaDance:SPID_401_Vehicle_Rainbow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_402_Lyrical_Name": {
+ "templateId": "AthenaDance:SPID_402_Lyrical_Name",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_403_Lyrical_BoomBox": {
+ "templateId": "AthenaDance:SPID_403_Lyrical_BoomBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_405_SoundwaveSeriesGH": {
+ "templateId": "AthenaDance:SPID_405_SoundwaveSeriesGH",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_406_Alfredo_Quest": {
+ "templateId": "AthenaDance:SPID_406_Alfredo_Quest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_407_BlueJay": {
+ "templateId": "AthenaDance:SPID_407_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_408_Collectable": {
+ "templateId": "AthenaDance:SPID_408_Collectable",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_409_Fuchsia": {
+ "templateId": "AthenaDance:SPID_409_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_410_Lancelot": {
+ "templateId": "AthenaDance:SPID_410_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_411_DarkStorm": {
+ "templateId": "AthenaDance:SPID_411_DarkStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_412_PinkWidow": {
+ "templateId": "AthenaDance:SPID_412_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_413_Realm": {
+ "templateId": "AthenaDance:SPID_413_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_414_Canary": {
+ "templateId": "AthenaDance:SPID_414_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_415_CollectableSmall": {
+ "templateId": "AthenaDance:SPID_415_CollectableSmall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_416_BlueJayX": {
+ "templateId": "AthenaDance:SPID_416_BlueJayX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_417_RealmHelmet": {
+ "templateId": "AthenaDance:SPID_417_RealmHelmet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_419_PeaceSignQuest": {
+ "templateId": "AthenaDance:SPID_419_PeaceSignQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_420_ALT_Chaos": {
+ "templateId": "AthenaDance:SPID_420_ALT_Chaos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_421_ALT_Barium": {
+ "templateId": "AthenaDance:SPID_421_ALT_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_423_Lancelot_NeonSword": {
+ "templateId": "AthenaDance:SPID_423_Lancelot_NeonSword",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_424_Lancelot_Profile": {
+ "templateId": "AthenaDance:SPID_424_Lancelot_Profile",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_425_Fuchsia_Duotone": {
+ "templateId": "AthenaDance:SPID_425_Fuchsia_Duotone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_426_Kuno": {
+ "templateId": "AthenaDance:SPID_426_Kuno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_427_Sultura": {
+ "templateId": "AthenaDance:SPID_427_Sultura",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_428_FlappyGreen": {
+ "templateId": "AthenaDance:SPID_428_FlappyGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_429_Summer_Raven": {
+ "templateId": "AthenaDance:SPID_429_Summer_Raven",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_430_Summer_Ravage": {
+ "templateId": "AthenaDance:SPID_430_Summer_Ravage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_431_SoundwaveSeriesAN": {
+ "templateId": "AthenaDance:SPID_431_SoundwaveSeriesAN",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_432_FNCSDrops": {
+ "templateId": "AthenaDance:SPID_432_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_433_GalaxyCup": {
+ "templateId": "AthenaDance:SPID_433_GalaxyCup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_434_BlueStriker": {
+ "templateId": "AthenaDance:SPID_434_BlueStriker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_435_ReferFriend": {
+ "templateId": "AthenaDance:SPID_435_ReferFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_436_Stamina_Super": {
+ "templateId": "AthenaDance:SPID_436_Stamina_Super",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_437_Stamina_Meticulous": {
+ "templateId": "AthenaDance:SPID_437_Stamina_Meticulous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_438_Stamina_CatNoodle": {
+ "templateId": "AthenaDance:SPID_438_Stamina_CatNoodle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_439_RL": {
+ "templateId": "AthenaDance:SPID_439_RL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_440_Spectacle": {
+ "templateId": "AthenaDance:SPID_440_Spectacle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_445_RainbowRoyale": {
+ "templateId": "AthenaDance:SPID_445_RainbowRoyale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_446_Scholastic_Meowscles": {
+ "templateId": "AthenaDance:SPID_446_Scholastic_Meowscles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_447_Scholastic_Doggo": {
+ "templateId": "AthenaDance:SPID_447_Scholastic_Doggo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_448_Scholastic_BlueLlama": {
+ "templateId": "AthenaDance:SPID_448_Scholastic_BlueLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_449_Competitive_BurningWolf": {
+ "templateId": "AthenaDance:SPID_449_Competitive_BurningWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_450_Competitive_Catalyst": {
+ "templateId": "AthenaDance:SPID_450_Competitive_Catalyst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_451_Competitive_Fade": {
+ "templateId": "AthenaDance:SPID_451_Competitive_Fade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_452_Competitive_MasterKey": {
+ "templateId": "AthenaDance:SPID_452_Competitive_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:SPID_453_Competitive_Shogun": {
+ "templateId": "AthenaDance:SPID_453_Competitive_Shogun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaPickaxe:SpikyPickaxe": {
+ "templateId": "AthenaPickaxe:SpikyPickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_5thBirthday": {
+ "templateId": "AthenaDance:Spray_5thBirthday",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Amour": {
+ "templateId": "AthenaDance:Spray_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Apprentice": {
+ "templateId": "AthenaDance:Spray_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ArcticIce_Blue": {
+ "templateId": "AthenaDance:Spray_ArcticIce_Blue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ArcticIce_Talus": {
+ "templateId": "AthenaDance:Spray_ArcticIce_Talus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_BadBear_Hand": {
+ "templateId": "AthenaDance:Spray_BadBear_Hand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_BadBear_Muscle": {
+ "templateId": "AthenaDance:Spray_BadBear_Muscle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_BasilStrong_Pickaxe": {
+ "templateId": "AthenaDance:Spray_BasilStrong_Pickaxe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Bites_Blade": {
+ "templateId": "AthenaDance:Spray_Bites_Blade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Bites_Skull": {
+ "templateId": "AthenaDance:Spray_Bites_Skull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Candor": {
+ "templateId": "AthenaDance:Spray_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Candor_Guns": {
+ "templateId": "AthenaDance:Spray_Candor_Guns",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Chainmail_Bat": {
+ "templateId": "AthenaDance:Spray_Chainmail_Bat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Chainmail_Mask": {
+ "templateId": "AthenaDance:Spray_Chainmail_Mask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ChaosAgent_General": {
+ "templateId": "AthenaDance:Spray_ChaosAgent_General",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ChillCat": {
+ "templateId": "AthenaDance:Spray_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Citadel": {
+ "templateId": "AthenaDance:Spray_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ClearRadius": {
+ "templateId": "AthenaDance:Spray_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_Crackshot_Glitch": {
+ "templateId": "AthenaDance:Spray_Competitive_Crackshot_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_CTLDrop": {
+ "templateId": "AthenaDance:Spray_Competitive_CTLDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_CuddleTeam_Glitch": {
+ "templateId": "AthenaDance:Spray_Competitive_CuddleTeam_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_GuacoDrop": {
+ "templateId": "AthenaDance:Spray_Competitive_GuacoDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_GuffDrop": {
+ "templateId": "AthenaDance:Spray_Competitive_GuffDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_LlamaDrop": {
+ "templateId": "AthenaDance:Spray_Competitive_LlamaDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_PeelyDrop": {
+ "templateId": "AthenaDance:Spray_Competitive_PeelyDrop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitive_RainbowDash_Glitch": {
+ "templateId": "AthenaDance:Spray_Competitive_RainbowDash_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Competitve_GGDrip": {
+ "templateId": "AthenaDance:Spray_Competitve_GGDrip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_CoyoteTrail": {
+ "templateId": "AthenaDance:Spray_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_CreativeQuest": {
+ "templateId": "AthenaDance:Spray_CreativeQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_CreativeQuest_Reward_PeelySlice": {
+ "templateId": "AthenaDance:Spray_CreativeQuest_Reward_PeelySlice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Dazzle_Cat": {
+ "templateId": "AthenaDance:Spray_Dazzle_Cat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Dazzle_Characters": {
+ "templateId": "AthenaDance:Spray_Dazzle_Characters",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_DefacedSnowman_Winterfest2022": {
+ "templateId": "AthenaDance:Spray_DefacedSnowman_Winterfest2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Desdemona_General": {
+ "templateId": "AthenaDance:Spray_Desdemona_General",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Dizzy_Drip": {
+ "templateId": "AthenaDance:Spray_Dizzy_Drip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Ebony": {
+ "templateId": "AthenaDance:Spray_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_EmeraldGlass": {
+ "templateId": "AthenaDance:Spray_EmeraldGlass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_EmeraldGlass_Green": {
+ "templateId": "AthenaDance:Spray_EmeraldGlass_Green",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Emphasis": {
+ "templateId": "AthenaDance:Spray_Emphasis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Evie_CipherReward": {
+ "templateId": "AthenaDance:Spray_Evie_CipherReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_FearlessFlight": {
+ "templateId": "AthenaDance:Spray_FearlessFlight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_FearlessWeb": {
+ "templateId": "AthenaDance:Spray_FearlessWeb",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_FFC": {
+ "templateId": "AthenaDance:Spray_FFC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_FindItInFortnite": {
+ "templateId": "AthenaDance:Spray_FindItInFortnite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Fishsticks_General": {
+ "templateId": "AthenaDance:Spray_Fishsticks_General",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Fortnitemares2022_Chicken": {
+ "templateId": "AthenaDance:Spray_Fortnitemares2022_Chicken",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Fortnitemares2022_SquidEye": {
+ "templateId": "AthenaDance:Spray_Fortnitemares2022_SquidEye",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_FunBreak": {
+ "templateId": "AthenaDance:Spray_FunBreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_GermanCommunityBattle": {
+ "templateId": "AthenaDance:Spray_GermanCommunityBattle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_GlitchPunk": {
+ "templateId": "AthenaDance:Spray_GlitchPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_GuffHolidayTree_Winterfest2022": {
+ "templateId": "AthenaDance:Spray_GuffHolidayTree_Winterfest2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Headset": {
+ "templateId": "AthenaDance:Spray_Headset",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Honk": {
+ "templateId": "AthenaDance:Spray_Honk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Inferno": {
+ "templateId": "AthenaDance:Spray_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Inspire_Quest": {
+ "templateId": "AthenaDance:Spray_Inspire_Quest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Inspire_Tournament": {
+ "templateId": "AthenaDance:Spray_Inspire_Tournament",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Invitational": {
+ "templateId": "AthenaDance:Spray_Invitational",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_1": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_2": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_3": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_4": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_5": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_6": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_7": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_8": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_JumpsuitMasks_9": {
+ "templateId": "AthenaDance:Spray_JumpsuitMasks_9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_1": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_11": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_11",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_13": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_13",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_14": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_14",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_16": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_16",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_17": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_17",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_18": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_18",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_19": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_19",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_2": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_20": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_20",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_21": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_21",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_22": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_22",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_27": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_27",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_28": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_28",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_29": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_29",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_3": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_31": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_31",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_32": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_32",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_34": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_34",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_38": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_38",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_39": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_39",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_4": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_5": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_6": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_7": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_8": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_8",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Jumpsuit_9": {
+ "templateId": "AthenaDance:Spray_Jumpsuit_9",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_LettuceGaming": {
+ "templateId": "AthenaDance:Spray_LettuceGaming",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_LocalZilla_Logo": {
+ "templateId": "AthenaDance:Spray_LocalZilla_Logo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_LocalZilla_Name": {
+ "templateId": "AthenaDance:Spray_LocalZilla_Name",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Localzilla_Portrait": {
+ "templateId": "AthenaDance:Spray_Localzilla_Portrait",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_MagicMeadow": {
+ "templateId": "AthenaDance:Spray_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_MeteorWomen": {
+ "templateId": "AthenaDance:Spray_MeteorWomen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Midas_Drip": {
+ "templateId": "AthenaDance:Spray_Midas_Drip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Mouse_RatzAttack": {
+ "templateId": "AthenaDance:Spray_Mouse_RatzAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_MTH_CirrusVine": {
+ "templateId": "AthenaDance:Spray_MTH_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_MTH_Ga": {
+ "templateId": "AthenaDance:Spray_MTH_Ga",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_MTH_GrandScheme": {
+ "templateId": "AthenaDance:Spray_MTH_GrandScheme",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_NarrativeQuest": {
+ "templateId": "AthenaDance:Spray_NarrativeQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Nebula_NarrativeQuestReward": {
+ "templateId": "AthenaDance:Spray_Nebula_NarrativeQuestReward",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_NitroFlow": {
+ "templateId": "AthenaDance:Spray_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_OceanBreeze": {
+ "templateId": "AthenaDance:Spray_OceanBreeze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_PartyTrooper_General": {
+ "templateId": "AthenaDance:Spray_PartyTrooper_General",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_PinkSpike": {
+ "templateId": "AthenaDance:Spray_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Project_Maze": {
+ "templateId": "AthenaDance:Spray_Project_Maze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_PurpleFootballLlama": {
+ "templateId": "AthenaDance:Spray_PurpleFootballLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_RedOasis": {
+ "templateId": "AthenaDance:Spray_RedOasis",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_RedPepper": {
+ "templateId": "AthenaDance:Spray_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ReferFriend": {
+ "templateId": "AthenaDance:Spray_ReferFriend",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_RL_Vista": {
+ "templateId": "AthenaDance:Spray_RL_Vista",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_RoseDust": {
+ "templateId": "AthenaDance:Spray_RoseDust",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_S23_FNCS_Drops": {
+ "templateId": "AthenaDance:Spray_S23_FNCS_Drops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_S24_FNCSDrops": {
+ "templateId": "AthenaDance:Spray_S24_FNCSDrops",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ScholasticTournament_Spray1": {
+ "templateId": "AthenaDance:Spray_ScholasticTournament_Spray1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ScholasticTournament_Spray2": {
+ "templateId": "AthenaDance:Spray_ScholasticTournament_Spray2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_ScholasticTournament_Spray3": {
+ "templateId": "AthenaDance:Spray_ScholasticTournament_Spray3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_SharpFang_Sipping": {
+ "templateId": "AthenaDance:Spray_SharpFang_Sipping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Showdown_Co": {
+ "templateId": "AthenaDance:Spray_Showdown_Co",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Showdown_Mae": {
+ "templateId": "AthenaDance:Spray_Showdown_Mae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Showdown_Pi": {
+ "templateId": "AthenaDance:Spray_Showdown_Pi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Showdown_Zet": {
+ "templateId": "AthenaDance:Spray_Showdown_Zet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_SpringFling_2023": {
+ "templateId": "AthenaDance:Spray_SpringFling_2023",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_StWHordeModeMVP_Lvl4": {
+ "templateId": "AthenaDance:Spray_StWHordeModeMVP_Lvl4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_SunBurst_Alt": {
+ "templateId": "AthenaDance:Spray_SunBurst_Alt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_SunBurst_Face": {
+ "templateId": "AthenaDance:Spray_SunBurst_Face",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Sunlit": {
+ "templateId": "AthenaDance:Spray_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_TheHerald": {
+ "templateId": "AthenaDance:Spray_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_TigerRootQuest": {
+ "templateId": "AthenaDance:Spray_TigerRootQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_TigerRootQuest2": {
+ "templateId": "AthenaDance:Spray_TigerRootQuest2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_VaultBreakers_Leaderboard": {
+ "templateId": "AthenaDance:Spray_VaultBreakers_Leaderboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_VaultBreakers_Pumpkin": {
+ "templateId": "AthenaDance:Spray_VaultBreakers_Pumpkin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_VaultBreakers_Snake": {
+ "templateId": "AthenaDance:Spray_VaultBreakers_Snake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Venice_Bird": {
+ "templateId": "AthenaDance:Spray_Venice_Bird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Venice_Skateboard": {
+ "templateId": "AthenaDance:Spray_Venice_Skateboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_VitalPsych_Hop": {
+ "templateId": "AthenaDance:Spray_VitalPsych_Hop",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_VitalPsych_Peace": {
+ "templateId": "AthenaDance:Spray_VitalPsych_Peace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Winter2022_CreativeQuest_2": {
+ "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Winter2022_CreativeQuest_HotCocoa": {
+ "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_HotCocoa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Winter2022_CreativeQuest_MistleToe": {
+ "templateId": "AthenaDance:Spray_Winter2022_CreativeQuest_MistleToe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_WinterReindeer_Winterfest2022": {
+ "templateId": "AthenaDance:Spray_WinterReindeer_Winterfest2022",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:Spray_Yonder_Drip": {
+ "templateId": "AthenaDance:Spray_Yonder_Drip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Squad_Umbrella": {
+ "templateId": "AthenaGlider:Squad_Umbrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_001_Basketball": {
+ "templateId": "AthenaDance:TOY_001_Basketball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_001_Basketball_Creative": {
+ "templateId": "AthenaDance:TOY_001_Basketball_Creative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_002_Golfball": {
+ "templateId": "AthenaDance:TOY_002_Golfball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_002_Golfball_Creative": {
+ "templateId": "AthenaDance:TOY_002_Golfball_Creative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_003_BeachBall": {
+ "templateId": "AthenaDance:TOY_003_BeachBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_004_BasketballElite": {
+ "templateId": "AthenaDance:TOY_004_BasketballElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_005_GolfballElite": {
+ "templateId": "AthenaDance:TOY_005_GolfballElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_006_BeachBallElite": {
+ "templateId": "AthenaDance:TOY_006_BeachBallElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_007_Tomato": {
+ "templateId": "AthenaDance:TOY_007_Tomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_008_TomatoElite": {
+ "templateId": "AthenaDance:TOY_008_TomatoElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_009_BurgerElite": {
+ "templateId": "AthenaDance:TOY_009_BurgerElite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_010_IcePuck": {
+ "templateId": "AthenaDance:TOY_010_IcePuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_011_Snowball": {
+ "templateId": "AthenaDance:TOY_011_Snowball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_012_AmericanFootball": {
+ "templateId": "AthenaDance:TOY_012_AmericanFootball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_014_BouncyBall": {
+ "templateId": "AthenaDance:TOY_014_BouncyBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_015_Bottle": {
+ "templateId": "AthenaDance:TOY_015_Bottle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_017_FlyingDisc": {
+ "templateId": "AthenaDance:TOY_017_FlyingDisc",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_018_FancyFlyingDisc": {
+ "templateId": "AthenaDance:TOY_018_FancyFlyingDisc",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_019_WaterBalloon": {
+ "templateId": "AthenaDance:TOY_019_WaterBalloon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_020_Bottle_Fancy": {
+ "templateId": "AthenaDance:TOY_020_Bottle_Fancy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_021_SoccerBall": {
+ "templateId": "AthenaDance:TOY_021_SoccerBall",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_021_SoccerBall_Creative": {
+ "templateId": "AthenaDance:TOY_021_SoccerBall_Creative",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_Basketball_Hookshot_LUWQ6": {
+ "templateId": "AthenaDance:TOY_Basketball_Hookshot_LUWQ6",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaDance:TOY_PartyRift": {
+ "templateId": "AthenaDance:TOY_PartyRift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_001_Disco": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_001_Disco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_002_Rainbow": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_002_Rainbow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_003_Fire": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_003_Fire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_004_BlueStreak": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_004_BlueStreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_005_Bubbles": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_005_Bubbles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_007_TP": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_007_TP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_008_Lightning": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_008_Lightning",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_009_Hearts": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_009_Hearts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_010_RetroScifi": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_010_RetroScifi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_011_Glitch": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_011_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_012_Spraypaint": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_012_Spraypaint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_013_ShootingStar": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_013_ShootingStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_014_Vines": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_014_Vines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_015_GoldenStarfish": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_015_GoldenStarfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_016_Ice": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_016_Ice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_017_Lanterns": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_017_Lanterns",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_018_Runes": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_018_Runes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_019_PSBurnout": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_019_PSBurnout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_020_RavenQuill": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_020_RavenQuill",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_021_Bling": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_021_Bling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_022_GreenSmoke": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_022_GreenSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_023_Fireflies": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_023_Fireflies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_024_DieselSmoke": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_024_DieselSmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_025_JackOLantern": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_025_JackOLantern",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_026_Bats": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_026_Bats",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_027_Sands": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_027_Sands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_032_StringLights": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_032_StringLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_033_Snowflakes": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_033_Snowflakes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_034_SwirlySmoke": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_034_SwirlySmoke",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_036_FiberOptics": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_036_FiberOptics",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_037_Glyphs": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_037_Glyphs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_043_DiscoBalls": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_043_DiscoBalls",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_044_Lava": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_044_Lava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_045_Undertow": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_045_Undertow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_046_Clover": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_046_Clover",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_047_AmmoBelt": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_047_AmmoBelt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_048_Spectral": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_048_Spectral",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_051_NeonTubes": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_051_NeonTubes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_054_KpopGlow": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_054_KpopGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_055_Bananas": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_055_Bananas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_056_StormTracker": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_056_StormTracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_057_BattleSuit": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_057_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_059_Sony2": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_059_Sony2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_063_BeachBalls": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_063_BeachBalls",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_065_DJRemix": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_065_DJRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_066_TacticalHUD": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_066_TacticalHUD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_068_Popcorn": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_068_Popcorn",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_074_DriftLightning": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_074_DriftLightning",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_075_Celestial": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_075_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_076_ReactiveLight": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_076_ReactiveLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_077_Billiards": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_077_Billiards",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_078_SlurpMonster": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_078_SlurpMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_079_ZeroPoint": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_079_ZeroPoint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_080_DNAHelix": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_080_DNAHelix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_081_MissingLink": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_081_MissingLink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_082_HolidayGarland": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_082_HolidayGarland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_083_AlphabetSoup": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_083_AlphabetSoup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_084_Briefcase": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_084_Briefcase",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_085_Candy": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_085_Candy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_086_SnowStorm": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_086_SnowStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_087_TNTina": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_087_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_088_Informer": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_088_Informer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_089_BlackKnight": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_089_BlackKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_090_Constellation": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_090_Constellation",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_091_Longshorts": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_091_Longshorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_092_SchoolOfFish": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_092_SchoolOfFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_093_SpaceWanderer": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_093_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_094_WaterSpray": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_094_WaterSpray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_095_HightowerDate": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_095_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_096_HightowerGrape": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_096_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_097_HightowerSpeedlines": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_097_HightowerSpeedlines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_098_HightowerSquash": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_098_HightowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_099_HightowerTapas": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_099_HightowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_100_Turbo": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_100_Turbo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_101_ParcelPrank": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_101_ParcelPrank",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_102_HightowerVertigo_G63FW": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_102_HightowerVertigo_G63FW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_104_FlapjackWrangler": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_104_FlapjackWrangler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_105_FutureSamurai": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_105_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_106_GeoStorm": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_106_GeoStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_109_SpaceFighter": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_109_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_110_Lexa": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_110_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_111_HolidayCookies": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_111_HolidayCookies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_112_CubeNinja": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_112_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_113_DinoHunter": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_113_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_114_Temple": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_114_Temple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_115_Tube": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_115_Tube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_116_WavesOfLight": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_116_WavesOfLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_117_Abduction": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_117_Abduction",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_118_BoostWings": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_118_BoostWings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_119_ColorTrip": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_119_ColorTrip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_120_EnergyNet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_121_DarkAndLight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_122_FireworkStrands": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_122_FireworkStrands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_123_TacticalWoodlandBlue": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_123_TacticalWoodlandBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_124_CerealBox": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_124_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_125_GhostHunter": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_125_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_126_Clash": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_126_Clash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_127_TeriyakiToon": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_127_TeriyakiToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_128_Division": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_128_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_129_GhostChain": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_129_GhostChain",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_130_ExoSuit": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_130_ExoSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_131_Gumball": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_131_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_133_LoneWolfMale": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_133_LoneWolfMale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_134_MotorcyclistFemale": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_134_MotorcyclistFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_135_ParallelComic": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_135_ParallelComic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_136_RenegadeRaiderFire": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_136_RenegadeRaiderFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_137_TurtleneckCrystal": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_137_TurtleneckCrystal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_138_Cadet": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_138_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_139_KnightCat": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_139_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_140_Mystic": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_140_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_141_TheOrigin": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_141_TheOrigin",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_142_OrderGuard": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_142_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_144_PinkWidow": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_144_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_145_Fuchisa": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_145_Fuchisa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_146_Realm": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_146_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_147_Lancelot": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_147_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [
+ {
+ "channel": "Particle",
+ "active": "Particle1",
+ "owned": [
+ "Particle1",
+ "Particle2",
+ "Particle3"
+ ]
+ }
+ ],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_148_80sRibbon": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_148_80sRibbon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_149_SeaLife": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_149_SeaLife",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_150_Avalanche": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_150_Avalanche",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaSkyDiveContrail:Trails_ID_31_GreenFlame": {
+ "templateId": "AthenaSkyDiveContrail:Trails_ID_31_GreenFlame",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_AssassinSuit": {
+ "templateId": "AthenaGlider:Umbrella_AssassinSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Bronze": {
+ "templateId": "AthenaGlider:Umbrella_Bronze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Buffet_Rainbow_354HU": {
+ "templateId": "AthenaGlider:Umbrella_Buffet_Rainbow_354HU",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Buffet_RD4DP": {
+ "templateId": "AthenaGlider:Umbrella_Buffet_RD4DP",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Buffet_Silver_P2HUY": {
+ "templateId": "AthenaGlider:Umbrella_Buffet_Silver_P2HUY",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_BuildABrella": {
+ "templateId": "AthenaGlider:Umbrella_BuildABrella",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Daybreak": {
+ "templateId": "AthenaGlider:Umbrella_Daybreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Gold": {
+ "templateId": "AthenaGlider:Umbrella_Gold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Lettuce": {
+ "templateId": "AthenaGlider:Umbrella_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_OGVault": {
+ "templateId": "AthenaGlider:Umbrella_OGVault",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_PaperParasol": {
+ "templateId": "AthenaGlider:Umbrella_PaperParasol",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Platinum": {
+ "templateId": "AthenaGlider:Umbrella_Platinum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_04": {
+ "templateId": "AthenaGlider:Umbrella_Season_04",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_05": {
+ "templateId": "AthenaGlider:Umbrella_Season_05",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_06": {
+ "templateId": "AthenaGlider:Umbrella_Season_06",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_07": {
+ "templateId": "AthenaGlider:Umbrella_Season_07",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_08": {
+ "templateId": "AthenaGlider:Umbrella_Season_08",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_09": {
+ "templateId": "AthenaGlider:Umbrella_Season_09",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_10": {
+ "templateId": "AthenaGlider:Umbrella_Season_10",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_11": {
+ "templateId": "AthenaGlider:Umbrella_Season_11",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_12": {
+ "templateId": "AthenaGlider:Umbrella_Season_12",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_13": {
+ "templateId": "AthenaGlider:Umbrella_Season_13",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_14": {
+ "templateId": "AthenaGlider:Umbrella_Season_14",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_15": {
+ "templateId": "AthenaGlider:Umbrella_Season_15",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_16": {
+ "templateId": "AthenaGlider:Umbrella_Season_16",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_17": {
+ "templateId": "AthenaGlider:Umbrella_Season_17",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_18": {
+ "templateId": "AthenaGlider:Umbrella_Season_18",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_19": {
+ "templateId": "AthenaGlider:Umbrella_Season_19",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_20": {
+ "templateId": "AthenaGlider:Umbrella_Season_20",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_21": {
+ "templateId": "AthenaGlider:Umbrella_Season_21",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_22": {
+ "templateId": "AthenaGlider:Umbrella_Season_22",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_23": {
+ "templateId": "AthenaGlider:Umbrella_Season_23",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Season_24": {
+ "templateId": "AthenaGlider:Umbrella_Season_24",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Silver": {
+ "templateId": "AthenaGlider:Umbrella_Silver",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Snowflake": {
+ "templateId": "AthenaGlider:Umbrella_Snowflake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Storm": {
+ "templateId": "AthenaGlider:Umbrella_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_SummerVividBrainFemale": {
+ "templateId": "AthenaGlider:Umbrella_SummerVividBrainFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaGlider:Umbrella_Vendetta": {
+ "templateId": "AthenaGlider:Umbrella_Vendetta",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_001_ArcticCamo": {
+ "templateId": "AthenaItemWrap:Wrap_001_ArcticCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_002_HolidayGreen": {
+ "templateId": "AthenaItemWrap:Wrap_002_HolidayGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_003_AnodizedRed": {
+ "templateId": "AthenaItemWrap:Wrap_003_AnodizedRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_004_DurrBurgerPJs": {
+ "templateId": "AthenaItemWrap:Wrap_004_DurrBurgerPJs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_005_CarbonFiber": {
+ "templateId": "AthenaItemWrap:Wrap_005_CarbonFiber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_006_Ice": {
+ "templateId": "AthenaItemWrap:Wrap_006_Ice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_007_CandyCane": {
+ "templateId": "AthenaItemWrap:Wrap_007_CandyCane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_009_NewYears": {
+ "templateId": "AthenaItemWrap:Wrap_009_NewYears",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_010_BlueEmissive": {
+ "templateId": "AthenaItemWrap:Wrap_010_BlueEmissive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_011_HotCold": {
+ "templateId": "AthenaItemWrap:Wrap_011_HotCold",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_012_DragonMask": {
+ "templateId": "AthenaItemWrap:Wrap_012_DragonMask",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_013_Valentines": {
+ "templateId": "AthenaItemWrap:Wrap_013_Valentines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_014_IceCream": {
+ "templateId": "AthenaItemWrap:Wrap_014_IceCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_015_Snowboard": {
+ "templateId": "AthenaItemWrap:Wrap_015_Snowboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_016_CuddleTeam": {
+ "templateId": "AthenaItemWrap:Wrap_016_CuddleTeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_017_DragonNinja": {
+ "templateId": "AthenaItemWrap:Wrap_017_DragonNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_018_Magma": {
+ "templateId": "AthenaItemWrap:Wrap_018_Magma",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_019_Tiger": {
+ "templateId": "AthenaItemWrap:Wrap_019_Tiger",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_020_TropicalCamo": {
+ "templateId": "AthenaItemWrap:Wrap_020_TropicalCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_021_Pirate": {
+ "templateId": "AthenaItemWrap:Wrap_021_Pirate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_022_Gemstone": {
+ "templateId": "AthenaItemWrap:Wrap_022_Gemstone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_023_Aztec": {
+ "templateId": "AthenaItemWrap:Wrap_023_Aztec",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_024_StealthBlack": {
+ "templateId": "AthenaItemWrap:Wrap_024_StealthBlack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_027_Lucky": {
+ "templateId": "AthenaItemWrap:Wrap_027_Lucky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_028_DevilLace": {
+ "templateId": "AthenaItemWrap:Wrap_028_DevilLace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_029_HeistClub": {
+ "templateId": "AthenaItemWrap:Wrap_029_HeistClub",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_030_HeistDiamond": {
+ "templateId": "AthenaItemWrap:Wrap_030_HeistDiamond",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_031_HeistHeart": {
+ "templateId": "AthenaItemWrap:Wrap_031_HeistHeart",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_032_HeistSpade": {
+ "templateId": "AthenaItemWrap:Wrap_032_HeistSpade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_033_TropicalGirl": {
+ "templateId": "AthenaItemWrap:Wrap_033_TropicalGirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_034_Waypoint": {
+ "templateId": "AthenaItemWrap:Wrap_034_Waypoint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_035_GoldenSnake": {
+ "templateId": "AthenaItemWrap:Wrap_035_GoldenSnake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_036_EvilSuit": {
+ "templateId": "AthenaItemWrap:Wrap_036_EvilSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_037_EvilSuit2": {
+ "templateId": "AthenaItemWrap:Wrap_037_EvilSuit2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_038_PilotSkull": {
+ "templateId": "AthenaItemWrap:Wrap_038_PilotSkull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_039_PilotWolf": {
+ "templateId": "AthenaItemWrap:Wrap_039_PilotWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_040_PilotFalcon": {
+ "templateId": "AthenaItemWrap:Wrap_040_PilotFalcon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_041_PilotBee": {
+ "templateId": "AthenaItemWrap:Wrap_041_PilotBee",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_042_BandageNinja": {
+ "templateId": "AthenaItemWrap:Wrap_042_BandageNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_043_Bandolette": {
+ "templateId": "AthenaItemWrap:Wrap_043_Bandolette",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_044_BattlePlane": {
+ "templateId": "AthenaItemWrap:Wrap_044_BattlePlane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_045_Angel": {
+ "templateId": "AthenaItemWrap:Wrap_045_Angel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_046_Demon": {
+ "templateId": "AthenaItemWrap:Wrap_046_Demon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_047_Bunny": {
+ "templateId": "AthenaItemWrap:Wrap_047_Bunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_048_Bunny2": {
+ "templateId": "AthenaItemWrap:Wrap_048_Bunny2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_049_PajamaPartyGreen": {
+ "templateId": "AthenaItemWrap:Wrap_049_PajamaPartyGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_050_PajamaPartyRed": {
+ "templateId": "AthenaItemWrap:Wrap_050_PajamaPartyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_051_ShatterFly": {
+ "templateId": "AthenaItemWrap:Wrap_051_ShatterFly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_052_Rhino": {
+ "templateId": "AthenaItemWrap:Wrap_052_Rhino",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_053_Jackel": {
+ "templateId": "AthenaItemWrap:Wrap_053_Jackel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_054_Jaguar": {
+ "templateId": "AthenaItemWrap:Wrap_054_Jaguar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_055_Lion": {
+ "templateId": "AthenaItemWrap:Wrap_055_Lion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_056_BlackWidow": {
+ "templateId": "AthenaItemWrap:Wrap_056_BlackWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_057_Banana": {
+ "templateId": "AthenaItemWrap:Wrap_057_Banana",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_058_Storm": {
+ "templateId": "AthenaItemWrap:Wrap_058_Storm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_059_BattleSuit": {
+ "templateId": "AthenaItemWrap:Wrap_059_BattleSuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_060_Rooster": {
+ "templateId": "AthenaItemWrap:Wrap_060_Rooster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_061_PurpleSplatter": {
+ "templateId": "AthenaItemWrap:Wrap_061_PurpleSplatter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_062_NeoTag": {
+ "templateId": "AthenaItemWrap:Wrap_062_NeoTag",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_063_StrawberryPilot": {
+ "templateId": "AthenaItemWrap:Wrap_063_StrawberryPilot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_064_Raptor": {
+ "templateId": "AthenaItemWrap:Wrap_064_Raptor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_065_AssassinSuit01": {
+ "templateId": "AthenaItemWrap:Wrap_065_AssassinSuit01",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_066_AssassinSuit02": {
+ "templateId": "AthenaItemWrap:Wrap_066_AssassinSuit02",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_067_StreetDemon": {
+ "templateId": "AthenaItemWrap:Wrap_067_StreetDemon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_069_Geisha": {
+ "templateId": "AthenaItemWrap:Wrap_069_Geisha",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_070_MaskedWarrior": {
+ "templateId": "AthenaItemWrap:Wrap_070_MaskedWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_071_Pug": {
+ "templateId": "AthenaItemWrap:Wrap_071_Pug",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_072_TeriyakiFish": {
+ "templateId": "AthenaItemWrap:Wrap_072_TeriyakiFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_073_TeriyakiFish2": {
+ "templateId": "AthenaItemWrap:Wrap_073_TeriyakiFish2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_074_TeriyakiFishVR": {
+ "templateId": "AthenaItemWrap:Wrap_074_TeriyakiFishVR",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_075_LineSwirl": {
+ "templateId": "AthenaItemWrap:Wrap_075_LineSwirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_076_CyberRunner": {
+ "templateId": "AthenaItemWrap:Wrap_076_CyberRunner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_077_StormSoldier": {
+ "templateId": "AthenaItemWrap:Wrap_077_StormSoldier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_078_SlurpJuice": {
+ "templateId": "AthenaItemWrap:Wrap_078_SlurpJuice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_079_Mash": {
+ "templateId": "AthenaItemWrap:Wrap_079_Mash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_080_Blackout1": {
+ "templateId": "AthenaItemWrap:Wrap_080_Blackout1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_081_Blackout2": {
+ "templateId": "AthenaItemWrap:Wrap_081_Blackout2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_082_PlasticArmyGreen": {
+ "templateId": "AthenaItemWrap:Wrap_082_PlasticArmyGreen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_083_PlasticArmyGrey": {
+ "templateId": "AthenaItemWrap:Wrap_083_PlasticArmyGrey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_084_4thofJuly": {
+ "templateId": "AthenaItemWrap:Wrap_084_4thofJuly",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_085_Beach": {
+ "templateId": "AthenaItemWrap:Wrap_085_Beach",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_086_StandardBlueCamo": {
+ "templateId": "AthenaItemWrap:Wrap_086_StandardBlueCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_087_BriteBomberSummer": {
+ "templateId": "AthenaItemWrap:Wrap_087_BriteBomberSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_088_DriftSummer": {
+ "templateId": "AthenaItemWrap:Wrap_088_DriftSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_089_GlowBro1": {
+ "templateId": "AthenaItemWrap:Wrap_089_GlowBro1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_090_GlowBro2": {
+ "templateId": "AthenaItemWrap:Wrap_090_GlowBro2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_091_HoverSurfboard": {
+ "templateId": "AthenaItemWrap:Wrap_091_HoverSurfboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_092_Sarong": {
+ "templateId": "AthenaItemWrap:Wrap_092_Sarong",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_093_TechMage": {
+ "templateId": "AthenaItemWrap:Wrap_093_TechMage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_094_Watermelon": {
+ "templateId": "AthenaItemWrap:Wrap_094_Watermelon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_095_WeirdObjects": {
+ "templateId": "AthenaItemWrap:Wrap_095_WeirdObjects",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_096_Zodiac": {
+ "templateId": "AthenaItemWrap:Wrap_096_Zodiac",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_097_NeonLines": {
+ "templateId": "AthenaItemWrap:Wrap_097_NeonLines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_098_Birthday2019": {
+ "templateId": "AthenaItemWrap:Wrap_098_Birthday2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_099_CyberKarate": {
+ "templateId": "AthenaItemWrap:Wrap_099_CyberKarate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_100_DigitalShift": {
+ "templateId": "AthenaItemWrap:Wrap_100_DigitalShift",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_101_Multibot": {
+ "templateId": "AthenaItemWrap:Wrap_101_Multibot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_102_WorldCup2019": {
+ "templateId": "AthenaItemWrap:Wrap_102_WorldCup2019",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_103_Yatter": {
+ "templateId": "AthenaItemWrap:Wrap_103_Yatter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_104_Bubblegum": {
+ "templateId": "AthenaItemWrap:Wrap_104_Bubblegum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_105_Cube": {
+ "templateId": "AthenaItemWrap:Wrap_105_Cube",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_106_DJRemix": {
+ "templateId": "AthenaItemWrap:Wrap_106_DJRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_107_GraffitiRemix": {
+ "templateId": "AthenaItemWrap:Wrap_107_GraffitiRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_108_KnightRemix": {
+ "templateId": "AthenaItemWrap:Wrap_108_KnightRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_109_RustRemix": {
+ "templateId": "AthenaItemWrap:Wrap_109_RustRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_110_StreetRacerDriftRemix": {
+ "templateId": "AthenaItemWrap:Wrap_110_StreetRacerDriftRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_111_ZeroPointCeiling": {
+ "templateId": "AthenaItemWrap:Wrap_111_ZeroPointCeiling",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_112_ZeroPointEnergy": {
+ "templateId": "AthenaItemWrap:Wrap_112_ZeroPointEnergy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_113_ZeroPointFloor": {
+ "templateId": "AthenaItemWrap:Wrap_113_ZeroPointFloor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_115_PlasticArmyRed": {
+ "templateId": "AthenaItemWrap:Wrap_115_PlasticArmyRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_116_Emotigun": {
+ "templateId": "AthenaItemWrap:Wrap_116_Emotigun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_117_Asteroid": {
+ "templateId": "AthenaItemWrap:Wrap_117_Asteroid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_118_AstronautEvil": {
+ "templateId": "AthenaItemWrap:Wrap_118_AstronautEvil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_119_DragonTag": {
+ "templateId": "AthenaItemWrap:Wrap_119_DragonTag",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_121_TechOpsBlue": {
+ "templateId": "AthenaItemWrap:Wrap_121_TechOpsBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_122_StandardRedCamo": {
+ "templateId": "AthenaItemWrap:Wrap_122_StandardRedCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_123_StreetPink": {
+ "templateId": "AthenaItemWrap:Wrap_123_StreetPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_124_Syko": {
+ "templateId": "AthenaItemWrap:Wrap_124_Syko",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_125_ClockWork": {
+ "templateId": "AthenaItemWrap:Wrap_125_ClockWork",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_126_CircleFade": {
+ "templateId": "AthenaItemWrap:Wrap_126_CircleFade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_127_FragmentedGlow": {
+ "templateId": "AthenaItemWrap:Wrap_127_FragmentedGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_128_FragmentedGlowEclipse": {
+ "templateId": "AthenaItemWrap:Wrap_128_FragmentedGlowEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_129_FragmentedGlowFire": {
+ "templateId": "AthenaItemWrap:Wrap_129_FragmentedGlowFire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_130_LemonLime": {
+ "templateId": "AthenaItemWrap:Wrap_130_LemonLime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_131_LemonLimeJuice": {
+ "templateId": "AthenaItemWrap:Wrap_131_LemonLimeJuice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_132_BarbequeLarry": {
+ "templateId": "AthenaItemWrap:Wrap_132_BarbequeLarry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_133_MetalTri": {
+ "templateId": "AthenaItemWrap:Wrap_133_MetalTri",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_134_Fingerprint": {
+ "templateId": "AthenaItemWrap:Wrap_134_Fingerprint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_135_LicoriceSwirl": {
+ "templateId": "AthenaItemWrap:Wrap_135_LicoriceSwirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_136_Punchy": {
+ "templateId": "AthenaItemWrap:Wrap_136_Punchy",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_137_SleepyTime": {
+ "templateId": "AthenaItemWrap:Wrap_137_SleepyTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_138_Taco": {
+ "templateId": "AthenaItemWrap:Wrap_138_Taco",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_139_Prismatic": {
+ "templateId": "AthenaItemWrap:Wrap_139_Prismatic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_141_BrightGunnerRemix": {
+ "templateId": "AthenaItemWrap:Wrap_141_BrightGunnerRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_142_HoneycombGrey": {
+ "templateId": "AthenaItemWrap:Wrap_142_HoneycombGrey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_143_RainbowStrike": {
+ "templateId": "AthenaItemWrap:Wrap_143_RainbowStrike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_144_Sakura": {
+ "templateId": "AthenaItemWrap:Wrap_144_Sakura",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_145_Kurohomura": {
+ "templateId": "AthenaItemWrap:Wrap_145_Kurohomura",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_146_BulletBlue": {
+ "templateId": "AthenaItemWrap:Wrap_146_BulletBlue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_147_CODSquadPlaid": {
+ "templateId": "AthenaItemWrap:Wrap_147_CODSquadPlaid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_148_CrazyEight": {
+ "templateId": "AthenaItemWrap:Wrap_148_CrazyEight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_149_FishermanAlterEgo": {
+ "templateId": "AthenaItemWrap:Wrap_149_FishermanAlterEgo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_150_RedRidingRemix": {
+ "templateId": "AthenaItemWrap:Wrap_150_RedRidingRemix",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_151_Sheath": {
+ "templateId": "AthenaItemWrap:Wrap_151_Sheath",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_152_SlurpMonster": {
+ "templateId": "AthenaItemWrap:Wrap_152_SlurpMonster",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_154_Haunt": {
+ "templateId": "AthenaItemWrap:Wrap_154_Haunt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_155_ViperAlterEgo": {
+ "templateId": "AthenaItemWrap:Wrap_155_ViperAlterEgo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_156_SheathAlterEgo": {
+ "templateId": "AthenaItemWrap:Wrap_156_SheathAlterEgo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_157_CuddleTeamDark": {
+ "templateId": "AthenaItemWrap:Wrap_157_CuddleTeamDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_158_DevilRock": {
+ "templateId": "AthenaItemWrap:Wrap_158_DevilRock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_159_Freak": {
+ "templateId": "AthenaItemWrap:Wrap_159_Freak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_160_ModernWitch": {
+ "templateId": "AthenaItemWrap:Wrap_160_ModernWitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_161_Nosh": {
+ "templateId": "AthenaItemWrap:Wrap_161_Nosh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_162_PumpkinPattern": {
+ "templateId": "AthenaItemWrap:Wrap_162_PumpkinPattern",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_163_Scarecrow_Female": {
+ "templateId": "AthenaItemWrap:Wrap_163_Scarecrow_Female",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_164_Scarecrow_Male": {
+ "templateId": "AthenaItemWrap:Wrap_164_Scarecrow_Male",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_165_SkeletonHunter": {
+ "templateId": "AthenaItemWrap:Wrap_165_SkeletonHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_166_SpookyFace": {
+ "templateId": "AthenaItemWrap:Wrap_166_SpookyFace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_167_Mastermind": {
+ "templateId": "AthenaItemWrap:Wrap_167_Mastermind",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_168_EyeballOctopus": {
+ "templateId": "AthenaItemWrap:Wrap_168_EyeballOctopus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_169_JetSki": {
+ "templateId": "AthenaItemWrap:Wrap_169_JetSki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_170_StreetOpsPink": {
+ "templateId": "AthenaItemWrap:Wrap_170_StreetOpsPink",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_171_BoneSnake": {
+ "templateId": "AthenaItemWrap:Wrap_171_BoneSnake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_173_ForestQueen": {
+ "templateId": "AthenaItemWrap:Wrap_173_ForestQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_174_Cavalry": {
+ "templateId": "AthenaItemWrap:Wrap_174_Cavalry",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_175_Slurp": {
+ "templateId": "AthenaItemWrap:Wrap_175_Slurp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_176_TeriyakiWarrior": {
+ "templateId": "AthenaItemWrap:Wrap_176_TeriyakiWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_177_Banner": {
+ "templateId": "AthenaItemWrap:Wrap_177_Banner",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_178_Constellation": {
+ "templateId": "AthenaItemWrap:Wrap_178_Constellation",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_179_HolidayPJs": {
+ "templateId": "AthenaItemWrap:Wrap_179_HolidayPJs",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_180_HolidayTime": {
+ "templateId": "AthenaItemWrap:Wrap_180_HolidayTime",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_182_NeonAnimal": {
+ "templateId": "AthenaItemWrap:Wrap_182_NeonAnimal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_183_NewYear2020": {
+ "templateId": "AthenaItemWrap:Wrap_183_NewYear2020",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_184_NewYearStar": {
+ "templateId": "AthenaItemWrap:Wrap_184_NewYearStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_185_SnowCover": {
+ "templateId": "AthenaItemWrap:Wrap_185_SnowCover",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_186_SnowGlobe": {
+ "templateId": "AthenaItemWrap:Wrap_186_SnowGlobe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_187_SnowStreak": {
+ "templateId": "AthenaItemWrap:Wrap_187_SnowStreak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_188_WrappingPaper": {
+ "templateId": "AthenaItemWrap:Wrap_188_WrappingPaper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_189_HolidayWrapping": {
+ "templateId": "AthenaItemWrap:Wrap_189_HolidayWrapping",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_190_FrogmanF": {
+ "templateId": "AthenaItemWrap:Wrap_190_FrogmanF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_191_GoldenSkeleton": {
+ "templateId": "AthenaItemWrap:Wrap_191_GoldenSkeleton",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_192_MetalLights": {
+ "templateId": "AthenaItemWrap:Wrap_192_MetalLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_193_NeonGraffiti": {
+ "templateId": "AthenaItemWrap:Wrap_193_NeonGraffiti",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_194_SharkAttack": {
+ "templateId": "AthenaItemWrap:Wrap_194_SharkAttack",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_195_StreetRat": {
+ "templateId": "AthenaItemWrap:Wrap_195_StreetRat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_196_TigerJaw": {
+ "templateId": "AthenaItemWrap:Wrap_196_TigerJaw",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_197_ToxinBubbles": {
+ "templateId": "AthenaItemWrap:Wrap_197_ToxinBubbles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_198_VirtualShadow": {
+ "templateId": "AthenaItemWrap:Wrap_198_VirtualShadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_199_AgentAce": {
+ "templateId": "AthenaItemWrap:Wrap_199_AgentAce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_200_BuffCat": {
+ "templateId": "AthenaItemWrap:Wrap_200_BuffCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_201_CatBurglar": {
+ "templateId": "AthenaItemWrap:Wrap_201_CatBurglar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_202_FadingMosaicA": {
+ "templateId": "AthenaItemWrap:Wrap_202_FadingMosaicA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_203_Henchman": {
+ "templateId": "AthenaItemWrap:Wrap_203_Henchman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_204_IceBreaker": {
+ "templateId": "AthenaItemWrap:Wrap_204_IceBreaker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_205_MeteorShowerC": {
+ "templateId": "AthenaItemWrap:Wrap_205_MeteorShowerC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_206_Photographer": {
+ "templateId": "AthenaItemWrap:Wrap_206_Photographer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_208_ShootingStar": {
+ "templateId": "AthenaItemWrap:Wrap_208_ShootingStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_209_SpyTechHacker": {
+ "templateId": "AthenaItemWrap:Wrap_209_SpyTechHacker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_210_Thermal": {
+ "templateId": "AthenaItemWrap:Wrap_210_Thermal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_211_TNTina": {
+ "templateId": "AthenaItemWrap:Wrap_211_TNTina",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_212_RosesAreRed": {
+ "templateId": "AthenaItemWrap:Wrap_212_RosesAreRed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_213_SkullBrite": {
+ "templateId": "AthenaItemWrap:Wrap_213_SkullBrite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_214_Carnaval": {
+ "templateId": "AthenaItemWrap:Wrap_214_Carnaval",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_215_CarnavalCycle": {
+ "templateId": "AthenaItemWrap:Wrap_215_CarnavalCycle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_216_BananaAgent": {
+ "templateId": "AthenaItemWrap:Wrap_216_BananaAgent",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_217_ActivatedRunes": {
+ "templateId": "AthenaItemWrap:Wrap_217_ActivatedRunes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_218_Anarchy_Acres_Farmer": {
+ "templateId": "AthenaItemWrap:Wrap_218_Anarchy_Acres_Farmer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_219_NightSky": {
+ "templateId": "AthenaItemWrap:Wrap_219_NightSky",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_220_Spectrum": {
+ "templateId": "AthenaItemWrap:Wrap_220_Spectrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_221_TwinDark": {
+ "templateId": "AthenaItemWrap:Wrap_221_TwinDark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_222_ComicWipe": {
+ "templateId": "AthenaItemWrap:Wrap_222_ComicWipe",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_223_Fryangles": {
+ "templateId": "AthenaItemWrap:Wrap_223_Fryangles",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_224_GarageBand": {
+ "templateId": "AthenaItemWrap:Wrap_224_GarageBand",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_225_Nebula": {
+ "templateId": "AthenaItemWrap:Wrap_225_Nebula",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_226_Donut": {
+ "templateId": "AthenaItemWrap:Wrap_226_Donut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_227_SignalInterference": {
+ "templateId": "AthenaItemWrap:Wrap_227_SignalInterference",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_228_CardboardCrew": {
+ "templateId": "AthenaItemWrap:Wrap_228_CardboardCrew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_229_ChocoBunny": {
+ "templateId": "AthenaItemWrap:Wrap_229_ChocoBunny",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_230_Glacier": {
+ "templateId": "AthenaItemWrap:Wrap_230_Glacier",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_231_TargetPractice": {
+ "templateId": "AthenaItemWrap:Wrap_231_TargetPractice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_232_BadEgg": {
+ "templateId": "AthenaItemWrap:Wrap_232_BadEgg",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_233_ElectricBurst": {
+ "templateId": "AthenaItemWrap:Wrap_233_ElectricBurst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_234_GlowVortex": {
+ "templateId": "AthenaItemWrap:Wrap_234_GlowVortex",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_236_Moo": {
+ "templateId": "AthenaItemWrap:Wrap_236_Moo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_237_NeonPulse": {
+ "templateId": "AthenaItemWrap:Wrap_237_NeonPulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_238_RainbowGlitter": {
+ "templateId": "AthenaItemWrap:Wrap_238_RainbowGlitter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_239_GlowCamo": {
+ "templateId": "AthenaItemWrap:Wrap_239_GlowCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_240_PlasmaSpectrum": {
+ "templateId": "AthenaItemWrap:Wrap_240_PlasmaSpectrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_241_BlackKnightFemale": {
+ "templateId": "AthenaItemWrap:Wrap_241_BlackKnightFemale",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_242_Bruce": {
+ "templateId": "AthenaItemWrap:Wrap_242_Bruce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_243_Gator": {
+ "templateId": "AthenaItemWrap:Wrap_243_Gator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_244_MechanicalEngineer": {
+ "templateId": "AthenaItemWrap:Wrap_244_MechanicalEngineer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_245_OceanRider": {
+ "templateId": "AthenaItemWrap:Wrap_245_OceanRider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_246_ProfessorPup": {
+ "templateId": "AthenaItemWrap:Wrap_246_ProfessorPup",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_248_SOS": {
+ "templateId": "AthenaItemWrap:Wrap_248_SOS",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_249_SpaceWanderer": {
+ "templateId": "AthenaItemWrap:Wrap_249_SpaceWanderer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_250_TacticalScuba": {
+ "templateId": "AthenaItemWrap:Wrap_250_TacticalScuba",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_251_Ultraviolet": {
+ "templateId": "AthenaItemWrap:Wrap_251_Ultraviolet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_252_Dazzle": {
+ "templateId": "AthenaItemWrap:Wrap_252_Dazzle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_253_FishKite": {
+ "templateId": "AthenaItemWrap:Wrap_253_FishKite",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_254_NeonBands": {
+ "templateId": "AthenaItemWrap:Wrap_254_NeonBands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_255_ConstellationSun": {
+ "templateId": "AthenaItemWrap:Wrap_255_ConstellationSun",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_256_HorizontalBands": {
+ "templateId": "AthenaItemWrap:Wrap_256_HorizontalBands",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_257_WaffleCone": {
+ "templateId": "AthenaItemWrap:Wrap_257_WaffleCone",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_258_Celestial": {
+ "templateId": "AthenaItemWrap:Wrap_258_Celestial",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_259_Dummeez": {
+ "templateId": "AthenaItemWrap:Wrap_259_Dummeez",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_260_FruitPunch": {
+ "templateId": "AthenaItemWrap:Wrap_260_FruitPunch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_261_TreeFrog": {
+ "templateId": "AthenaItemWrap:Wrap_261_TreeFrog",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_262_Angler": {
+ "templateId": "AthenaItemWrap:Wrap_262_Angler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_263_RainbowLava": {
+ "templateId": "AthenaItemWrap:Wrap_263_RainbowLava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_264_SpaceWandererGlider": {
+ "templateId": "AthenaItemWrap:Wrap_264_SpaceWandererGlider",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_265_SpinningStars": {
+ "templateId": "AthenaItemWrap:Wrap_265_SpinningStars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_267_HightowerDate": {
+ "templateId": "AthenaItemWrap:Wrap_267_HightowerDate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_268_HightowerGrape": {
+ "templateId": "AthenaItemWrap:Wrap_268_HightowerGrape",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_269_HightowerHoneydew": {
+ "templateId": "AthenaItemWrap:Wrap_269_HightowerHoneydew",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_270_HightowerMango": {
+ "templateId": "AthenaItemWrap:Wrap_270_HightowerMango",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_271_HightowerSquash": {
+ "templateId": "AthenaItemWrap:Wrap_271_HightowerSquash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_272_HightowerTapas": {
+ "templateId": "AthenaItemWrap:Wrap_272_HightowerTapas",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_273_HightowerTomato": {
+ "templateId": "AthenaItemWrap:Wrap_273_HightowerTomato",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_274_HightowerWasabi": {
+ "templateId": "AthenaItemWrap:Wrap_274_HightowerWasabi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_275_Soy_Q9R5Z": {
+ "templateId": "AthenaItemWrap:Wrap_275_Soy_Q9R5Z",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_276_GoldDrip": {
+ "templateId": "AthenaItemWrap:Wrap_276_GoldDrip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_277_NeonJellyfish": {
+ "templateId": "AthenaItemWrap:Wrap_277_NeonJellyfish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_278_TropicalFish": {
+ "templateId": "AthenaItemWrap:Wrap_278_TropicalFish",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_279_FrostedDonut": {
+ "templateId": "AthenaItemWrap:Wrap_279_FrostedDonut",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_280_Gel": {
+ "templateId": "AthenaItemWrap:Wrap_280_Gel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_281_LongShorts": {
+ "templateId": "AthenaItemWrap:Wrap_281_LongShorts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_282_NeonSign": {
+ "templateId": "AthenaItemWrap:Wrap_282_NeonSign",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_283_Plasticine": {
+ "templateId": "AthenaItemWrap:Wrap_283_Plasticine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_284_Birthday2020": {
+ "templateId": "AthenaItemWrap:Wrap_284_Birthday2020",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_285_KevinCouture": {
+ "templateId": "AthenaItemWrap:Wrap_285_KevinCouture",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_286_Muzak": {
+ "templateId": "AthenaItemWrap:Wrap_286_Muzak",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_287_MythToon": {
+ "templateId": "AthenaItemWrap:Wrap_287_MythToon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_288_Amber": {
+ "templateId": "AthenaItemWrap:Wrap_288_Amber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_289_DragonflyWings": {
+ "templateId": "AthenaItemWrap:Wrap_289_DragonflyWings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_290_Newspaper": {
+ "templateId": "AthenaItemWrap:Wrap_290_Newspaper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_291_StripedGlyph": {
+ "templateId": "AthenaItemWrap:Wrap_291_StripedGlyph",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_292_Bones": {
+ "templateId": "AthenaItemWrap:Wrap_292_Bones",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_293_Phantom": {
+ "templateId": "AthenaItemWrap:Wrap_293_Phantom",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_294_PumpkinPunk": {
+ "templateId": "AthenaItemWrap:Wrap_294_PumpkinPunk",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_295_CatBurglarGhost": {
+ "templateId": "AthenaItemWrap:Wrap_295_CatBurglarGhost",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_296_Beats": {
+ "templateId": "AthenaItemWrap:Wrap_296_Beats",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_297_Chip": {
+ "templateId": "AthenaItemWrap:Wrap_297_Chip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_298_Embers": {
+ "templateId": "AthenaItemWrap:Wrap_298_Embers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_299_Holo": {
+ "templateId": "AthenaItemWrap:Wrap_299_Holo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_300_StreetSigns": {
+ "templateId": "AthenaItemWrap:Wrap_300_StreetSigns",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_301_CosmicPulse": {
+ "templateId": "AthenaItemWrap:Wrap_301_CosmicPulse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_302_FrozenLake": {
+ "templateId": "AthenaItemWrap:Wrap_302_FrozenLake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_303_GasCloud": {
+ "templateId": "AthenaItemWrap:Wrap_303_GasCloud",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_304_ToonStars": {
+ "templateId": "AthenaItemWrap:Wrap_304_ToonStars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_305_AncientGladiator": {
+ "templateId": "AthenaItemWrap:Wrap_305_AncientGladiator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_306_Shapeshifter": {
+ "templateId": "AthenaItemWrap:Wrap_306_Shapeshifter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_307_Lexa": {
+ "templateId": "AthenaItemWrap:Wrap_307_Lexa",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_308_FutureSamurai": {
+ "templateId": "AthenaItemWrap:Wrap_308_FutureSamurai",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_309_FlapjackWrangler": {
+ "templateId": "AthenaItemWrap:Wrap_309_FlapjackWrangler",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_310_SpaceFighter": {
+ "templateId": "AthenaItemWrap:Wrap_310_SpaceFighter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_311_VanGogh": {
+ "templateId": "AthenaItemWrap:Wrap_311_VanGogh",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_312_ConfettiLights": {
+ "templateId": "AthenaItemWrap:Wrap_312_ConfettiLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_313_MetalFlakes": {
+ "templateId": "AthenaItemWrap:Wrap_313_MetalFlakes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_314_Neon": {
+ "templateId": "AthenaItemWrap:Wrap_314_Neon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_315_NeonXmasSign": {
+ "templateId": "AthenaItemWrap:Wrap_315_NeonXmasSign",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_316_CombatDoll": {
+ "templateId": "AthenaItemWrap:Wrap_316_CombatDoll",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_317_GroovySplash": {
+ "templateId": "AthenaItemWrap:Wrap_317_GroovySplash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_318_Immiscible": {
+ "templateId": "AthenaItemWrap:Wrap_318_Immiscible",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_319_Nightmare_31A6D": {
+ "templateId": "AthenaItemWrap:Wrap_319_Nightmare_31A6D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_320_Stars": {
+ "templateId": "AthenaItemWrap:Wrap_320_Stars",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_321_FoxWarrior_IH2A5": {
+ "templateId": "AthenaItemWrap:Wrap_321_FoxWarrior_IH2A5",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_322_BlackHole": {
+ "templateId": "AthenaItemWrap:Wrap_322_BlackHole",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_323_HalfFull": {
+ "templateId": "AthenaItemWrap:Wrap_323_HalfFull",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_324_PinkToons": {
+ "templateId": "AthenaItemWrap:Wrap_324_PinkToons",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_325_Valentine2021": {
+ "templateId": "AthenaItemWrap:Wrap_325_Valentine2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_326_Flatline": {
+ "templateId": "AthenaItemWrap:Wrap_326_Flatline",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_327_SmashedGlass": {
+ "templateId": "AthenaItemWrap:Wrap_327_SmashedGlass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_328_StrawberryCream": {
+ "templateId": "AthenaItemWrap:Wrap_328_StrawberryCream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_329_LlamaHeroWinter_XZTGC": {
+ "templateId": "AthenaItemWrap:Wrap_329_LlamaHeroWinter_XZTGC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_330_DoodleBuddies": {
+ "templateId": "AthenaItemWrap:Wrap_330_DoodleBuddies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_331_Hazard": {
+ "templateId": "AthenaItemWrap:Wrap_331_Hazard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_332_StarAces": {
+ "templateId": "AthenaItemWrap:Wrap_332_StarAces",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_333_StealthWoodland": {
+ "templateId": "AthenaItemWrap:Wrap_333_StealthWoodland",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_334_ChickenWarrior": {
+ "templateId": "AthenaItemWrap:Wrap_334_ChickenWarrior",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_335_CubeNinja": {
+ "templateId": "AthenaItemWrap:Wrap_335_CubeNinja",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_336_DinoHunter": {
+ "templateId": "AthenaItemWrap:Wrap_336_DinoHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_337_NeonCatFashion_93JRO": {
+ "templateId": "AthenaItemWrap:Wrap_337_NeonCatFashion_93JRO",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_338_TowerSentinel": {
+ "templateId": "AthenaItemWrap:Wrap_338_TowerSentinel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_339_TurboCar_T7E0M": {
+ "templateId": "AthenaItemWrap:Wrap_339_TurboCar_T7E0M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_340_Yogurt": {
+ "templateId": "AthenaItemWrap:Wrap_340_Yogurt",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_341_Koi": {
+ "templateId": "AthenaItemWrap:Wrap_341_Koi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_342_Mustang": {
+ "templateId": "AthenaItemWrap:Wrap_342_Mustang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_343_PowerLines": {
+ "templateId": "AthenaItemWrap:Wrap_343_PowerLines",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_344_WickedDuck": {
+ "templateId": "AthenaItemWrap:Wrap_344_WickedDuck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_345_Accumulate": {
+ "templateId": "AthenaItemWrap:Wrap_345_Accumulate",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_346_Flora": {
+ "templateId": "AthenaItemWrap:Wrap_346_Flora",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_347_TeriyakiFishPrincess": {
+ "templateId": "AthenaItemWrap:Wrap_347_TeriyakiFishPrincess",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_348_Alchemy_FYA4I": {
+ "templateId": "AthenaItemWrap:Wrap_348_Alchemy_FYA4I",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_349_Cranium": {
+ "templateId": "AthenaItemWrap:Wrap_349_Cranium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_350_BeeHive": {
+ "templateId": "AthenaItemWrap:Wrap_350_BeeHive",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_351_DoodleColors": {
+ "templateId": "AthenaItemWrap:Wrap_351_DoodleColors",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_352_LanternFest": {
+ "templateId": "AthenaItemWrap:Wrap_352_LanternFest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_353_Nautical": {
+ "templateId": "AthenaItemWrap:Wrap_353_Nautical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_354_AstroMap": {
+ "templateId": "AthenaItemWrap:Wrap_354_AstroMap",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_355_TaxiUpgradedMulticolor": {
+ "templateId": "AthenaItemWrap:Wrap_355_TaxiUpgradedMulticolor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_356_GoldenSkeletonF_FT0B3": {
+ "templateId": "AthenaItemWrap:Wrap_356_GoldenSkeletonF_FT0B3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_357_SpaceCuddles_8GDWQ": {
+ "templateId": "AthenaItemWrap:Wrap_357_SpaceCuddles_8GDWQ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_358_NeonTiki": {
+ "templateId": "AthenaItemWrap:Wrap_358_NeonTiki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_359_StrangeCosmos": {
+ "templateId": "AthenaItemWrap:Wrap_359_StrangeCosmos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_360_FindersKeepers": {
+ "templateId": "AthenaItemWrap:Wrap_360_FindersKeepers",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_361_RetroRainbow": {
+ "templateId": "AthenaItemWrap:Wrap_361_RetroRainbow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_362_Believer": {
+ "templateId": "AthenaItemWrap:Wrap_362_Believer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_363_Invader": {
+ "templateId": "AthenaItemWrap:Wrap_363_Invader",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_364_Innovator": {
+ "templateId": "AthenaItemWrap:Wrap_364_Innovator",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_365_Faux": {
+ "templateId": "AthenaItemWrap:Wrap_365_Faux",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_366_Ruckus": {
+ "templateId": "AthenaItemWrap:Wrap_366_Ruckus",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_367_LavaLamp": {
+ "templateId": "AthenaItemWrap:Wrap_367_LavaLamp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_368_UFOBeam": {
+ "templateId": "AthenaItemWrap:Wrap_368_UFOBeam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_369_AlienZapper": {
+ "templateId": "AthenaItemWrap:Wrap_369_AlienZapper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_370_DragonMaskV2": {
+ "templateId": "AthenaItemWrap:Wrap_370_DragonMaskV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_371_DragonMaskV3": {
+ "templateId": "AthenaItemWrap:Wrap_371_DragonMaskV3",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_372_ButterflyWings": {
+ "templateId": "AthenaItemWrap:Wrap_372_ButterflyWings",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_373_Firecracker": {
+ "templateId": "AthenaItemWrap:Wrap_373_Firecracker",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_374_Summer2021": {
+ "templateId": "AthenaItemWrap:Wrap_374_Summer2021",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_375_AlienPrism": {
+ "templateId": "AthenaItemWrap:Wrap_375_AlienPrism",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_376_CatBurglarSummer": {
+ "templateId": "AthenaItemWrap:Wrap_376_CatBurglarSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_378_BuffCatFanB_J74F1": {
+ "templateId": "AthenaItemWrap:Wrap_378_BuffCatFanB_J74F1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_379_Pliant": {
+ "templateId": "AthenaItemWrap:Wrap_379_Pliant",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_380_Mint": {
+ "templateId": "AthenaItemWrap:Wrap_380_Mint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_381_InkBlot": {
+ "templateId": "AthenaItemWrap:Wrap_381_InkBlot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_382_BuffCatFan_OQ9IZ": {
+ "templateId": "AthenaItemWrap:Wrap_382_BuffCatFan_OQ9IZ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_383_Buffet_KGN3R": {
+ "templateId": "AthenaItemWrap:Wrap_383_Buffet_KGN3R",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_384_PaperAirplane": {
+ "templateId": "AthenaItemWrap:Wrap_384_PaperAirplane",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_385_SeesawSlipper": {
+ "templateId": "AthenaItemWrap:Wrap_385_SeesawSlipper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_386_ToonHearts": {
+ "templateId": "AthenaItemWrap:Wrap_386_ToonHearts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_387_RuckusMini_6I5DM": {
+ "templateId": "AthenaItemWrap:Wrap_387_RuckusMini_6I5DM",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_388_Polygon": {
+ "templateId": "AthenaItemWrap:Wrap_388_Polygon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_389_Footsteps": {
+ "templateId": "AthenaItemWrap:Wrap_389_Footsteps",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_390_CelestialGlow": {
+ "templateId": "AthenaItemWrap:Wrap_390_CelestialGlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_391_Dragonfruit_YVN1M": {
+ "templateId": "AthenaItemWrap:Wrap_391_Dragonfruit_YVN1M",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_392_AlienFlora": {
+ "templateId": "AthenaItemWrap:Wrap_392_AlienFlora",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_393_Suspenders": {
+ "templateId": "AthenaItemWrap:Wrap_393_Suspenders",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_394_TextileSilver_ZUH63": {
+ "templateId": "AthenaItemWrap:Wrap_394_TextileSilver_ZUH63",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_395_TextileBlack_DBVU2": {
+ "templateId": "AthenaItemWrap:Wrap_395_TextileBlack_DBVU2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_396_TextileGold_GC2TL": {
+ "templateId": "AthenaItemWrap:Wrap_396_TextileGold_GC2TL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_397_PunkKoi": {
+ "templateId": "AthenaItemWrap:Wrap_397_PunkKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_398_Division": {
+ "templateId": "AthenaItemWrap:Wrap_398_Division",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_399_CerealBox": {
+ "templateId": "AthenaItemWrap:Wrap_399_CerealBox",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_400_SpaceChimp": {
+ "templateId": "AthenaItemWrap:Wrap_400_SpaceChimp",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_401_Cubes": {
+ "templateId": "AthenaItemWrap:Wrap_401_Cubes",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_402_Sideways": {
+ "templateId": "AthenaItemWrap:Wrap_402_Sideways",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_403_GhostHunter": {
+ "templateId": "AthenaItemWrap:Wrap_403_GhostHunter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_404_CritterFrenzy_SNXC0": {
+ "templateId": "AthenaItemWrap:Wrap_404_CritterFrenzy_SNXC0",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_405_GreenGel": {
+ "templateId": "AthenaItemWrap:Wrap_405_GreenGel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_406_Psyche_YFO29": {
+ "templateId": "AthenaItemWrap:Wrap_406_Psyche_YFO29",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_407_Peacock": {
+ "templateId": "AthenaItemWrap:Wrap_407_Peacock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_408_Vampire": {
+ "templateId": "AthenaItemWrap:Wrap_408_Vampire",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_409_CritterManiac_1B4II": {
+ "templateId": "AthenaItemWrap:Wrap_409_CritterManiac_1B4II",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_410_Collage": {
+ "templateId": "AthenaItemWrap:Wrap_410_Collage",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_411_SweetTeriyaki": {
+ "templateId": "AthenaItemWrap:Wrap_411_SweetTeriyaki",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_412_AlienDay": {
+ "templateId": "AthenaItemWrap:Wrap_412_AlienDay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_413_SAM_WK0AX": {
+ "templateId": "AthenaItemWrap:Wrap_413_SAM_WK0AX",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_414_Splash": {
+ "templateId": "AthenaItemWrap:Wrap_414_Splash",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_415_FingerprintSwirl": {
+ "templateId": "AthenaItemWrap:Wrap_415_FingerprintSwirl",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_416_QuantumShot": {
+ "templateId": "AthenaItemWrap:Wrap_416_QuantumShot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_417_Guava_7J7EW": {
+ "templateId": "AthenaItemWrap:Wrap_417_Guava_7J7EW",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_418_CloakedAssassin_I43FL": {
+ "templateId": "AthenaItemWrap:Wrap_418_CloakedAssassin_I43FL",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_419_Turtleneck": {
+ "templateId": "AthenaItemWrap:Wrap_419_Turtleneck",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_420_LoneWolf": {
+ "templateId": "AthenaItemWrap:Wrap_420_LoneWolf",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_421_BuffLlama": {
+ "templateId": "AthenaItemWrap:Wrap_421_BuffLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_422_Gumball": {
+ "templateId": "AthenaItemWrap:Wrap_422_Gumball",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_423_Motorcyclist": {
+ "templateId": "AthenaItemWrap:Wrap_423_Motorcyclist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_424_IslandNomad": {
+ "templateId": "AthenaItemWrap:Wrap_424_IslandNomad",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_425_Exosuit": {
+ "templateId": "AthenaItemWrap:Wrap_425_Exosuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_426_Parallel": {
+ "templateId": "AthenaItemWrap:Wrap_426_Parallel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_427_Peppermint": {
+ "templateId": "AthenaItemWrap:Wrap_427_Peppermint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_428_InnovatorFestive_Y04N1": {
+ "templateId": "AthenaItemWrap:Wrap_428_InnovatorFestive_Y04N1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_429_HolidaySweater": {
+ "templateId": "AthenaItemWrap:Wrap_429_HolidaySweater",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_430_WinterLights": {
+ "templateId": "AthenaItemWrap:Wrap_430_WinterLights",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_431_Logarithm_F8CWD": {
+ "templateId": "AthenaItemWrap:Wrap_431_Logarithm_F8CWD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_432_SkullPunk_KPBF4": {
+ "templateId": "AthenaItemWrap:Wrap_432_SkullPunk_KPBF4",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_433_LlamaLeague": {
+ "templateId": "AthenaItemWrap:Wrap_433_LlamaLeague",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_434_8-BitCat": {
+ "templateId": "AthenaItemWrap:Wrap_434_8-BitCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_435_GreenMarble": {
+ "templateId": "AthenaItemWrap:Wrap_435_GreenMarble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_436_ValentineHearts": {
+ "templateId": "AthenaItemWrap:Wrap_436_ValentineHearts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_437_SneakerPrint": {
+ "templateId": "AthenaItemWrap:Wrap_437_SneakerPrint",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_438_LoveQueen": {
+ "templateId": "AthenaItemWrap:Wrap_438_LoveQueen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_439_AlienWaves": {
+ "templateId": "AthenaItemWrap:Wrap_439_AlienWaves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_440_ShatterflyEclipse": {
+ "templateId": "AthenaItemWrap:Wrap_440_ShatterflyEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_441_ValentineFashion_H50ID": {
+ "templateId": "AthenaItemWrap:Wrap_441_ValentineFashion_H50ID",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_442_PuffyJacket": {
+ "templateId": "AthenaItemWrap:Wrap_442_PuffyJacket",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_443_SkyDream": {
+ "templateId": "AthenaItemWrap:Wrap_443_SkyDream",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_444_LeatherJacketPurple": {
+ "templateId": "AthenaItemWrap:Wrap_444_LeatherJacketPurple",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_445_Jade": {
+ "templateId": "AthenaItemWrap:Wrap_445_Jade",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_446_PancakeDay": {
+ "templateId": "AthenaItemWrap:Wrap_446_PancakeDay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_447_BlizzardBomber": {
+ "templateId": "AthenaItemWrap:Wrap_447_BlizzardBomber",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_448_WomensDay1": {
+ "templateId": "AthenaItemWrap:Wrap_448_WomensDay1",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_449_Bacteria": {
+ "templateId": "AthenaItemWrap:Wrap_449_Bacteria",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_450_Mystic": {
+ "templateId": "AthenaItemWrap:Wrap_450_Mystic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_451_OrderGuard": {
+ "templateId": "AthenaItemWrap:Wrap_451_OrderGuard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_452_Cadet": {
+ "templateId": "AthenaItemWrap:Wrap_452_Cadet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_453_Sienna": {
+ "templateId": "AthenaItemWrap:Wrap_453_Sienna",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_454_CyberArmor": {
+ "templateId": "AthenaItemWrap:Wrap_454_CyberArmor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_455_KnightCat": {
+ "templateId": "AthenaItemWrap:Wrap_455_KnightCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_456_OriginPrison": {
+ "templateId": "AthenaItemWrap:Wrap_456_OriginPrison",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_457_Binary": {
+ "templateId": "AthenaItemWrap:Wrap_457_Binary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_459_MilitaryFashionCamo": {
+ "templateId": "AthenaItemWrap:Wrap_459_MilitaryFashionCamo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_460_CactusRocker_92JZ7": {
+ "templateId": "AthenaItemWrap:Wrap_460_CactusRocker_92JZ7",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_461_GnomeCandle": {
+ "templateId": "AthenaItemWrap:Wrap_461_GnomeCandle",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_462_Corkboard": {
+ "templateId": "AthenaItemWrap:Wrap_462_Corkboard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_463_Disarray": {
+ "templateId": "AthenaItemWrap:Wrap_463_Disarray",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_464_PostParty": {
+ "templateId": "AthenaItemWrap:Wrap_464_PostParty",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_465_Lyrical": {
+ "templateId": "AthenaItemWrap:Wrap_465_Lyrical",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_466_CactusDancer_A": {
+ "templateId": "AthenaItemWrap:Wrap_466_CactusDancer_A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_467_BlackBird": {
+ "templateId": "AthenaItemWrap:Wrap_467_BlackBird",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_468_StainedGlass": {
+ "templateId": "AthenaItemWrap:Wrap_468_StainedGlass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_469_Trainer": {
+ "templateId": "AthenaItemWrap:Wrap_469_Trainer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_470_SleepyTimePeely": {
+ "templateId": "AthenaItemWrap:Wrap_470_SleepyTimePeely",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_471_NeonCatSpeed": {
+ "templateId": "AthenaItemWrap:Wrap_471_NeonCatSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_472_Barcode": {
+ "templateId": "AthenaItemWrap:Wrap_472_Barcode",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_473_GameBuddies": {
+ "templateId": "AthenaItemWrap:Wrap_473_GameBuddies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_474_MasterKey": {
+ "templateId": "AthenaItemWrap:Wrap_474_MasterKey",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_475_HeatedMetal": {
+ "templateId": "AthenaItemWrap:Wrap_475_HeatedMetal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_476_Alfredo": {
+ "templateId": "AthenaItemWrap:Wrap_476_Alfredo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_477_NeonGraffitiLava": {
+ "templateId": "AthenaItemWrap:Wrap_477_NeonGraffitiLava",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_478_RavenQuillParrot": {
+ "templateId": "AthenaItemWrap:Wrap_478_RavenQuillParrot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_479_Armadillo": {
+ "templateId": "AthenaItemWrap:Wrap_479_Armadillo",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_480_Comp20": {
+ "templateId": "AthenaItemWrap:Wrap_480_Comp20",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_481_Realm": {
+ "templateId": "AthenaItemWrap:Wrap_481_Realm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_482_Canary": {
+ "templateId": "AthenaItemWrap:Wrap_482_Canary",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_483_Lancelot": {
+ "templateId": "AthenaItemWrap:Wrap_483_Lancelot",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_484_BlueJay": {
+ "templateId": "AthenaItemWrap:Wrap_484_BlueJay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_486_Fuchsia": {
+ "templateId": "AthenaItemWrap:Wrap_486_Fuchsia",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_487_PinkWidow": {
+ "templateId": "AthenaItemWrap:Wrap_487_PinkWidow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_488_Comp20B": {
+ "templateId": "AthenaItemWrap:Wrap_488_Comp20B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_489_Comp20C": {
+ "templateId": "AthenaItemWrap:Wrap_489_Comp20C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_490_Comp20D": {
+ "templateId": "AthenaItemWrap:Wrap_490_Comp20D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_491_Comp20E": {
+ "templateId": "AthenaItemWrap:Wrap_491_Comp20E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_492_Comp20F": {
+ "templateId": "AthenaItemWrap:Wrap_492_Comp20F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_493_PinkDaisies": {
+ "templateId": "AthenaItemWrap:Wrap_493_PinkDaisies",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_494_RockVein": {
+ "templateId": "AthenaItemWrap:Wrap_494_RockVein",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_495_Ensemble": {
+ "templateId": "AthenaItemWrap:Wrap_495_Ensemble",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_496_Chisel": {
+ "templateId": "AthenaItemWrap:Wrap_496_Chisel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_497_MaskedWarriorSpring": {
+ "templateId": "AthenaItemWrap:Wrap_497_MaskedWarriorSpring",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_498_Waves": {
+ "templateId": "AthenaItemWrap:Wrap_498_Waves",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_499_MercurialStorm": {
+ "templateId": "AthenaItemWrap:Wrap_499_MercurialStorm",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_500_Barium": {
+ "templateId": "AthenaItemWrap:Wrap_500_Barium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_501_GlassSpectrum": {
+ "templateId": "AthenaItemWrap:Wrap_501_GlassSpectrum",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_502_CuddleHearts": {
+ "templateId": "AthenaItemWrap:Wrap_502_CuddleHearts",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_503_FuzzyBearSummer": {
+ "templateId": "AthenaItemWrap:Wrap_503_FuzzyBearSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_504_CharlotteSummer": {
+ "templateId": "AthenaItemWrap:Wrap_504_CharlotteSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_505_Fruitcake": {
+ "templateId": "AthenaItemWrap:Wrap_505_Fruitcake",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_506_SummerStride": {
+ "templateId": "AthenaItemWrap:Wrap_506_SummerStride",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_507_SummerVivid": {
+ "templateId": "AthenaItemWrap:Wrap_507_SummerVivid",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_508_ApexWild": {
+ "templateId": "AthenaItemWrap:Wrap_508_ApexWild",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_509_Chaos": {
+ "templateId": "AthenaItemWrap:Wrap_509_Chaos",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_510_AvantGarde": {
+ "templateId": "AthenaItemWrap:Wrap_510_AvantGarde",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_511_FutureSamuraiSummer": {
+ "templateId": "AthenaItemWrap:Wrap_511_FutureSamuraiSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_512_Handlebar": {
+ "templateId": "AthenaItemWrap:Wrap_512_Handlebar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_513_WildCard": {
+ "templateId": "AthenaItemWrap:Wrap_513_WildCard",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_514_ROYGBIVLlama": {
+ "templateId": "AthenaItemWrap:Wrap_514_ROYGBIVLlama",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_515_NeonJam": {
+ "templateId": "AthenaItemWrap:Wrap_515_NeonJam",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_516_Comp21A": {
+ "templateId": "AthenaItemWrap:Wrap_516_Comp21A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_517_Comp21B": {
+ "templateId": "AthenaItemWrap:Wrap_517_Comp21B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_518_Comp21C": {
+ "templateId": "AthenaItemWrap:Wrap_518_Comp21C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_519_Comp21D": {
+ "templateId": "AthenaItemWrap:Wrap_519_Comp21D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_520_Comp21E": {
+ "templateId": "AthenaItemWrap:Wrap_520_Comp21E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_521_Comp21F": {
+ "templateId": "AthenaItemWrap:Wrap_521_Comp21F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_AllKnowing": {
+ "templateId": "AthenaItemWrap:Wrap_AllKnowing",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Amour": {
+ "templateId": "AthenaItemWrap:Wrap_Amour",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Apprentice": {
+ "templateId": "AthenaItemWrap:Wrap_Apprentice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_BadBear": {
+ "templateId": "AthenaItemWrap:Wrap_BadBear",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Barium_Demon": {
+ "templateId": "AthenaItemWrap:Wrap_Barium_Demon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Bites": {
+ "templateId": "AthenaItemWrap:Wrap_Bites",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_BlueGlaze": {
+ "templateId": "AthenaItemWrap:Wrap_BlueGlaze",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_BoneMarrow": {
+ "templateId": "AthenaItemWrap:Wrap_BoneMarrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_BrightFlames": {
+ "templateId": "AthenaItemWrap:Wrap_BrightFlames",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Calavera": {
+ "templateId": "AthenaItemWrap:Wrap_Calavera",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Candor": {
+ "templateId": "AthenaItemWrap:Wrap_Candor",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CatBurglarGameplay": {
+ "templateId": "AthenaItemWrap:Wrap_CatBurglarGameplay",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Chainmail": {
+ "templateId": "AthenaItemWrap:Wrap_Chainmail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ChaosDarkIce": {
+ "templateId": "AthenaItemWrap:Wrap_ChaosDarkIce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ChillCat": {
+ "templateId": "AthenaItemWrap:Wrap_ChillCat",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ChromeDJ": {
+ "templateId": "AthenaItemWrap:Wrap_ChromeDJ",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Circuit": {
+ "templateId": "AthenaItemWrap:Wrap_Circuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CirrusVine": {
+ "templateId": "AthenaItemWrap:Wrap_CirrusVine",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Citadel": {
+ "templateId": "AthenaItemWrap:Wrap_Citadel",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ClearRadius": {
+ "templateId": "AthenaItemWrap:Wrap_ClearRadius",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CloudySpace": {
+ "templateId": "AthenaItemWrap:Wrap_CloudySpace",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ClubSound": {
+ "templateId": "AthenaItemWrap:Wrap_ClubSound",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CometWinter": {
+ "templateId": "AthenaItemWrap:Wrap_CometWinter",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22A": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22B": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22C": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22D": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22E": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp22F": {
+ "templateId": "AthenaItemWrap:Wrap_Comp22F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23A": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23A",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23B": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23B",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23C": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23C",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23D": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23D",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23E": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23E",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp23F": {
+ "templateId": "AthenaItemWrap:Wrap_Comp23F",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Comp24": {
+ "templateId": "AthenaItemWrap:Wrap_Comp24",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Conscience": {
+ "templateId": "AthenaItemWrap:Wrap_Conscience",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CoyoteTrail": {
+ "templateId": "AthenaItemWrap:Wrap_CoyoteTrail",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Crush": {
+ "templateId": "AthenaItemWrap:Wrap_Crush",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_CyberFu_Glitch": {
+ "templateId": "AthenaItemWrap:Wrap_CyberFu_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_DarkAzeala": {
+ "templateId": "AthenaItemWrap:Wrap_DarkAzeala",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_DazzleV2": {
+ "templateId": "AthenaItemWrap:Wrap_DazzleV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_DefectBlip": {
+ "templateId": "AthenaItemWrap:Wrap_DefectBlip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_DefectGlitch": {
+ "templateId": "AthenaItemWrap:Wrap_DefectGlitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Designer": {
+ "templateId": "AthenaItemWrap:Wrap_Designer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Despair": {
+ "templateId": "AthenaItemWrap:Wrap_Despair",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_DiscordQuest": {
+ "templateId": "AthenaItemWrap:Wrap_DiscordQuest",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Ebony": {
+ "templateId": "AthenaItemWrap:Wrap_Ebony",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_EmberRae": {
+ "templateId": "AthenaItemWrap:Wrap_EmberRae",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GalaxyKnight": {
+ "templateId": "AthenaItemWrap:Wrap_GalaxyKnight",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeA": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeA",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeB": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeB",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeC": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeC",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeD": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeD",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeE": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeE",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GrandSchemeF": {
+ "templateId": "AthenaItemWrap:Wrap_GrandSchemeF",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_GreenGlass": {
+ "templateId": "AthenaItemWrap:Wrap_GreenGlass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_HeadHunterStar": {
+ "templateId": "AthenaItemWrap:Wrap_HeadHunterStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_HeadSet": {
+ "templateId": "AthenaItemWrap:Wrap_HeadSet",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_HeistSleek": {
+ "templateId": "AthenaItemWrap:Wrap_HeistSleek",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_HexagonColors": {
+ "templateId": "AthenaItemWrap:Wrap_HexagonColors",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Inferno": {
+ "templateId": "AthenaItemWrap:Wrap_Inferno",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_LanternGlass": {
+ "templateId": "AthenaItemWrap:Wrap_LanternGlass",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Lettuce": {
+ "templateId": "AthenaItemWrap:Wrap_Lettuce",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_LightningDragon": {
+ "templateId": "AthenaItemWrap:Wrap_LightningDragon",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_LocalZilla_Blue": {
+ "templateId": "AthenaItemWrap:Wrap_LocalZilla_Blue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_LopexSnow": {
+ "templateId": "AthenaItemWrap:Wrap_LopexSnow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_MagicMeadow": {
+ "templateId": "AthenaItemWrap:Wrap_MagicMeadow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_MechPilotShark": {
+ "templateId": "AthenaItemWrap:Wrap_MechPilotShark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_MetalScout": {
+ "templateId": "AthenaItemWrap:Wrap_MetalScout",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_MeteorWoman": {
+ "templateId": "AthenaItemWrap:Wrap_MeteorWoman",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_MirageHike": {
+ "templateId": "AthenaItemWrap:Wrap_MirageHike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Mochi": {
+ "templateId": "AthenaItemWrap:Wrap_Mochi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Mouse": {
+ "templateId": "AthenaItemWrap:Wrap_Mouse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_NebulaV2": {
+ "templateId": "AthenaItemWrap:Wrap_NebulaV2",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_NeonCircuit": {
+ "templateId": "AthenaItemWrap:Wrap_NeonCircuit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Neon_Blob": {
+ "templateId": "AthenaItemWrap:Wrap_Neon_Blob",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Neon_Drip": {
+ "templateId": "AthenaItemWrap:Wrap_Neon_Drip",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_NitroFlow": {
+ "templateId": "AthenaItemWrap:Wrap_NitroFlow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Pencil": {
+ "templateId": "AthenaItemWrap:Wrap_Pencil",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_PinkSpike": {
+ "templateId": "AthenaItemWrap:Wrap_PinkSpike",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_PlasmaCore": {
+ "templateId": "AthenaItemWrap:Wrap_PlasmaCore",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_PlotTwist": {
+ "templateId": "AthenaItemWrap:Wrap_PlotTwist",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Possession": {
+ "templateId": "AthenaItemWrap:Wrap_Possession",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_RedPepper": {
+ "templateId": "AthenaItemWrap:Wrap_RedPepper",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_RenegadeRaiderSpark": {
+ "templateId": "AthenaItemWrap:Wrap_RenegadeRaiderSpark",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_RetroSpeed": {
+ "templateId": "AthenaItemWrap:Wrap_RetroSpeed",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SailorSquadLeaderKoi": {
+ "templateId": "AthenaItemWrap:Wrap_SailorSquadLeaderKoi",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ScarletBionic": {
+ "templateId": "AthenaItemWrap:Wrap_ScarletBionic",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SeventiesDen": {
+ "templateId": "AthenaItemWrap:Wrap_SeventiesDen",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SharpFang": {
+ "templateId": "AthenaItemWrap:Wrap_SharpFang",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_ShinyStar": {
+ "templateId": "AthenaItemWrap:Wrap_ShinyStar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SnowSoldierFashion": {
+ "templateId": "AthenaItemWrap:Wrap_SnowSoldierFashion",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Sparrow": {
+ "templateId": "AthenaItemWrap:Wrap_Sparrow",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SquareCells": {
+ "templateId": "AthenaItemWrap:Wrap_SquareCells",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_StreetFashionEclipse": {
+ "templateId": "AthenaItemWrap:Wrap_StreetFashionEclipse",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_SunBurst": {
+ "templateId": "AthenaItemWrap:Wrap_SunBurst",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Sunlit": {
+ "templateId": "AthenaItemWrap:Wrap_Sunlit",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_TearScar": {
+ "templateId": "AthenaItemWrap:Wrap_TearScar",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_TheHerald": {
+ "templateId": "AthenaItemWrap:Wrap_TheHerald",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_TieDyeSummer": {
+ "templateId": "AthenaItemWrap:Wrap_TieDyeSummer",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_TigerRootHue": {
+ "templateId": "AthenaItemWrap:Wrap_TigerRootHue",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Titanium": {
+ "templateId": "AthenaItemWrap:Wrap_Titanium",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Veiled_Glitch": {
+ "templateId": "AthenaItemWrap:Wrap_Veiled_Glitch",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Venice": {
+ "templateId": "AthenaItemWrap:Wrap_Venice",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Villainess_Vault": {
+ "templateId": "AthenaItemWrap:Wrap_Villainess_Vault",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Virtuous": {
+ "templateId": "AthenaItemWrap:Wrap_Virtuous",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_VitalPsych": {
+ "templateId": "AthenaItemWrap:Wrap_VitalPsych",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaItemWrap:Wrap_Winter_Pal": {
+ "templateId": "AthenaItemWrap:Wrap_Winter_Pal",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "variants": [],
+ "favorite": false
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "past_seasons": [],
+ "season_match_boost": 999999999,
+ "loadouts": [
+ "sandbox_loadout",
+ "momentum0-loadout"
+ ],
+ "favorite_victorypose": "",
+ "mfa_reward_claimed": true,
+ "quest_manager": {
+ "dailyLoginInterval": "",
+ "dailyQuestRerolls": 1
+ },
+ "book_level": 1,
+ "season_num": 0,
+ "favorite_consumableemote": "",
+ "banner_color": "DefaultColor1",
+ "favorite_callingcard": "",
+ "favorite_character": "",
+ "favorite_spray": [],
+ "book_xp": 0,
+ "favorite_loadingscreen": "",
+ "book_purchased": false,
+ "lifetime_wins": 1,
+ "favorite_hat": "",
+ "level": 1,
+ "favorite_battlebus": "",
+ "favorite_mapmarker": "",
+ "favorite_vehicledeco": "",
+ "accountLevel": 1,
+ "favorite_backpack": "",
+ "favorite_dance": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "inventory_limit_bonus": 0,
+ "last_applied_loadout": "",
+ "favorite_skydivecontrail": "",
+ "favorite_pickaxe": "",
+ "favorite_glider": "",
+ "daily_rewards": {},
+ "xp": 999,
+ "season_friend_match_boost": 0,
+ "active_loadout_index": 0,
+ "favorite_musicpack": "",
+ "banner_icon": "StandardBanner1",
+ "favorite_itemwraps": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/athena.json b/Config/DefaultProfiles/athena.json
new file mode 100644
index 0000000..4caa05f
--- /dev/null
+++ b/Config/DefaultProfiles/athena.json
@@ -0,0 +1,520 @@
+{
+ "created": "2022-01-08T22:58:06.983Z",
+ "updated": "2022-01-08T22:58:57.261Z",
+ "rvn": 1,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "athena",
+ "version": "no_version",
+ "items": {
+ "sandbox_loadout": {
+ "templateId": "CosmeticLocker:cosmeticlocker_athena",
+ "attributes": {
+ "locker_slots_data": {
+ "slots": {
+ "Pickaxe": {
+ "items": [
+ "AthenaPickaxe:DefaultPickaxe"
+ ],
+ "activeVariants": []
+ },
+ "Dance": {
+ "items": [
+ "AthenaDance:EID_BoogieDown",
+ "AthenaDance:EID_DanceMoves",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "Glider": {
+ "items": [
+ "AthenaGlider:DefaultGlider"
+ ]
+ },
+ "Character": {
+ "items": [
+ "AthenaCharacter:CID_001_Athena_Commando_F_Default"
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "Backpack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "ItemWrap": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "activeVariants": [
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ ]
+ },
+ "LoadingScreen": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "MusicPack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "SkyDiveContrail": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ }
+ }
+ },
+ "use_count": 1,
+ "banner_icon_template": "",
+ "locker_name": "",
+ "banner_color_template": "",
+ "item_seen": false,
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "momentum0-loadout": {
+ "templateId": "CosmeticLocker:cosmeticlocker_athena",
+ "attributes": {
+ "locker_slots_data": {
+ "slots": {
+ "Pickaxe": {
+ "items": [
+ ""
+ ],
+ "activeVariants": []
+ },
+ "Dance": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "Glider": {
+ "items": [
+ ""
+ ]
+ },
+ "Character": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "Backpack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ {
+ "variants": []
+ }
+ ]
+ },
+ "ItemWrap": {
+ "items": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "activeVariants": [
+ null,
+ null,
+ null,
+ null,
+ null,
+ null,
+ null
+ ]
+ },
+ "LoadingScreen": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "MusicPack": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ },
+ "SkyDiveContrail": {
+ "items": [
+ ""
+ ],
+ "activeVariants": [
+ null
+ ]
+ }
+ }
+ },
+ "use_count": 1,
+ "banner_icon_template": "",
+ "locker_name": "MOMENTUM",
+ "banner_color_template": "",
+ "item_seen": false,
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "AthenaCharacter:CID_001_Athena_Commando_F_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_001_Athena_Commando_F_Default"
+ },
+ "AthenaCharacter:CID_002_Athena_Commando_F_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_002_Athena_Commando_F_Default"
+ },
+ "AthenaCharacter:CID_003_Athena_Commando_F_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_003_Athena_Commando_F_Default"
+ },
+ "AthenaCharacter:CID_004_Athena_Commando_F_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_004_Athena_Commando_F_Default"
+ },
+ "AthenaCharacter:CID_005_Athena_Commando_M_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_005_Athena_Commando_M_Default"
+ },
+ "AthenaCharacter:CID_006_Athena_Commando_M_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_006_Athena_Commando_M_Default"
+ },
+ "AthenaCharacter:CID_007_Athena_Commando_M_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_007_Athena_Commando_M_Default"
+ },
+ "AthenaCharacter:CID_008_Athena_Commando_M_Default": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_008_Athena_Commando_M_Default"
+ },
+ "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_556_Athena_Commando_F_RebirthDefaultA"
+ },
+ "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_557_Athena_Commando_F_RebirthDefaultB"
+ },
+ "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_558_Athena_Commando_F_RebirthDefaultC"
+ },
+ "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_559_Athena_Commando_F_RebirthDefaultD"
+ },
+ "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_560_Athena_Commando_M_RebirthDefaultA"
+ },
+ "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_561_Athena_Commando_M_RebirthDefaultB"
+ },
+ "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_562_Athena_Commando_M_RebirthDefaultC"
+ },
+ "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:CID_563_Athena_Commando_M_RebirthDefaultD"
+ },
+ "AthenaCharacter:cid_a_272_athena_commando_f_prime": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaCharacter:cid_a_272_athena_commando_f_prime"
+ },
+ "AthenaPickaxe:DefaultPickaxe": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaPickaxe:DefaultPickaxe"
+ },
+ "AthenaGlider:DefaultGlider": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaGlider:DefaultGlider"
+ },
+ "AthenaDance:EID_DanceMoves": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaDance:EID_DanceMoves"
+ },
+ "AthenaDance:EID_BoogieDown": {
+ "attributes": {
+ "favorite": false,
+ "item_seen": true,
+ "level": 0,
+ "max_level_bonus": 0,
+ "rnd_sel_cnt": 0,
+ "variants": [],
+ "xp": 0
+ },
+ "templateId": "AthenaDance:EID_BoogieDown"
+ }
+ },
+ "stats": {
+ "attributes": {
+ "season_match_boost": 0,
+ "loadouts": [
+ "sandbox_loadout",
+ "momentum0-loadout"
+ ],
+ "rested_xp_overflow": 0,
+ "mfa_reward_claimed": true,
+ "quest_manager": {
+ "dailyLoginInterval": "0001-01-01T00:00:00.000Z",
+ "dailyQuestRerolls": 1
+ },
+ "book_level": 1,
+ "season_num": 16,
+ "season_update": 1,
+ "book_xp": 1,
+ "permissions": [],
+ "book_purchased": false,
+ "lifetime_wins": 0,
+ "party_assist_quest": "",
+ "purchased_battle_pass_tier_offers": [],
+ "rested_xp_exchange": 0.333,
+ "level": 1,
+ "xp_overflow": 0,
+ "rested_xp": 0,
+ "rested_xp_mult": 0,
+ "accountLevel": 0,
+ "competitive_identity": {},
+ "inventory_limit_bonus": 0,
+ "last_applied_loadout": "sandbox_loadout",
+ "daily_rewards": {},
+ "xp": 0,
+ "season_friend_match_boost": 1,
+ "active_loadout_index": 1,
+ "favorite_musicpack": "",
+ "favorite_glider": "",
+ "favorite_pickaxe": "",
+ "favorite_skydivecontrail": "",
+ "favorite_backpack": "",
+ "pinned_quest": "",
+ "favorite_dance": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "favorite_itemwraps": [],
+ "favorite_character": "",
+ "favorite_loadingscreen": ""
+ }
+ },
+ "commandRevision": 5
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/campaign.json b/Config/DefaultProfiles/campaign.json
new file mode 100644
index 0000000..b030224
--- /dev/null
+++ b/Config/DefaultProfiles/campaign.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "campaign",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/collection_book_people0.json b/Config/DefaultProfiles/collection_book_people0.json
new file mode 100644
index 0000000..87040fd
--- /dev/null
+++ b/Config/DefaultProfiles/collection_book_people0.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "collection_book_people0",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/collection_book_schematics0.json b/Config/DefaultProfiles/collection_book_schematics0.json
new file mode 100644
index 0000000..68fd825
--- /dev/null
+++ b/Config/DefaultProfiles/collection_book_schematics0.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "collection_book_schematics0",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/collections.json b/Config/DefaultProfiles/collections.json
new file mode 100644
index 0000000..de6e55b
--- /dev/null
+++ b/Config/DefaultProfiles/collections.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "collections",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/common_core.json b/Config/DefaultProfiles/common_core.json
new file mode 100644
index 0000000..09dbb4b
--- /dev/null
+++ b/Config/DefaultProfiles/common_core.json
@@ -0,0 +1,2013 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "common_core",
+ "version": "no_version",
+ "items": {
+ "Currency:MtxPurchased": {
+ "templateId": "Currency:MtxPurchased",
+ "attributes": {
+ "platform": "EpicPC"
+ },
+ "quantity": 5000
+ },
+ "Token:FounderChatUnlock": {
+ "templateId": "Token:FounderChatUnlock",
+ "attributes": {
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "favorite": false
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor1": {
+ "templateId": "HomebaseBannerColor:DefaultColor1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor2": {
+ "templateId": "HomebaseBannerColor:DefaultColor2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor3": {
+ "templateId": "HomebaseBannerColor:DefaultColor3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor4": {
+ "templateId": "HomebaseBannerColor:DefaultColor4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor5": {
+ "templateId": "HomebaseBannerColor:DefaultColor5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor6": {
+ "templateId": "HomebaseBannerColor:DefaultColor6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor7": {
+ "templateId": "HomebaseBannerColor:DefaultColor7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor8": {
+ "templateId": "HomebaseBannerColor:DefaultColor8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor9": {
+ "templateId": "HomebaseBannerColor:DefaultColor9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor10": {
+ "templateId": "HomebaseBannerColor:DefaultColor10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor11": {
+ "templateId": "HomebaseBannerColor:DefaultColor11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor12": {
+ "templateId": "HomebaseBannerColor:DefaultColor12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor13": {
+ "templateId": "HomebaseBannerColor:DefaultColor13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor14": {
+ "templateId": "HomebaseBannerColor:DefaultColor14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor15": {
+ "templateId": "HomebaseBannerColor:DefaultColor15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor16": {
+ "templateId": "HomebaseBannerColor:DefaultColor16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor17": {
+ "templateId": "HomebaseBannerColor:DefaultColor17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor18": {
+ "templateId": "HomebaseBannerColor:DefaultColor18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor19": {
+ "templateId": "HomebaseBannerColor:DefaultColor19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor20": {
+ "templateId": "HomebaseBannerColor:DefaultColor20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor21": {
+ "templateId": "HomebaseBannerColor:DefaultColor21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner1": {
+ "templateId": "HomebaseBannerIcon:StandardBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner2": {
+ "templateId": "HomebaseBannerIcon:StandardBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner3": {
+ "templateId": "HomebaseBannerIcon:StandardBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner4": {
+ "templateId": "HomebaseBannerIcon:StandardBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner5": {
+ "templateId": "HomebaseBannerIcon:StandardBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner6": {
+ "templateId": "HomebaseBannerIcon:StandardBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner7": {
+ "templateId": "HomebaseBannerIcon:StandardBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner8": {
+ "templateId": "HomebaseBannerIcon:StandardBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner9": {
+ "templateId": "HomebaseBannerIcon:StandardBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner10": {
+ "templateId": "HomebaseBannerIcon:StandardBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner11": {
+ "templateId": "HomebaseBannerIcon:StandardBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner12": {
+ "templateId": "HomebaseBannerIcon:StandardBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner13": {
+ "templateId": "HomebaseBannerIcon:StandardBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner14": {
+ "templateId": "HomebaseBannerIcon:StandardBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner15": {
+ "templateId": "HomebaseBannerIcon:StandardBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner16": {
+ "templateId": "HomebaseBannerIcon:StandardBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner17": {
+ "templateId": "HomebaseBannerIcon:StandardBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner18": {
+ "templateId": "HomebaseBannerIcon:StandardBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner19": {
+ "templateId": "HomebaseBannerIcon:StandardBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner20": {
+ "templateId": "HomebaseBannerIcon:StandardBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner21": {
+ "templateId": "HomebaseBannerIcon:StandardBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner22": {
+ "templateId": "HomebaseBannerIcon:StandardBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner23": {
+ "templateId": "HomebaseBannerIcon:StandardBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner24": {
+ "templateId": "HomebaseBannerIcon:StandardBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner25": {
+ "templateId": "HomebaseBannerIcon:StandardBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner26": {
+ "templateId": "HomebaseBannerIcon:StandardBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner27": {
+ "templateId": "HomebaseBannerIcon:StandardBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner28": {
+ "templateId": "HomebaseBannerIcon:StandardBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner29": {
+ "templateId": "HomebaseBannerIcon:StandardBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner30": {
+ "templateId": "HomebaseBannerIcon:StandardBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner31": {
+ "templateId": "HomebaseBannerIcon:StandardBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner6": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:NewsletterBanner": {
+ "templateId": "HomebaseBannerIcon:NewsletterBanner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner1": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner2": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner3": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner4": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner5": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner6": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner7": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner8": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner9": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner10": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner11": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner12": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner13": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner14": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner15": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner16": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner17": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner18": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner19": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner20": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner21": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner22": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner23": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner24": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner25": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner26": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner27": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner28": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner29": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner30": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner31": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner32": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner32",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner33": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner33",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner34": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner34",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner35": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner35",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner36": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner36",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner37": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner37",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner38": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner38",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner39": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner39",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner40": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner40",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner41": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner41",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner42": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner42",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner43": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner43",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner44": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner44",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner45": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner45",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner46": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner46",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner47": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner47",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner48": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner48",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner49": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner49",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner50": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner50",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner51": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner51",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner52": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner52",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner53": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner53",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT1Banner": {
+ "templateId": "HomebaseBannerIcon:OT1Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT2Banner": {
+ "templateId": "HomebaseBannerIcon:OT2Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT3Banner": {
+ "templateId": "HomebaseBannerIcon:OT3Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT4Banner": {
+ "templateId": "HomebaseBannerIcon:OT4Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT5Banner": {
+ "templateId": "HomebaseBannerIcon:OT5Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT6Banner": {
+ "templateId": "HomebaseBannerIcon:OT6Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT7Banner": {
+ "templateId": "HomebaseBannerIcon:OT7Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT8Banner": {
+ "templateId": "HomebaseBannerIcon:OT8Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT9Banner": {
+ "templateId": "HomebaseBannerIcon:OT9Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT10Banner": {
+ "templateId": "HomebaseBannerIcon:OT10Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT11Banner": {
+ "templateId": "HomebaseBannerIcon:OT11Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner1": {
+ "templateId": "HomebaseBannerIcon:OtherBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner2": {
+ "templateId": "HomebaseBannerIcon:OtherBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner3": {
+ "templateId": "HomebaseBannerIcon:OtherBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner4": {
+ "templateId": "HomebaseBannerIcon:OtherBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner5": {
+ "templateId": "HomebaseBannerIcon:OtherBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner6": {
+ "templateId": "HomebaseBannerIcon:OtherBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner7": {
+ "templateId": "HomebaseBannerIcon:OtherBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner8": {
+ "templateId": "HomebaseBannerIcon:OtherBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner9": {
+ "templateId": "HomebaseBannerIcon:OtherBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner10": {
+ "templateId": "HomebaseBannerIcon:OtherBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner11": {
+ "templateId": "HomebaseBannerIcon:OtherBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner12": {
+ "templateId": "HomebaseBannerIcon:OtherBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner13": {
+ "templateId": "HomebaseBannerIcon:OtherBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner14": {
+ "templateId": "HomebaseBannerIcon:OtherBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner15": {
+ "templateId": "HomebaseBannerIcon:OtherBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner16": {
+ "templateId": "HomebaseBannerIcon:OtherBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner17": {
+ "templateId": "HomebaseBannerIcon:OtherBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner18": {
+ "templateId": "HomebaseBannerIcon:OtherBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner19": {
+ "templateId": "HomebaseBannerIcon:OtherBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner20": {
+ "templateId": "HomebaseBannerIcon:OtherBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner21": {
+ "templateId": "HomebaseBannerIcon:OtherBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner22": {
+ "templateId": "HomebaseBannerIcon:OtherBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner23": {
+ "templateId": "HomebaseBannerIcon:OtherBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner24": {
+ "templateId": "HomebaseBannerIcon:OtherBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner25": {
+ "templateId": "HomebaseBannerIcon:OtherBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner26": {
+ "templateId": "HomebaseBannerIcon:OtherBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner27": {
+ "templateId": "HomebaseBannerIcon:OtherBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner28": {
+ "templateId": "HomebaseBannerIcon:OtherBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner29": {
+ "templateId": "HomebaseBannerIcon:OtherBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner30": {
+ "templateId": "HomebaseBannerIcon:OtherBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner31": {
+ "templateId": "HomebaseBannerIcon:OtherBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner32": {
+ "templateId": "HomebaseBannerIcon:OtherBanner32",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner33": {
+ "templateId": "HomebaseBannerIcon:OtherBanner33",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner34": {
+ "templateId": "HomebaseBannerIcon:OtherBanner34",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner35": {
+ "templateId": "HomebaseBannerIcon:OtherBanner35",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner36": {
+ "templateId": "HomebaseBannerIcon:OtherBanner36",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner37": {
+ "templateId": "HomebaseBannerIcon:OtherBanner37",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner38": {
+ "templateId": "HomebaseBannerIcon:OtherBanner38",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner39": {
+ "templateId": "HomebaseBannerIcon:OtherBanner39",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner40": {
+ "templateId": "HomebaseBannerIcon:OtherBanner40",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner41": {
+ "templateId": "HomebaseBannerIcon:OtherBanner41",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner42": {
+ "templateId": "HomebaseBannerIcon:OtherBanner42",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner43": {
+ "templateId": "HomebaseBannerIcon:OtherBanner43",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner44": {
+ "templateId": "HomebaseBannerIcon:OtherBanner44",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner45": {
+ "templateId": "HomebaseBannerIcon:OtherBanner45",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner46": {
+ "templateId": "HomebaseBannerIcon:OtherBanner46",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner47": {
+ "templateId": "HomebaseBannerIcon:OtherBanner47",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner48": {
+ "templateId": "HomebaseBannerIcon:OtherBanner48",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner49": {
+ "templateId": "HomebaseBannerIcon:OtherBanner49",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner50": {
+ "templateId": "HomebaseBannerIcon:OtherBanner50",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner51": {
+ "templateId": "HomebaseBannerIcon:OtherBanner51",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner52": {
+ "templateId": "HomebaseBannerIcon:OtherBanner52",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner53": {
+ "templateId": "HomebaseBannerIcon:OtherBanner53",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner54": {
+ "templateId": "HomebaseBannerIcon:OtherBanner54",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner55": {
+ "templateId": "HomebaseBannerIcon:OtherBanner55",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner56": {
+ "templateId": "HomebaseBannerIcon:OtherBanner56",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner57": {
+ "templateId": "HomebaseBannerIcon:OtherBanner57",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner58": {
+ "templateId": "HomebaseBannerIcon:OtherBanner58",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner59": {
+ "templateId": "HomebaseBannerIcon:OtherBanner59",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner60": {
+ "templateId": "HomebaseBannerIcon:OtherBanner60",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner61": {
+ "templateId": "HomebaseBannerIcon:OtherBanner61",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner62": {
+ "templateId": "HomebaseBannerIcon:OtherBanner62",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner63": {
+ "templateId": "HomebaseBannerIcon:OtherBanner63",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner64": {
+ "templateId": "HomebaseBannerIcon:OtherBanner64",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner65": {
+ "templateId": "HomebaseBannerIcon:OtherBanner65",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner66": {
+ "templateId": "HomebaseBannerIcon:OtherBanner66",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner67": {
+ "templateId": "HomebaseBannerIcon:OtherBanner67",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner68": {
+ "templateId": "HomebaseBannerIcon:OtherBanner68",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner69": {
+ "templateId": "HomebaseBannerIcon:OtherBanner69",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner70": {
+ "templateId": "HomebaseBannerIcon:OtherBanner70",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner71": {
+ "templateId": "HomebaseBannerIcon:OtherBanner71",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner72": {
+ "templateId": "HomebaseBannerIcon:OtherBanner72",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner73": {
+ "templateId": "HomebaseBannerIcon:OtherBanner73",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner74": {
+ "templateId": "HomebaseBannerIcon:OtherBanner74",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner75": {
+ "templateId": "HomebaseBannerIcon:OtherBanner75",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner76": {
+ "templateId": "HomebaseBannerIcon:OtherBanner76",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner77": {
+ "templateId": "HomebaseBannerIcon:OtherBanner77",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner78": {
+ "templateId": "HomebaseBannerIcon:OtherBanner78",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner54": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner54",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner55": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner55",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner56": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner56",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner57": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner57",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner58": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner58",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerStonewoodComplete": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerStonewoodComplete",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerPlankertonComplete": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerPlankertonComplete",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerCannyValleyComplete": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerCannyValleyComplete",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason01": {
+ "templateId": "HomebaseBannerIcon:BRSeason01",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerHolidayEasy": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayEasy",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerHolidayMed": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayMed",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerHolidayHard": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerHolidayHard",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Bush": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Bush",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Salt": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Salt",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02LionHerald": {
+ "templateId": "HomebaseBannerIcon:BRSeason02LionHerald",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02CatSoldier": {
+ "templateId": "HomebaseBannerIcon:BRSeason02CatSoldier",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Dragon": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Dragon",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Planet": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Planet",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Crosshair": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Crosshair",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Bowling": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Bowling",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02MonsterTruck": {
+ "templateId": "HomebaseBannerIcon:BRSeason02MonsterTruck",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Shark": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Shark",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02IceCream": {
+ "templateId": "HomebaseBannerIcon:BRSeason02IceCream",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Log": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Log",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Cake": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Cake",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Tank": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Tank",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02GasMask": {
+ "templateId": "HomebaseBannerIcon:BRSeason02GasMask",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Vulture": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Vulture",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason02Sawhorse": {
+ "templateId": "HomebaseBannerIcon:BRSeason02Sawhorse",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Bee": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Bee",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Chick": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Chick",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Chicken": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Chicken",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Crab": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Crab",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03CrescentMoon": {
+ "templateId": "HomebaseBannerIcon:BRSeason03CrescentMoon",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03DeadFish": {
+ "templateId": "HomebaseBannerIcon:BRSeason03DeadFish",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03DinosaurSkull": {
+ "templateId": "HomebaseBannerIcon:BRSeason03DinosaurSkull",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03DogCollar": {
+ "templateId": "HomebaseBannerIcon:BRSeason03DogCollar",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Donut": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Donut",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Eagle": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Eagle",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Egg": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Egg",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Falcon": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Falcon",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Flail": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Flail",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03HappyCloud": {
+ "templateId": "HomebaseBannerIcon:BRSeason03HappyCloud",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Lantern": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Lantern",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Lightning": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Lightning",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Paw": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Paw",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Shark": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Shark",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03ShootingStar": {
+ "templateId": "HomebaseBannerIcon:BRSeason03ShootingStar",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Snake": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Snake",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Sun": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Sun",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03TeddyBear": {
+ "templateId": "HomebaseBannerIcon:BRSeason03TeddyBear",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03TopHat": {
+ "templateId": "HomebaseBannerIcon:BRSeason03TopHat",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Whale": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Whale",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Wing": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Wing",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Wolf": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Wolf",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:BRSeason03Worm": {
+ "templateId": "HomebaseBannerIcon:BRSeason03Worm",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerStorm2018Easy": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Easy",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerStorm2018Med": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Med",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:SurvivalBannerStorm2018Hard": {
+ "templateId": "HomebaseBannerIcon:SurvivalBannerStorm2018Hard",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "survey_data": {},
+ "personal_offers": {},
+ "intro_game_played": true,
+ "import_friends_claimed": {},
+ "mtx_purchase_history": {
+ "refundsUsed": 0,
+ "refundCredits": 3,
+ "purchases": []
+ },
+ "undo_cooldowns": [],
+ "mtx_affiliate_set_time": "",
+ "inventory_limit_bonus": 0,
+ "current_mtx_platform": "EpicPC",
+ "mtx_affiliate": "",
+ "forced_intro_played": "Coconut",
+ "weekly_purchases": {},
+ "daily_purchases": {},
+ "ban_history": {},
+ "in_app_purchases": {},
+ "permissions": [],
+ "undo_timeout": "min",
+ "monthly_purchases": {},
+ "allowed_to_send_gifts": true,
+ "mfa_enabled": true,
+ "allowed_to_receive_gifts": true,
+ "gift_history": {}
+ }
+ },
+ "commandRevision": 0
+}
diff --git a/Config/DefaultProfiles/common_public.json b/Config/DefaultProfiles/common_public.json
new file mode 100644
index 0000000..79789a4
--- /dev/null
+++ b/Config/DefaultProfiles/common_public.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "common_public",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/creative.json b/Config/DefaultProfiles/creative.json
new file mode 100644
index 0000000..0755c11
--- /dev/null
+++ b/Config/DefaultProfiles/creative.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "creative",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/metadata.json b/Config/DefaultProfiles/metadata.json
new file mode 100644
index 0000000..fcb1e79
--- /dev/null
+++ b/Config/DefaultProfiles/metadata.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "metadata",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/outpost0.json b/Config/DefaultProfiles/outpost0.json
new file mode 100644
index 0000000..1a360fd
--- /dev/null
+++ b/Config/DefaultProfiles/outpost0.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "outpost0",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/profile0.json b/Config/DefaultProfiles/profile0.json
new file mode 100644
index 0000000..bb3065a
--- /dev/null
+++ b/Config/DefaultProfiles/profile0.json
@@ -0,0 +1,1714 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "profile0",
+ "version": "no_version",
+ "items": {
+ "Currency:MtxPurchased": {
+ "templateId": "Currency:MtxPurchased",
+ "attributes": {
+ "platform": "Shared"
+ },
+ "quantity": 50000
+ },
+ "HomebaseBannerColor:DefaultColor1": {
+ "templateId": "HomebaseBannerColor:DefaultColor1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor2": {
+ "templateId": "HomebaseBannerColor:DefaultColor2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor3": {
+ "templateId": "HomebaseBannerColor:DefaultColor3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor4": {
+ "templateId": "HomebaseBannerColor:DefaultColor4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor5": {
+ "templateId": "HomebaseBannerColor:DefaultColor5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor6": {
+ "templateId": "HomebaseBannerColor:DefaultColor6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor7": {
+ "templateId": "HomebaseBannerColor:DefaultColor7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor8": {
+ "templateId": "HomebaseBannerColor:DefaultColor8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor9": {
+ "templateId": "HomebaseBannerColor:DefaultColor9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor10": {
+ "templateId": "HomebaseBannerColor:DefaultColor10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor11": {
+ "templateId": "HomebaseBannerColor:DefaultColor11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor12": {
+ "templateId": "HomebaseBannerColor:DefaultColor12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor13": {
+ "templateId": "HomebaseBannerColor:DefaultColor13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor14": {
+ "templateId": "HomebaseBannerColor:DefaultColor14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor15": {
+ "templateId": "HomebaseBannerColor:DefaultColor15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor16": {
+ "templateId": "HomebaseBannerColor:DefaultColor16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor17": {
+ "templateId": "HomebaseBannerColor:DefaultColor17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor18": {
+ "templateId": "HomebaseBannerColor:DefaultColor18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor19": {
+ "templateId": "HomebaseBannerColor:DefaultColor19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor20": {
+ "templateId": "HomebaseBannerColor:DefaultColor20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerColor:DefaultColor21": {
+ "templateId": "HomebaseBannerColor:DefaultColor21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner1": {
+ "templateId": "HomebaseBannerIcon:StandardBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner2": {
+ "templateId": "HomebaseBannerIcon:StandardBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner3": {
+ "templateId": "HomebaseBannerIcon:StandardBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner4": {
+ "templateId": "HomebaseBannerIcon:StandardBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner5": {
+ "templateId": "HomebaseBannerIcon:StandardBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner6": {
+ "templateId": "HomebaseBannerIcon:StandardBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner7": {
+ "templateId": "HomebaseBannerIcon:StandardBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner8": {
+ "templateId": "HomebaseBannerIcon:StandardBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner9": {
+ "templateId": "HomebaseBannerIcon:StandardBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner10": {
+ "templateId": "HomebaseBannerIcon:StandardBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner11": {
+ "templateId": "HomebaseBannerIcon:StandardBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner12": {
+ "templateId": "HomebaseBannerIcon:StandardBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner13": {
+ "templateId": "HomebaseBannerIcon:StandardBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner14": {
+ "templateId": "HomebaseBannerIcon:StandardBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner15": {
+ "templateId": "HomebaseBannerIcon:StandardBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner16": {
+ "templateId": "HomebaseBannerIcon:StandardBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner17": {
+ "templateId": "HomebaseBannerIcon:StandardBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner18": {
+ "templateId": "HomebaseBannerIcon:StandardBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner19": {
+ "templateId": "HomebaseBannerIcon:StandardBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner20": {
+ "templateId": "HomebaseBannerIcon:StandardBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner21": {
+ "templateId": "HomebaseBannerIcon:StandardBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner22": {
+ "templateId": "HomebaseBannerIcon:StandardBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner23": {
+ "templateId": "HomebaseBannerIcon:StandardBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner24": {
+ "templateId": "HomebaseBannerIcon:StandardBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner25": {
+ "templateId": "HomebaseBannerIcon:StandardBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner26": {
+ "templateId": "HomebaseBannerIcon:StandardBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner27": {
+ "templateId": "HomebaseBannerIcon:StandardBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner28": {
+ "templateId": "HomebaseBannerIcon:StandardBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner29": {
+ "templateId": "HomebaseBannerIcon:StandardBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner30": {
+ "templateId": "HomebaseBannerIcon:StandardBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:StandardBanner31": {
+ "templateId": "HomebaseBannerIcon:StandardBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier1Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier1Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "Worker:Worker_Halloween_Husk_C_T02": {
+ "templateId": "Worker:Worker_Halloween_Husk_C_T02",
+ "attributes": {
+ "gender": 0,
+ "level": 50,
+ "squad_slot_idx": "i ",
+ "item_seen": true,
+ "portrait": "/Game/UI/Icons/Icon-Worker/IconDefinitions/IconDef-WorkerPortrait-Husk.IconDef-WorkerPortrait-Husk",
+ "max_level_bonus": 0,
+ "squad_id": "",
+ "personality": "Homebase.Worker.Personality.IsCurious",
+ "xp": 0,
+ "slotted_building_id": "",
+ "building_slot_used": -1,
+ "favorite": false,
+ "set_bonus": "Homebase.Worker.SetBonus.IsTrapDurabilityHigh"
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier2Banner6": {
+ "templateId": "HomebaseBannerIcon:FounderTier2Banner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier3Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier3Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier4Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier4Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner1": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner2": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner3": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner4": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:FounderTier5Banner5": {
+ "templateId": "HomebaseBannerIcon:FounderTier5Banner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:NewsletterBanner": {
+ "templateId": "HomebaseBannerIcon:NewsletterBanner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner1": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner2": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner3": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner4": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner5": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner6": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner7": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner8": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner9": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner10": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner11": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner12": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner13": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner14": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner15": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner16": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner17": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner18": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner19": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner20": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner21": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner22": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner23": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner24": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner25": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner26": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner27": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner28": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner29": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner30": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner31": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner32": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner32",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner33": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner33",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner34": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner34",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner35": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner35",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner36": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner36",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner37": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner37",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner38": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner38",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner39": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner39",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner40": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner40",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner41": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner41",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner42": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner42",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner43": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner43",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:InfluencerBanner44": {
+ "templateId": "HomebaseBannerIcon:InfluencerBanner44",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT1Banner": {
+ "templateId": "HomebaseBannerIcon:OT1Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT2Banner": {
+ "templateId": "HomebaseBannerIcon:OT2Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT3Banner": {
+ "templateId": "HomebaseBannerIcon:OT3Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT4Banner": {
+ "templateId": "HomebaseBannerIcon:OT4Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT5Banner": {
+ "templateId": "HomebaseBannerIcon:OT5Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT6Banner": {
+ "templateId": "HomebaseBannerIcon:OT6Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT7Banner": {
+ "templateId": "HomebaseBannerIcon:OT7Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT8Banner": {
+ "templateId": "HomebaseBannerIcon:OT8Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT9Banner": {
+ "templateId": "HomebaseBannerIcon:OT9Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT10Banner": {
+ "templateId": "HomebaseBannerIcon:OT10Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OT11Banner": {
+ "templateId": "HomebaseBannerIcon:OT11Banner",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner1": {
+ "templateId": "HomebaseBannerIcon:OtherBanner1",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner2": {
+ "templateId": "HomebaseBannerIcon:OtherBanner2",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner3": {
+ "templateId": "HomebaseBannerIcon:OtherBanner3",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner4": {
+ "templateId": "HomebaseBannerIcon:OtherBanner4",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner5": {
+ "templateId": "HomebaseBannerIcon:OtherBanner5",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner6": {
+ "templateId": "HomebaseBannerIcon:OtherBanner6",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner7": {
+ "templateId": "HomebaseBannerIcon:OtherBanner7",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner8": {
+ "templateId": "HomebaseBannerIcon:OtherBanner8",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner9": {
+ "templateId": "HomebaseBannerIcon:OtherBanner9",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner10": {
+ "templateId": "HomebaseBannerIcon:OtherBanner10",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner11": {
+ "templateId": "HomebaseBannerIcon:OtherBanner11",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner12": {
+ "templateId": "HomebaseBannerIcon:OtherBanner12",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner13": {
+ "templateId": "HomebaseBannerIcon:OtherBanner13",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner14": {
+ "templateId": "HomebaseBannerIcon:OtherBanner14",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner15": {
+ "templateId": "HomebaseBannerIcon:OtherBanner15",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner16": {
+ "templateId": "HomebaseBannerIcon:OtherBanner16",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner17": {
+ "templateId": "HomebaseBannerIcon:OtherBanner17",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner18": {
+ "templateId": "HomebaseBannerIcon:OtherBanner18",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner19": {
+ "templateId": "HomebaseBannerIcon:OtherBanner19",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner20": {
+ "templateId": "HomebaseBannerIcon:OtherBanner20",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner21": {
+ "templateId": "HomebaseBannerIcon:OtherBanner21",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner22": {
+ "templateId": "HomebaseBannerIcon:OtherBanner22",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner23": {
+ "templateId": "HomebaseBannerIcon:OtherBanner23",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner24": {
+ "templateId": "HomebaseBannerIcon:OtherBanner24",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner25": {
+ "templateId": "HomebaseBannerIcon:OtherBanner25",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner26": {
+ "templateId": "HomebaseBannerIcon:OtherBanner26",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner27": {
+ "templateId": "HomebaseBannerIcon:OtherBanner27",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner28": {
+ "templateId": "HomebaseBannerIcon:OtherBanner28",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner29": {
+ "templateId": "HomebaseBannerIcon:OtherBanner29",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner30": {
+ "templateId": "HomebaseBannerIcon:OtherBanner30",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner31": {
+ "templateId": "HomebaseBannerIcon:OtherBanner31",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner32": {
+ "templateId": "HomebaseBannerIcon:OtherBanner32",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner33": {
+ "templateId": "HomebaseBannerIcon:OtherBanner33",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner34": {
+ "templateId": "HomebaseBannerIcon:OtherBanner34",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner35": {
+ "templateId": "HomebaseBannerIcon:OtherBanner35",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner36": {
+ "templateId": "HomebaseBannerIcon:OtherBanner36",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner37": {
+ "templateId": "HomebaseBannerIcon:OtherBanner37",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner38": {
+ "templateId": "HomebaseBannerIcon:OtherBanner38",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner39": {
+ "templateId": "HomebaseBannerIcon:OtherBanner39",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner40": {
+ "templateId": "HomebaseBannerIcon:OtherBanner40",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner41": {
+ "templateId": "HomebaseBannerIcon:OtherBanner41",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner42": {
+ "templateId": "HomebaseBannerIcon:OtherBanner42",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner43": {
+ "templateId": "HomebaseBannerIcon:OtherBanner43",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner44": {
+ "templateId": "HomebaseBannerIcon:OtherBanner44",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner45": {
+ "templateId": "HomebaseBannerIcon:OtherBanner45",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner46": {
+ "templateId": "HomebaseBannerIcon:OtherBanner46",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner47": {
+ "templateId": "HomebaseBannerIcon:OtherBanner47",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner48": {
+ "templateId": "HomebaseBannerIcon:OtherBanner48",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner49": {
+ "templateId": "HomebaseBannerIcon:OtherBanner49",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner50": {
+ "templateId": "HomebaseBannerIcon:OtherBanner50",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner51": {
+ "templateId": "HomebaseBannerIcon:OtherBanner51",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner52": {
+ "templateId": "HomebaseBannerIcon:OtherBanner52",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner53": {
+ "templateId": "HomebaseBannerIcon:OtherBanner53",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner54": {
+ "templateId": "HomebaseBannerIcon:OtherBanner54",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner55": {
+ "templateId": "HomebaseBannerIcon:OtherBanner55",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner56": {
+ "templateId": "HomebaseBannerIcon:OtherBanner56",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner57": {
+ "templateId": "HomebaseBannerIcon:OtherBanner57",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner58": {
+ "templateId": "HomebaseBannerIcon:OtherBanner58",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner59": {
+ "templateId": "HomebaseBannerIcon:OtherBanner59",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner60": {
+ "templateId": "HomebaseBannerIcon:OtherBanner60",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner61": {
+ "templateId": "HomebaseBannerIcon:OtherBanner61",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner62": {
+ "templateId": "HomebaseBannerIcon:OtherBanner62",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner63": {
+ "templateId": "HomebaseBannerIcon:OtherBanner63",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner64": {
+ "templateId": "HomebaseBannerIcon:OtherBanner64",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner65": {
+ "templateId": "HomebaseBannerIcon:OtherBanner65",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner66": {
+ "templateId": "HomebaseBannerIcon:OtherBanner66",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner67": {
+ "templateId": "HomebaseBannerIcon:OtherBanner67",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner68": {
+ "templateId": "HomebaseBannerIcon:OtherBanner68",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner69": {
+ "templateId": "HomebaseBannerIcon:OtherBanner69",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner70": {
+ "templateId": "HomebaseBannerIcon:OtherBanner70",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner71": {
+ "templateId": "HomebaseBannerIcon:OtherBanner71",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner72": {
+ "templateId": "HomebaseBannerIcon:OtherBanner72",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner73": {
+ "templateId": "HomebaseBannerIcon:OtherBanner73",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner74": {
+ "templateId": "HomebaseBannerIcon:OtherBanner74",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner75": {
+ "templateId": "HomebaseBannerIcon:OtherBanner75",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner76": {
+ "templateId": "HomebaseBannerIcon:OtherBanner76",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner77": {
+ "templateId": "HomebaseBannerIcon:OtherBanner77",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ },
+ "HomebaseBannerIcon:OtherBanner78": {
+ "templateId": "HomebaseBannerIcon:OtherBanner78",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "templateId": "profile_v2",
+ "attributes": {
+ "node_costs": {
+ "t1_main_nodepage_layer1": {
+ "Token:homebasepoints": 5
+ }
+ },
+ "mission_alert_redemption_record": {
+ "lastClaimTimesMap": {
+ "General": {
+ "missionAlertGUIDs": [
+ "",
+ "",
+ ""
+ ],
+ "lastClaimedTimes": [
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z"
+ ]
+ },
+ "StormLow": {
+ "missionAlertGUIDs": [
+ "",
+ "",
+ "",
+ ""
+ ],
+ "lastClaimedTimes": [
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z"
+ ]
+ },
+ "Halloween": {
+ "missionAlertGUIDs": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "lastClaimedTimes": [
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z"
+ ]
+ },
+ "Horde": {
+ "missionAlertGUIDs": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "lastClaimedTimes": [
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z"
+ ]
+ },
+ "Storm": {
+ "missionAlertGUIDs": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "lastClaimedTimes": [
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z",
+ "2016-11-20T21:27:32.998Z"
+ ]
+ }
+ },
+ "oldestClaimIndexForCategory": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ]
+ },
+ "twitch": {},
+ "client_settings": {
+ "pinnedQuestInstances": []
+ },
+ "level": 10,
+ "named_counters": {
+ "SubGameSelectCount_Campaign": {
+ "current_count": 0,
+ "last_incremented_time": ""
+ },
+ "SubGameSelectCount_Athena": {
+ "current_count": 0,
+ "last_incremented_time": ""
+ }
+ },
+ "default_hero_squad_id": "",
+ "collection_book": {
+ "pages": [],
+ "maxBookXpLevelAchieved": 0
+ },
+ "quest_manager": {
+ "dailyLoginInterval": "2017-12-25T01:44:10.602Z",
+ "dailyQuestRerolls": 1
+ },
+ "bans": {},
+ "gameplay_stats": [
+ {
+ "statName": "zonescompleted",
+ "statValue": 1
+ }
+ ],
+ "inventory_limit_bonus": 100000,
+ "current_mtx_platform": "Epic",
+ "weekly_purchases": {},
+ "daily_purchases": {
+ "lastInterval": "2017-08-29T00:00:00.000Z",
+ "purchaseList": {
+ "1F6B613D4B7BAD47D8A93CAEED2C4996": 1
+ }
+ },
+ "mode_loadouts": [
+ {
+ "loadoutName": "Default",
+ "selectedGadgets": [
+ "",
+ ""
+ ]
+ }
+ ],
+ "in_app_purchases": {
+ "receipts": [
+ "EPIC:0aba47abf15143f18370dbc70b910b14",
+ "EPIC:ee397e98af0042159fec830aea1224d5"
+ ],
+ "fulfillmentCounts": {
+ "0A6CB5B346A149F31A4C3FBDF4BBC198": 3,
+ "DEF6D31D416227E7D73F65B27288ED6F": 1,
+ "82ADCC874CFC2D47927208BAE871CF2B": 1,
+ "F0033207441AC38CD704718B91B2C8EF": 1
+ }
+ },
+ "daily_rewards": {
+ "nextDefaultReward": 0,
+ "totalDaysLoggedIn": 0,
+ "lastClaimDate": "0001-01-01T00:00:00.000Z",
+ "additionalSchedules": {
+ "founderspackdailyrewardtoken": {
+ "rewardsClaimed": 0,
+ "claimedToday": true
+ }
+ }
+ },
+ "monthly_purchases": {},
+ "xp": 0,
+ "homebase": {
+ "townName": "",
+ "bannerIconId": "OT11Banner",
+ "bannerColorId": "DefaultColor15",
+ "flagPattern": -1,
+ "flagColor": -1
+ },
+ "packs_granted": 13
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/DefaultProfiles/theater0.json b/Config/DefaultProfiles/theater0.json
new file mode 100644
index 0000000..d12e2f8
--- /dev/null
+++ b/Config/DefaultProfiles/theater0.json
@@ -0,0 +1,24 @@
+{
+ "created": "",
+ "updated": "",
+ "rvn": 0,
+ "wipeNumber": 1,
+ "accountId": "",
+ "profileId": "theater0",
+ "version": "no_version",
+ "items": {
+ "Token:reloadbackend": {
+ "templateId": "Token:reloadbackend",
+ "attributes": {
+ "item_seen": true
+ },
+ "quantity": 1
+ }
+ },
+ "stats": {
+ "attributes": {
+ "inventory_limit_bonus": 0
+ }
+ },
+ "commandRevision": 0
+}
\ No newline at end of file
diff --git a/Config/catalog_config.json b/Config/catalog_config.json
new file mode 100644
index 0000000..431a522
--- /dev/null
+++ b/Config/catalog_config.json
@@ -0,0 +1,35 @@
+{
+ "//": "BR Item Shop Config",
+ "daily1": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "daily2": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "daily3": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "daily4": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "daily5": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "daily6": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "featured1": {
+ "itemGrants": [""],
+ "price": 0
+ },
+ "featured2": {
+ "itemGrants": [""],
+ "price": 0
+ }
+}
\ No newline at end of file
diff --git a/Config/config.json b/Config/config.json
new file mode 100644
index 0000000..769206b
--- /dev/null
+++ b/Config/config.json
@@ -0,0 +1,24 @@
+{
+ "moderators": ["discordId"],
+ "discord": {
+ "bot_token": ""
+ },
+ "mongodb": {
+ "database": "mongodb://127.0.0.1/Reload"
+ },
+ "chat": {
+ "//": "Disabling global chat can help the server to perform faster as less resources are used.",
+ "EnableGlobalChat": false
+ },
+
+ "port": 3551,
+ "matchmakerIP": "127.0.0.1:80",
+ "gameServerIP": "127.0.0.1:7777",
+
+ "//": "For 'BattlePassSeason' enter only the number of your season (from 2 to 10)",
+ "EnableBattlepass": false,
+ "BattlePassSeason": 2,
+
+ "//": "If bCompletedSeasonalQuests is set to 'true' it will set all quests except daily quests as completed",
+ "bCompletedSeasonalQuests": false
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/addall.js b/DiscordBot/commands/Admin/addall.js
new file mode 100644
index 0000000..6d12858
--- /dev/null
+++ b/DiscordBot/commands/Admin/addall.js
@@ -0,0 +1,60 @@
+const path = require("path");
+const fs = require("fs");
+const Users = require('../../../model/user.js');
+const Profiles = require('../../../model/profiles.js');
+const destr = require("destr");
+const config = require('../../../Config/config.json')
+
+module.exports = {
+ commandInfo: {
+ name: "addall",
+ description: "Allows you to give a user all cosmetics. Note: This will reset all your lockers to default",
+ options: [
+ {
+ name: "user",
+ description: "The user you want to give the cosmetic to",
+ required: true,
+ type: 6
+ }
+ ]
+ },
+ execute: async (interaction) => {
+
+ if (!config.moderators.includes(interaction.user.id)) {
+ console.log("User does not have moderator permissions.");
+ return interaction.reply({ content: "You do not have moderator permissions.", ephemeral: true });
+ }
+
+ await interaction.deferReply({ ephemeral: true });
+
+ const selectedUser = interaction.options.getUser('user');
+ const selectedUserId = selectedUser?.id;
+ try {
+ const targetUser = await Users.findOne({ discordId: selectedUserId });
+ if (!targetUser) {
+ return interaction.editReply({ content: "That user does not own an account" });
+ }
+
+ const profile = await Profiles.findOne({ accountId: targetUser.accountId });
+ if (!profile) {
+ return interaction.editReply({ content: "That user does not have a profile" });
+ }
+
+ const allItems = destr(fs.readFileSync(path.join(__dirname, "../../../Config/DefaultProfiles/allathena.json"), 'utf8'));
+ if (!allItems) {
+ return interaction.editReply({ content: "Failed to parse allathena.json" });
+ }
+
+ Profiles.findOneAndUpdate({ accountId: targetUser.accountId }, { $set: { "profiles.athena.items": allItems.items } }, { new: true }, (err, doc) => {
+ if (err) {
+ return interaction.editReply({ content: "There was an error updating the profile." });
+ }
+ });
+
+ await interaction.editReply({ content: "Successfully added all skins to the selected account" });
+ } catch (error) {
+ console.error("An error occurred:", error);
+ interaction.editReply({ content: "An error occurred while processing the request." });
+ }
+ }
+};
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/addvbucks.js b/DiscordBot/commands/Admin/addvbucks.js
new file mode 100644
index 0000000..bcbc836
--- /dev/null
+++ b/DiscordBot/commands/Admin/addvbucks.js
@@ -0,0 +1,43 @@
+const Users = require('../../../model/user');
+const Profiles = require('../../../model/profiles');
+const config = require('../../../Config/config.json')
+
+module.exports = {
+ commandInfo: {
+ name: "addvbucks",
+ description: "Lets you change a users amount of vbucks",
+ options: [
+ {
+ name: "user",
+ description: "The user you want to change the vbucks of",
+ required: true,
+ type: 6
+ },
+ {
+ name: "vbucks",
+ description: "The amount of vbucks you want to give (Can be a negative number to take vbucks)",
+ required: true,
+ type: 4
+ }
+ ]
+ },
+ execute: async (interaction) => {
+
+ if (!config.moderators.includes(interaction.user.id)) {
+ console.log("User does not have moderator permissions.");
+ return interaction.reply({ content: "You do not have moderator permissions.", ephemeral: true });
+ }
+
+ const selectedUser = interaction.options.getUser('user');
+ const selectedUserId = selectedUser?.id;
+ const user = await Users.findOne({ discordId: selectedUserId });
+ if (!user)
+ return interaction.reply({ content: "That user does not own an account", ephemeral: true });
+ const vbucks = parseInt(interaction.options.getInteger('vbucks'));
+ const profile = await Profiles.findOneAndUpdate({ accountId: user.accountId }, { $inc: { 'profiles.common_core.items.Currency:MtxPurchased.quantity': vbucks } });
+ if (!profile)
+ return interaction.reply({ content: "That user does not own an account", ephemeral: true });
+
+ await interaction.reply({ content: "Successfully changed the amount of vbucks for <@" + selectedUserId + "> by **" + vbucks + "**", ephemeral: true });
+}
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/ban.js b/DiscordBot/commands/Admin/ban.js
new file mode 100644
index 0000000..95b90b2
--- /dev/null
+++ b/DiscordBot/commands/Admin/ban.js
@@ -0,0 +1,57 @@
+const User = require("../../../model/user.js");
+const functions = require("../../../structs/functions.js");
+const fs = require("fs");
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+module.exports = {
+ commandInfo: {
+ name: "ban",
+ description: "Ban a user from the backend by their username.",
+ options: [
+ {
+ name: "username",
+ description: "Target username.",
+ required: true,
+ type: 3 // string
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const userRoles = interaction.member.roles.cache.map(role => role.id);
+ const hasModeratorRole = userRoles.some(roleId => config.realmoderatorsrole && config.realmoderatorsrole.includes(roleId));
+
+ if (!config.moderators.includes(interaction.user.id) && !hasModeratorRole) {
+ return interaction.editReply({ content: "You do not have moderator permissions.", ephemeral: true });
+ }
+
+ const { options } = interaction;
+ const targetUser = await User.findOne({ username_lower: (options.get("username").value).toLowerCase() });
+
+ if (!targetUser) return interaction.editReply({ content: "The account username you entered does not exist.", ephemeral: true });
+ else if (targetUser.banned) return interaction.editReply({ content: "This account is already banned.", ephemeral: true });
+
+ await targetUser.updateOne({ $set: { banned: true } });
+
+ let refreshToken = global.refreshTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (refreshToken != -1) global.refreshTokens.splice(refreshToken, 1);
+
+ let accessToken = global.accessTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (accessToken != -1) {
+ global.accessTokens.splice(accessToken, 1);
+
+ let xmppClient = global.Clients.find(client => client.accountId == targetUser.accountId);
+ if (xmppClient) xmppClient.client.close();
+ }
+
+ if (accessToken != -1 || refreshToken != -1) functions.UpdateTokens();
+
+ interaction.editReply({ content: `Successfully banned ${targetUser.username}`, ephemeral: true });
+
+ const logChannel = interaction.client.channels.cache.get(config.logChannelBanId);
+ if (logChannel) {
+ logChannel.send(`<@${interaction.user.id}> / ${interaction.user.tag} has banned **${targetUser.username}**`);
+ }
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/delete.js b/DiscordBot/commands/Admin/delete.js
new file mode 100644
index 0000000..554f1fa
--- /dev/null
+++ b/DiscordBot/commands/Admin/delete.js
@@ -0,0 +1,50 @@
+const { MessageEmbed, PermissionFlagsBits, SlashCommandBuilder } = require("discord.js");
+const Users = require('../../../model/user.js');
+const Profiles = require('../../../model/profiles.js');
+const config = require('../../../Config/config.json')
+
+module.exports = {
+ commandInfo: {
+ name: "delete",
+ description: "Deletes a users account",
+ options: [
+ {
+ name: "username",
+ description: "Target username.",
+ required: true,
+ type: 6
+ }
+ ]
+ },
+ execute: async (interaction) => {
+
+ if (!config.moderators.includes(interaction.user.id)) {
+ console.log("User does not have moderator permissions.");
+ return interaction.reply({ content: "You do not have moderator permissions.", ephemeral: true });
+ }
+
+ const discordId = interaction.options.getUser('username').id;
+ const user = interaction.options.getUser('username');
+ const deleteAccount = await Users.findOne({ discordId: discordId })
+
+ if (deleteAccount == null) {
+ await interaction.reply({ content: "The selected user does not have **an account**", ephemeral: true });
+ return;
+ }
+
+ await Users.deleteOne({ discordId: discordId })
+ await Profiles.deleteOne({ discordId: discordId })
+
+ const embed = new MessageEmbed()
+ .setTitle("Account deleted")
+ .setDescription("The account has been **deleted**")
+ .setColor("GREEN")
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+ .setTimestamp();
+ await interaction.reply({ embeds: [embed], ephemeral: true });
+ await interaction.options.getUser('username').send({ content: "Your account has been deleted by an **administrator**" });
+}
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/kick.js b/DiscordBot/commands/Admin/kick.js
new file mode 100644
index 0000000..197e995
--- /dev/null
+++ b/DiscordBot/commands/Admin/kick.js
@@ -0,0 +1,58 @@
+const User = require("../../../model/user.js");
+const functions = require("../../../structs/functions.js");
+const fs = require("fs");
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+module.exports = {
+ commandInfo: {
+ name: "kick",
+ description: "Kick someone out of their current session by their username.",
+ options: [
+ {
+ name: "username",
+ description: "Target username.",
+ required: true,
+ type: 3 // string
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const userRoles = interaction.member.roles.cache.map(role => role.id);
+ const hasModeratorRole = userRoles.includes(config.realmoderatorsrole);
+
+ if (!hasModeratorRole) {
+ return interaction.editReply({ content: "You must have the moderator role to execute this command.", ephemeral: true });
+ }
+
+ const { options } = interaction;
+ const targetUser = await User.findOne({ username_lower: (options.get("username").value).toLowerCase() });
+
+ if (!targetUser) return interaction.editReply({ content: "The account username you entered does not exist.", ephemeral: true });
+
+ let refreshToken = global.refreshTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (refreshToken != -1) global.refreshTokens.splice(refreshToken, 1);
+
+ let accessToken = global.accessTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (accessToken != -1) {
+ global.accessTokens.splice(accessToken, 1);
+
+ let xmppClient = global.Clients.find(client => client.accountId == targetUser.accountId);
+ if (xmppClient) xmppClient.client.close();
+ }
+
+ if (accessToken != -1 || refreshToken != -1) {
+ functions.UpdateTokens();
+
+ const logChannel = interaction.client.channels.cache.get(config.logChannelKickId);
+ if (logChannel) {
+ logChannel.send(`<@${interaction.user.id}> / ${interaction.user.tag} has kicked **${targetUser.username}**`);
+ }
+
+ return interaction.editReply({ content: `Successfully kicked ${targetUser.username}`, ephemeral: true });
+ }
+
+ interaction.editReply({ content: `There are no current active sessions by ${targetUser.username}`, ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/removevbucks.js b/DiscordBot/commands/Admin/removevbucks.js
new file mode 100644
index 0000000..8171f75
--- /dev/null
+++ b/DiscordBot/commands/Admin/removevbucks.js
@@ -0,0 +1,43 @@
+const Users = require('../../../model/user');
+const Profiles = require('../../../model/profiles');
+const config = require('../../../Config/config.json')
+
+module.exports = {
+ commandInfo: {
+ name: "removevbucks",
+ description: "Lets you change a users amount of vbucks",
+ options: [
+ {
+ name: "user",
+ description: "The user you want to change the vbucks of",
+ required: true,
+ type: 6
+ },
+ {
+ name: "vbucks",
+ description: "The amount of vbucks you want to remove (Can be a negative number to take vbucks)",
+ required: true,
+ type: 4
+ }
+ ]
+ },
+ execute: async (interaction) => {
+
+ if (!config.moderators.includes(interaction.user.id)) {
+ console.log("User does not have moderator permissions.");
+ return interaction.reply({ content: "You do not have moderator permissions.", ephemeral: true });
+ }
+
+ const selectedUser = interaction.options.getUser('user');
+ const selectedUserId = selectedUser?.id;
+ const user = await Users.findOne({ discordId: selectedUserId });
+ if (!user)
+ return interaction.reply({ content: "That user does not own an account", ephemeral: true });
+ const vbucks = parseInt(interaction.options.getInteger('vbucks'));
+ const profile = await Profiles.findOneAndUpdate({ accountId: user.accountId }, { $inc: { 'profiles.common_core.items.Currency:MtxPurchased.quantity': - vbucks } });
+ if (!profile)
+ return interaction.reply({ content: "That user does not own an account", ephemeral: true });
+
+ await interaction.reply({ content: "have been successfully removed **" + vbucks + "** vbucks for <@" + selectedUserId + ">", ephemeral: true });
+}
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/Admin/unban.js b/DiscordBot/commands/Admin/unban.js
new file mode 100644
index 0000000..f76e510
--- /dev/null
+++ b/DiscordBot/commands/Admin/unban.js
@@ -0,0 +1,38 @@
+const User = require("../../../model/user.js");
+const fs = require("fs");
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+module.exports = {
+ commandInfo: {
+ name: "unban",
+ description: "Unban a user from the backend by their username.",
+ options: [
+ {
+ name: "username",
+ description: "Target username.",
+ required: true,
+ type: 3 // string
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ if (!config.moderators.includes(interaction.user.id)) return interaction.editReply({ content: "You do not have moderator permissions.", ephemeral: true });
+
+ const { options } = interaction;
+ const targetUser = await User.findOne({ username_lower: (options.get("username").value).toLowerCase() });
+
+ if (!targetUser) return interaction.editReply({ content: "The account username you entered does not exist.", ephemeral: true });
+ else if (!targetUser.banned) return interaction.editReply({ content: "This account is already unbanned.", ephemeral: true });
+
+ await targetUser.updateOne({ $set: { banned: false } });
+
+ interaction.editReply({ content: `Successfully unbanned ${targetUser.username}`, ephemeral: true });
+
+ const logChannel = interaction.client.channels.cache.get(config.logChannelUnbanId);
+ if (logChannel) {
+ logChannel.send(`<@${interaction.user.id}> / ${interaction.user.tag} has unbanned **${targetUser.username}**`);
+ }
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/change-email.js b/DiscordBot/commands/User/change-email.js
new file mode 100644
index 0000000..34a9472
--- /dev/null
+++ b/DiscordBot/commands/User/change-email.js
@@ -0,0 +1,45 @@
+const { MessageEmbed } = require("discord.js");
+const Users = require('../../../model/user.js');
+
+module.exports = {
+ commandInfo: {
+ name: "change-email",
+ description: "Allows you to change your email",
+ options: [
+ {
+ name: "email",
+ description: "Your desired email.",
+ required: true,
+ type: 3
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ const user = await Users.findOne({ discordId: interaction.user.id });
+ if (!user)
+ return interaction.reply({ content: "You are not registered!", ephemeral: true });
+ const plainEmail = interaction.options.getString('email');
+
+ const emailFilter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
+ if (!emailFilter.test(plainEmail)) {
+ return interaction.editReply({ content: "You did not provide a valid email address!", ephemeral: true });
+ }
+
+ const existingUser = await Users.findOne({ email: plainEmail });
+ if (existingUser) {
+ return interaction.reply({ content: "Email is already in use, please choose another one.", ephemeral: true });
+ }
+
+ await user.updateOne({ $set: { email: plainEmail } });
+ const embed = new MessageEmbed()
+ .setTitle("Email changed")
+ .setDescription("Your account email has been changed")
+ .setColor("GREEN")
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&",
+ })
+ .setTimestamp();
+ await interaction.reply({ embeds: [embed], ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/change-password.js b/DiscordBot/commands/User/change-password.js
new file mode 100644
index 0000000..b133c49
--- /dev/null
+++ b/DiscordBot/commands/User/change-password.js
@@ -0,0 +1,36 @@
+const User = require("../../../model/user.js");
+const bcrypt = require("bcrypt");
+
+module.exports = {
+ commandInfo: {
+ name: "change-password",
+ description: "Change your password.",
+ options: [
+ {
+ name: "password",
+ description: "Your new password.",
+ required: true,
+ type: 3 // string
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const user = await User.findOne({ discordId: interaction.user.id });
+ if (!user) return interaction.editReply({ content: "You do not have a registered account!", ephemeral: true });
+
+ const { options } = interaction;
+
+ let plainPassword = options.get("password").value;
+
+ if (plainPassword.length >= 128) return interaction.editReply({ content: "Your password must be less than 128 characters long.", ephemeral: true });
+ if (plainPassword.length < 8) return interaction.editReply({ content: "Your password must be atleast 8 characters long.", ephemeral: true });
+
+ let hashedPassword = await bcrypt.hash(plainPassword, 10);
+
+ await user.updateOne({ $set: { password: hashedPassword } });
+
+ interaction.editReply({ content: `Successfully changed your password.`, ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/change-username.js b/DiscordBot/commands/User/change-username.js
new file mode 100644
index 0000000..e4b5987
--- /dev/null
+++ b/DiscordBot/commands/User/change-username.js
@@ -0,0 +1,61 @@
+const { MessageEmbed } = require("discord.js");
+const User = require("../../../model/user.js");
+const Badwords = require("bad-words");
+
+const badwords = new Badwords();
+
+module.exports = {
+ commandInfo: {
+ name: "change-username",
+ description: "Change your username.",
+ options: [
+ {
+ name: "username",
+ description: "Your new username.",
+ required: true,
+ type: 3 // string
+ }
+ ]
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const user = await User.findOne({ discordId: interaction.user.id });
+ if (!user)
+ return interaction.editReply({ content: "You are not registered!", ephemeral: true });
+
+ const validUsernameRegex = /^[a-zA-Z0-9]+$/;
+ const username = interaction.options.getString('username');
+ if (!validUsernameRegex.test(username) || badwords.isProfane(username)) {
+ return interaction.editReply({ content: "Invalid username. Username must contain only letters and numbers, and no spaces or special characters. Additionally, it should not contain inappropriate language." });
+ }
+
+ const plainUsername = interaction.options.getString('username');
+
+ if (plainUsername.length < 3) {
+ return interaction.editReply({ content: "Invalid username. Username must have at least 3 characters." });
+ }
+
+ if (plainUsername.length > 20) {
+ return interaction.editReply({ content: "Invalid username. Username must be 20 characters or less" });
+ }
+
+ const existingUser = await User.findOne({ username: plainUsername });
+ if (existingUser) {
+ return interaction.editReply({ content: "Username already exists. Please choose a different one." });
+ }
+
+ await user.updateOne({ $set: { username: username, username_lower: username.toLowerCase() } });
+
+ const embed = new MessageEmbed()
+ .setTitle("Username changed")
+ .setDescription(`Your account username has been changed to **${username}**`)
+ .setColor("GREEN")
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&",
+ })
+ .setTimestamp();
+ await interaction.editReply({ embeds: [embed], ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/create.js b/DiscordBot/commands/User/create.js
new file mode 100644
index 0000000..537dcb4
--- /dev/null
+++ b/DiscordBot/commands/User/create.js
@@ -0,0 +1,65 @@
+const { MessageEmbed } = require("discord.js");
+const functions = require("../../../structs/functions.js");
+
+module.exports = {
+ commandInfo: {
+ name: "create",
+ description: "Creates an account on Lawin.",
+ options: [
+ {
+ name: "email",
+ description: "Your email.",
+ required: true,
+ type: 3
+ },
+ {
+ name: "username",
+ description: "Your username.",
+ required: true,
+ type: 3
+ },
+ {
+ name: "password",
+ description: "Your password.",
+ required: true,
+ type: 3
+ }
+ ],
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const { options } = interaction;
+
+ const discordId = interaction.user.id;
+ const email = options.get("email").value;
+ const username = options.get("username").value;
+ const password = options.get("password").value;
+
+ await functions.registerUser(discordId, username, email, password).then(resp => {
+ let embed = new MessageEmbed()
+ .setColor(resp.status >= 400 ? "#ff0000" : "#56ff00")
+ .setThumbnail(interaction.user.avatarURL({ format: 'png', dynamic: true, size: 256 }))
+ .addFields({
+ name: "Message",
+ value: "Successfully created an account.",
+ }, {
+ name: "Username",
+ value: username,
+ }, {
+ name: "Discord Tag",
+ value: interaction.user.tag,
+ })
+ .setTimestamp()
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+
+ if (resp.status >= 400) return interaction.editReply({ embeds: [embed], ephemeral: true });
+
+ (interaction.channel ? interaction.channel : interaction.user).send({ embeds: [embed] });
+ interaction.editReply({ content: "You successfully created an account!", ephemeral: true });
+ });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/details.js b/DiscordBot/commands/User/details.js
new file mode 100644
index 0000000..dc65fe9
--- /dev/null
+++ b/DiscordBot/commands/User/details.js
@@ -0,0 +1,37 @@
+const { MessageEmbed } = require("discord.js");
+const User = require("../../../model/user.js");
+
+module.exports = {
+ commandInfo: {
+ name: "details",
+ description: "Retrieves your account info."
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const user = await User.findOne({ discordId: interaction.user.id }).lean();
+ if (!user) return interaction.editReply({ content: "You do not have a registered account!", ephemeral: true });
+
+ //let onlineStatus = global.Clients.some(i => i.accountId == user.accountId);
+
+ let embed = new MessageEmbed()
+ .setColor("GREEN")
+ .setDescription("These are your account details")
+ //.setAuthor({ name: interaction.user.tag, iconURL: interaction.user.avatarURL() })
+ .setFields(
+ //{ name: "Created", value: `${new Date(user.created)}`.substring(0, 15) },
+ { name: 'Username', value: user.username },
+ { name: 'Email', value: `${user.email}` },
+ //{ name: "Online", value: `${onlineStatus ? "Yes" : "No"}` },
+ { name: "Banned", value: `${user.banned ? "Yes" : "No"}` },
+ { name: "Account ID", value: user.accountId })
+ .setTimestamp()
+ .setThumbnail(interaction.user.avatarURL())
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+
+ interaction.editReply({ embeds: [embed], ephemeral: true });
+ }
+}
diff --git a/DiscordBot/commands/User/exchange-code.js b/DiscordBot/commands/User/exchange-code.js
new file mode 100644
index 0000000..5e60c9b
--- /dev/null
+++ b/DiscordBot/commands/User/exchange-code.js
@@ -0,0 +1,44 @@
+const { MessageEmbed } = require("discord.js");
+const User = require("../../../model/user.js");
+const functions = require("../../../structs/functions.js");
+
+module.exports = {
+ commandInfo: {
+ name: "exchange-code",
+ description: "Generates an exchange code for login. (One time use and expires after 5 mins if unused)."
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const user = await User.findOne({ discordId: interaction.user.id }).lean();
+ if (!user) return interaction.editReply({ content: "You do not have a registered account!", ephemeral: true });
+
+ let exchange_code = functions.MakeID().replace(/-/ig, "");
+
+ global.exchangeCodes.push({
+ accountId: user.accountId,
+ exchange_code: exchange_code,
+ creatingClientId: ""
+ });
+
+ setTimeout(() => {
+ let exchangeCode = global.exchangeCodes.findIndex(i => i.exchange_code == exchange_code);
+
+ if (exchangeCode != -1) global.exchangeCodes.splice(exchangeCode, 1);
+ }, 300000) // remove exchange code in 5 minutes if unused
+
+ let embed = new MessageEmbed()
+ .setColor("#56ff00")
+ .setAuthor({ name: interaction.user.tag, iconURL: interaction.user.avatarURL() })
+ .setFields(
+ { name: "Exchange Code", value: exchange_code }
+ )
+ .setTimestamp()
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+
+ interaction.editReply({ content: "Successfully generated an exchange code.", embeds: [embed], ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/lookup.js b/DiscordBot/commands/User/lookup.js
new file mode 100644
index 0000000..8859e85
--- /dev/null
+++ b/DiscordBot/commands/User/lookup.js
@@ -0,0 +1,38 @@
+const { MessageEmbed } = require("discord.js");
+const Users = require("../../../model/user.js");
+
+module.exports = {
+ commandInfo: {
+ name: "lookup",
+ description: "Search for a Discord user\'s ID by providing their in-game username.",
+ options: [
+ {
+ name: "user",
+ description: "Target username.",
+ required: true,
+ type: 3
+ }
+ ]
+ },
+ execute: async (interaction) => {
+
+ await interaction.deferReply({ ephemeral: true });
+
+ const { options } = interaction;
+
+ const user = await Users.findOne({ username_lower: (options.get("user").value).toLowerCase() }).lean();
+ if (!user) return interaction.editReply({ content: "The account username you entered does not exist.", ephemeral: true });
+
+ let onlineStatus = global.Clients.some(i => i.accountId == user.accountId);
+
+ let embed = new MessageEmbed()
+ .setColor("GREEN")
+ .setDescription(`**User Information:**\n- **Discord User:** <@${user.discordId}>\n- **DiscordID:** ${user.discordId}\n- **In-Game Username:** ${user.username}\n- **Banned:** ${user.banned ? "Yes" : "No"}\n- **Online:** ${onlineStatus ? "Yes" : "No"}`)
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+
+ interaction.editReply({ embeds: [embed], ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/sign-out-of-all-sessions.js b/DiscordBot/commands/User/sign-out-of-all-sessions.js
new file mode 100644
index 0000000..fe08e50
--- /dev/null
+++ b/DiscordBot/commands/User/sign-out-of-all-sessions.js
@@ -0,0 +1,34 @@
+const User = require("../../../model/user.js");
+const functions = require("../../../structs/functions.js");
+
+module.exports = {
+ commandInfo: {
+ name: "sign-out-of-all-sessions",
+ description: "Signs you out if you have an active session."
+ },
+ execute: async (interaction) => {
+ await interaction.deferReply({ ephemeral: true });
+
+ const targetUser = await User.findOne({ discordId: interaction.user.id }).lean();
+ if (!targetUser) return interaction.editReply({ content: "You do not have a registered account!", ephemeral: true });
+
+ let refreshToken = global.refreshTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (refreshToken != -1) global.refreshTokens.splice(refreshToken, 1);
+
+ let accessToken = global.accessTokens.findIndex(i => i.accountId == targetUser.accountId);
+ if (accessToken != -1) {
+ global.accessTokens.splice(accessToken, 1);
+
+ let xmppClient = global.Clients.find(client => client.accountId == targetUser.accountId);
+ if (xmppClient) xmppClient.client.close();
+ }
+
+ if (accessToken != -1 || refreshToken != -1) {
+ functions.UpdateTokens();
+
+ return interaction.editReply({ content: `Successfully signed out of all sessions!`, ephemeral: true });
+ }
+
+ interaction.editReply({ content: `You have no current active sessions.`, ephemeral: true });
+ }
+}
\ No newline at end of file
diff --git a/DiscordBot/commands/User/vbucksamount.js b/DiscordBot/commands/User/vbucksamount.js
new file mode 100644
index 0000000..1a697a0
--- /dev/null
+++ b/DiscordBot/commands/User/vbucksamount.js
@@ -0,0 +1,33 @@
+const { MessageEmbed } = require("discord.js");
+const Profiles = require('../../../model/profiles.js');
+const Users = require('../../../model/user.js');
+
+module.exports = {
+ commandInfo: {
+ name: "vbucksamount",
+ description: "Displays your current V-Bucks balance.",
+ },
+ execute: async (interaction) => {
+
+ await interaction.deferReply({ ephemeral: true })
+
+ const currentuser = await Users.findOne({ discordId: interaction.user.id });
+ const vbucksamount = await Profiles.findOne({ accountId: currentuser?.accountId });
+ const currency = vbucksamount?.profiles.common_core.items["Currency:MtxPurchased"].quantity;
+ if (!currentuser)
+ {
+ return interaction.editReply({ content: "You are not registered!", ephemeral: true });
+ }
+ const embed = new MessageEmbed()
+ .setTitle("V-Bucks Count:")
+ .setDescription(`You currently have **` + currency + " V-Bucks** in your Account!")
+ .setTimestamp()
+ .setThumbnail('https://cdn.discordapp.com/attachments/1248740944648605747/1249460527688585236/vbucks-removebg-preview.png?ex=6667624b&is=666610cb&hm=27c9fb9569124ab504f53d6a1cf758a1cfacc6a13f9165a61ce4d758ad3e5f0d&')
+ .setFooter({
+ text: "Reload Backend",
+ iconURL: "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&"
+ })
+ .setColor("WHITE")
+ await interaction.editReply({ embeds: [embed], ephemeral: true });
+}
+}
\ No newline at end of file
diff --git a/DiscordBot/index.js b/DiscordBot/index.js
new file mode 100644
index 0000000..d1e8c6a
--- /dev/null
+++ b/DiscordBot/index.js
@@ -0,0 +1,49 @@
+const { Client, Intents, ActivityType } = require("discord.js");
+const client = new Client({ intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_MEMBERS] });
+const fs = require("fs");
+const path = require("path");
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+const log = require("../structs/log.js");
+
+client.once("ready", () => {
+ log.bot("Bot is up and running!");
+
+ let commands = client.application.commands;
+
+ const loadCommands = (dir) => {
+ fs.readdirSync(dir).forEach(file => {
+ const filePath = path.join(dir, file);
+ if (fs.lstatSync(filePath).isDirectory()) {
+ loadCommands(filePath);
+ } else if (file.endsWith(".js")) {
+ const command = require(filePath);
+ commands.create(command.commandInfo);
+ }
+ });
+ };
+
+ loadCommands(path.join(__dirname, "commands"));
+});
+
+client.on("interactionCreate", async interaction => {
+ if (!interaction.isApplicationCommand()) return;
+
+ const executeCommand = (dir, commandName) => {
+ const commandPath = path.join(dir, commandName + ".js");
+ if (fs.existsSync(commandPath)) {
+ require(commandPath).execute(interaction);
+ return true;
+ }
+ const subdirectories = fs.readdirSync(dir).filter(subdir => fs.lstatSync(path.join(dir, subdir)).isDirectory());
+ for (const subdir of subdirectories) {
+ if (executeCommand(path.join(dir, subdir), commandName)) {
+ return true;
+ }
+ }
+ return false;
+ };
+
+ executeCommand(path.join(__dirname, "commands"), interaction.commandName);
+});
+
+client.login(config.discord.bot_token);
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+ Copyright (C)
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+.
+
+ The GNU General Public License does not permit incorporating your program
+into proprietary programs. If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library. If this is what you want to do, use the GNU Lesser General
+Public License instead of this License. But first, please read
+.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f79da79
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# Reload Backend
+
+Reload Backend is a universal Fortnite private server backend written in JavaScript, made by Burlone.
\ No newline at end of file
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..e46d8ff
--- /dev/null
+++ b/index.js
@@ -0,0 +1,85 @@
+const express = require("express");
+const app = express();
+const mongoose = require("mongoose");
+const fs = require("fs");
+const rateLimit = require("express-rate-limit");
+const jwt = require("jsonwebtoken");
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+const log = require("./structs/log.js");
+const error = require("./structs/error.js");
+const functions = require("./structs/functions.js");
+
+if (!fs.existsSync("./ClientSettings")) fs.mkdirSync("./ClientSettings");
+
+global.JWT_SECRET = functions.MakeID();
+const PORT = config.port;
+
+console.log('Welcome to Reload Backend\n')
+
+const tokens = JSON.parse(fs.readFileSync("./tokenManager/tokens.json").toString());
+
+for (let tokenType in tokens) {
+ for (let tokenIndex in tokens[tokenType]) {
+ let decodedToken = jwt.decode(tokens[tokenType][tokenIndex].token.replace("eg1~", ""));
+
+ if (DateAddHours(new Date(decodedToken.creation_date), decodedToken.hours_expire).getTime() <= new Date().getTime()) {
+ tokens[tokenType].splice(Number(tokenIndex), 1);
+ }
+ }
+}
+
+fs.writeFileSync("./tokenManager/tokens.json", JSON.stringify(tokens, null, 2));
+
+global.accessTokens = tokens.accessTokens;
+global.refreshTokens = tokens.refreshTokens;
+global.clientTokens = tokens.clientTokens;
+
+global.exchangeCodes = [];
+
+mongoose.connect(config.mongodb.database, () => {
+ log.backend("App successfully connected to MongoDB!");
+});
+
+mongoose.connection.on("error", err => {
+ log.error("MongoDB failed to connect, please make sure you have MongoDB installed and running.");
+ throw err;
+});
+
+app.use(rateLimit({ windowMs: 0.5 * 60 * 1000, max: 45 }));
+app.use(express.json());
+app.use(express.urlencoded({ extended: true }));
+
+fs.readdirSync("./routes").forEach(fileName => {
+ app.use(require(`./routes/${fileName}`));
+});
+
+app.listen(PORT, () => {
+
+ log.backend(`App started listening on port ${PORT}`);
+
+ require("./xmpp/xmpp.js");
+ require("./DiscordBot");
+}).on("error", async (err) => {
+ if (err.code == "EADDRINUSE") {
+ log.error(`Port ${PORT} is already in use!\nClosing in 3 seconds...`);
+ await functions.sleep(3000)
+ process.exit(0);
+ } else throw err;
+});
+
+// if endpoint not found, return this error
+app.use((req, res, next) => {
+ error.createError(
+ "errors.com.epicgames.common.not_found",
+ "Sorry the resource you were trying to find could not be found",
+ undefined, 1004, undefined, 404, res
+ );
+});
+
+function DateAddHours(pdate, number) {
+ let date = pdate;
+ date.setHours(date.getHours() + number);
+
+ return date;
+}
diff --git a/install_packages.bat b/install_packages.bat
new file mode 100644
index 0000000..63b2a60
--- /dev/null
+++ b/install_packages.bat
@@ -0,0 +1,2 @@
+npm i
+pause
\ No newline at end of file
diff --git a/matchmaker/matchmaker.js b/matchmaker/matchmaker.js
new file mode 100644
index 0000000..344726e
--- /dev/null
+++ b/matchmaker/matchmaker.js
@@ -0,0 +1,72 @@
+const functions = require("../structs/functions.js");
+
+module.exports = async (ws) => {
+ // create hashes
+ const ticketId = functions.MakeID().replace(/-/ig, "");
+ const matchId = functions.MakeID().replace(/-/ig, "");
+ const sessionId = functions.MakeID().replace(/-/ig, "");
+
+ Connecting();
+ await functions.sleep(800);
+ Waiting();
+ await functions.sleep(1000);
+ Queued();
+ await functions.sleep(4000);
+ SessionAssignment();
+ await functions.sleep(2000);
+ Join();
+
+ function Connecting() {
+ ws.send(JSON.stringify({
+ "payload": {
+ "state": "Connecting"
+ },
+ "name": "StatusUpdate"
+ }));
+ }
+
+ function Waiting() {
+ ws.send(JSON.stringify({
+ "payload": {
+ "totalPlayers": 1,
+ "connectedPlayers": 1,
+ "state": "Waiting"
+ },
+ "name": "StatusUpdate"
+ }));
+ }
+
+ function Queued() {
+ ws.send(JSON.stringify({
+ "payload": {
+ "ticketId": ticketId,
+ "queuedPlayers": 0,
+ "estimatedWaitSec": 0,
+ "status": {},
+ "state": "Queued"
+ },
+ "name": "StatusUpdate"
+ }));
+ }
+
+ function SessionAssignment() {
+ ws.send(JSON.stringify({
+ "payload": {
+ "matchId": matchId,
+ "state": "SessionAssignment"
+ },
+ "name": "StatusUpdate"
+ }));
+ }
+
+ function Join() {
+ ws.send(JSON.stringify({
+ "payload": {
+ "matchId": matchId,
+ "sessionId": sessionId,
+ "joinDelaySec": 1
+ },
+ "name": "Play"
+ }));
+ }
+}
\ No newline at end of file
diff --git a/model/friends.js b/model/friends.js
new file mode 100644
index 0000000..9d86292
--- /dev/null
+++ b/model/friends.js
@@ -0,0 +1,16 @@
+const mongoose = require("mongoose");
+
+const FriendsSchema = new mongoose.Schema(
+ {
+ created: { type: Date, required: true },
+ accountId: { type: String, required: true, unique: true },
+ list: { type: Object, default: { accepted: [], incoming: [], outgoing: [], blocked: [] } }
+ },
+ {
+ collection: "friends"
+ }
+)
+
+const model = mongoose.model('FriendsSchema', FriendsSchema);
+
+module.exports = model;
\ No newline at end of file
diff --git a/model/profiles.js b/model/profiles.js
new file mode 100644
index 0000000..36c4128
--- /dev/null
+++ b/model/profiles.js
@@ -0,0 +1,16 @@
+const mongoose = require("mongoose");
+
+const ProfilesSchema = new mongoose.Schema(
+ {
+ created: { type: Date, required: true },
+ accountId: { type: String, required: true, unique: true },
+ profiles: { type: Object, required: true }
+ },
+ {
+ collection: "profiles"
+ }
+)
+
+const model = mongoose.model('ProfilesSchema', ProfilesSchema);
+
+module.exports = model;
\ No newline at end of file
diff --git a/model/user.js b/model/user.js
new file mode 100644
index 0000000..e882986
--- /dev/null
+++ b/model/user.js
@@ -0,0 +1,21 @@
+const mongoose = require("mongoose");
+
+const UserSchema = new mongoose.Schema(
+ {
+ created: { type: Date, required: true },
+ banned: { type: Boolean, default: false },
+ discordId: { type: String, required: true, unique: true },
+ accountId: { type: String, required: true, unique: true },
+ username: { type: String, required: true, unique: true },
+ username_lower: { type: String, required: true, unique: true },
+ email: { type: String, required: true, unique: true },
+ password: { type: String, required: true }
+ },
+ {
+ collection: "users"
+ }
+)
+
+const model = mongoose.model('UserSchema', UserSchema);
+
+module.exports = model;
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..8aaac4a
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,3202 @@
+{
+ "name": "reloadbackend",
+ "version": "1.0.0",
+ "lockfileVersion": 2,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "reloadbackend",
+ "version": "1.0.0",
+ "license": "GPL-3.0",
+ "dependencies": {
+ "bad-words": "^3.0.4",
+ "bcrypt": "^5.1.0",
+ "destr": "^2.0.3",
+ "discord.js": "^13.7.0",
+ "dotenv": "^16.0.3",
+ "express": "^4.18.2",
+ "express-rate-limit": "^6.7.0",
+ "jsonwebtoken": "^8.5.1",
+ "mongoose": "^6.6.5",
+ "path": "^0.12.7",
+ "uuid": "^9.0.0",
+ "ws": "^8.9.0",
+ "xml-parser": "^1.2.1",
+ "xmlbuilder": "^15.1.1"
+ }
+ },
+ "node_modules/@discordjs/builders": {
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-0.16.0.tgz",
+ "integrity": "sha512-9/NCiZrLivgRub2/kBc0Vm5pMBE5AUdYbdXsLu/yg9ANgvnaJ0bZKTY8yYnLbsEc/LYUP79lEIdC73qEYhWq7A==",
+ "deprecated": "no longer supported",
+ "dependencies": {
+ "@sapphire/shapeshift": "^3.5.1",
+ "discord-api-types": "^0.36.2",
+ "fast-deep-equal": "^3.1.3",
+ "ts-mixer": "^6.0.1",
+ "tslib": "^2.4.0"
+ },
+ "engines": {
+ "node": ">=16.9.0"
+ }
+ },
+ "node_modules/@discordjs/builders/node_modules/discord-api-types": {
+ "version": "0.36.3",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.36.3.tgz",
+ "integrity": "sha512-bz/NDyG0KBo/tY14vSkrwQ/n3HKPf87a0WFW/1M9+tXYK+vp5Z5EksawfCWo2zkAc6o7CClc0eff1Pjrqznlwg=="
+ },
+ "node_modules/@discordjs/collection": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-0.7.0.tgz",
+ "integrity": "sha512-R5i8Wb8kIcBAFEPLLf7LVBQKBDYUL+ekb23sOgpkpyGT+V4P7V83wTxcsqmX+PbqHt4cEHn053uMWfRqh/Z/nA==",
+ "deprecated": "no longer supported",
+ "engines": {
+ "node": ">=16.9.0"
+ }
+ },
+ "node_modules/@mapbox/node-pre-gyp": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz",
+ "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==",
+ "dependencies": {
+ "detect-libc": "^2.0.0",
+ "https-proxy-agent": "^5.0.0",
+ "make-dir": "^3.1.0",
+ "node-fetch": "^2.6.7",
+ "nopt": "^5.0.0",
+ "npmlog": "^5.0.1",
+ "rimraf": "^3.0.2",
+ "semver": "^7.3.5",
+ "tar": "^6.1.11"
+ },
+ "bin": {
+ "node-pre-gyp": "bin/node-pre-gyp"
+ }
+ },
+ "node_modules/@sapphire/async-queue": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.0.tgz",
+ "integrity": "sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA==",
+ "engines": {
+ "node": ">=v14.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/@sapphire/shapeshift": {
+ "version": "3.7.0",
+ "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.7.0.tgz",
+ "integrity": "sha512-A6vI1zJoxhjWo4grsxpBRBgk96SqSdjLX5WlzKp9H+bJbkM07mvwcbtbVAmUZHbi/OG3HLfiZ1rlw4BhH6tsBQ==",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "lodash.uniqwith": "^4.5.0"
+ },
+ "engines": {
+ "node": ">=v14.0.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/@types/node": {
+ "version": "18.8.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.5.tgz",
+ "integrity": "sha512-Bq7G3AErwe5A/Zki5fdD3O6+0zDChhg671NfPjtIcbtzDNZTv4NPKMRFr7gtYPG7y+B8uTiNK4Ngd9T0FTar6Q=="
+ },
+ "node_modules/@types/node-fetch": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz",
+ "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==",
+ "dependencies": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ }
+ },
+ "node_modules/@types/node-fetch/node_modules/form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@types/webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="
+ },
+ "node_modules/@types/whatwg-url": {
+ "version": "8.2.2",
+ "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz",
+ "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==",
+ "dependencies": {
+ "@types/node": "*",
+ "@types/webidl-conversions": "*"
+ }
+ },
+ "node_modules/@types/ws": {
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz",
+ "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "dependencies": {
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/agent-base/node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/agent-base/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/aproba": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
+ },
+ "node_modules/are-we-there-yet": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
+ "dependencies": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
+ "node_modules/bad-words": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/bad-words/-/bad-words-3.0.4.tgz",
+ "integrity": "sha512-v/Q9uRPH4+yzDVLL4vR1+S9KoFgOEUl5s4axd6NIAq8SV2mradgi4E8lma/Y0cw1ltVdvyegCQQKffCPRCp8fg==",
+ "dependencies": {
+ "badwords-list": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/badwords-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/badwords-list/-/badwords-list-1.0.0.tgz",
+ "integrity": "sha512-oWhaSG67e+HQj3OGHQt2ucP+vAPm1wTbdp2aDHeuh4xlGXBdWwzZ//pfu6swf5gZ8iX0b7JgmSo8BhgybbqszA=="
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/bcrypt": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.0.tgz",
+ "integrity": "sha512-RHBS7HI5N5tEnGTmtR/pppX0mmDSBpQ4aCBsj7CEQfYXDcO74A8sIBYcJMuCsis2E81zDxeENYhv66oZwLiA+Q==",
+ "hasInstallScript": true,
+ "dependencies": {
+ "@mapbox/node-pre-gyp": "^1.0.10",
+ "node-addon-api": "^5.0.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.1",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
+ "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "on-finished": "2.4.1",
+ "qs": "6.11.0",
+ "raw-body": "2.5.1",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/bson": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz",
+ "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==",
+ "dependencies": {
+ "buffer": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "node_modules/buffer-equal-constant-time": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "dependencies": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "bin": {
+ "color-support": "bin.js"
+ }
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
+ },
+ "node_modules/console-control-strings": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
+ },
+ "node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/delegates": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
+ },
+ "node_modules/denque": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destr": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz",
+ "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ=="
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
+ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/discord-api-types": {
+ "version": "0.33.5",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
+ "integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
+ },
+ "node_modules/discord.js": {
+ "version": "13.12.0",
+ "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.12.0.tgz",
+ "integrity": "sha512-K5qhREsYcTHkEqt7+7LcSoXTeQYZpI+SQRs9ei/FhbhUpirmjqFtN99P8W2mrKUyhhy7WXWm7rnna0AooKtIpw==",
+ "dependencies": {
+ "@discordjs/builders": "^0.16.0",
+ "@discordjs/collection": "^0.7.0",
+ "@sapphire/async-queue": "^1.5.0",
+ "@types/node-fetch": "^2.6.2",
+ "@types/ws": "^8.5.3",
+ "discord-api-types": "^0.33.5",
+ "form-data": "^4.0.0",
+ "node-fetch": "^2.6.7",
+ "ws": "^8.9.0"
+ },
+ "engines": {
+ "node": ">=16.6.0",
+ "npm": ">=7.0.0"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/ecdsa-sig-formatter": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.18.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
+ "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.1",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.5.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "1.2.0",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.11.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.18.0",
+ "serve-static": "1.15.0",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ }
+ },
+ "node_modules/express-rate-limit": {
+ "version": "6.7.0",
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-6.7.0.tgz",
+ "integrity": "sha512-vhwIdRoqcYB/72TK3tRZI+0ttS8Ytrk24GfmsxDXK9o9IhHNO5bXRiXQSExPQ4GbaE5tvIS7j1SGrxsuWs+sGA==",
+ "engines": {
+ "node": ">= 12.9.0"
+ },
+ "peerDependencies": {
+ "express": "^4 || ^5"
+ }
+ },
+ "node_modules/express/node_modules/cookie": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
+ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "node_modules/finalhandler": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
+ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "node_modules/gauge": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
+ "dependencies": {
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
+ "signal-exit": "^3.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
+ "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
+ "dependencies": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dependencies": {
+ "function-bind": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-unicode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/https-proxy-agent/node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/https-proxy-agent/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "node_modules/ip": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
+ "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/jsonwebtoken": {
+ "version": "8.5.1",
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
+ "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
+ "dependencies": {
+ "jws": "^3.2.2",
+ "lodash.includes": "^4.3.0",
+ "lodash.isboolean": "^3.0.3",
+ "lodash.isinteger": "^4.0.4",
+ "lodash.isnumber": "^3.0.3",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.once": "^4.0.0",
+ "ms": "^2.1.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=4",
+ "npm": ">=1.4.28"
+ }
+ },
+ "node_modules/jsonwebtoken/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/jsonwebtoken/node_modules/semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/jwa": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
+ "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
+ "dependencies": {
+ "buffer-equal-constant-time": "1.0.1",
+ "ecdsa-sig-formatter": "1.0.11",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/jws": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
+ "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
+ "dependencies": {
+ "jwa": "^1.4.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/kareem": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.4.1.tgz",
+ "integrity": "sha512-aJ9opVoXroQUPfovYP5kaj2lM7Jn02Gw13bL0lg9v0V7SaUc0qavPs0Eue7d2DcC3NjqI6QAUElXNsuZSeM+EA=="
+ },
+ "node_modules/lodash.includes": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
+ "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="
+ },
+ "node_modules/lodash.isboolean": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
+ "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+ },
+ "node_modules/lodash.isinteger": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
+ "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="
+ },
+ "node_modules/lodash.isnumber": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
+ "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="
+ },
+ "node_modules/lodash.isplainobject": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+ },
+ "node_modules/lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="
+ },
+ "node_modules/lodash.once": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
+ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="
+ },
+ "node_modules/lodash.uniqwith": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniqwith/-/lodash.uniqwith-4.5.0.tgz",
+ "integrity": "sha512-7lYL8bLopMoy4CTICbxygAUq6CdRJ36vFc80DucPueUee+d5NBRxz3FdT9Pes/HEx5mPoT9jwnsEJWz1N7uq7Q=="
+ },
+ "node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/make-dir/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/memory-pager": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
+ "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
+ "optional": true
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz",
+ "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "dependencies": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/mongodb": {
+ "version": "4.9.1",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz",
+ "integrity": "sha512-ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ==",
+ "dependencies": {
+ "bson": "^4.7.0",
+ "denque": "^2.1.0",
+ "mongodb-connection-string-url": "^2.5.3",
+ "socks": "^2.7.0"
+ },
+ "engines": {
+ "node": ">=12.9.0"
+ },
+ "optionalDependencies": {
+ "saslprep": "^1.0.3"
+ }
+ },
+ "node_modules/mongodb-connection-string-url": {
+ "version": "2.5.4",
+ "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz",
+ "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==",
+ "dependencies": {
+ "@types/whatwg-url": "^8.2.1",
+ "whatwg-url": "^11.0.0"
+ }
+ },
+ "node_modules/mongoose": {
+ "version": "6.6.5",
+ "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.6.5.tgz",
+ "integrity": "sha512-iA/oDpWOc+K2QYzA4Eq7Z1oUBQOz9FGDmUwPLgw872Bfs/qizA5Db+gJorAn+TnnGu3VoCK8iP4Y+TECUelwjA==",
+ "dependencies": {
+ "bson": "^4.6.5",
+ "kareem": "2.4.1",
+ "mongodb": "4.9.1",
+ "mpath": "0.9.0",
+ "mquery": "4.0.3",
+ "ms": "2.1.3",
+ "sift": "16.0.0"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mongoose"
+ }
+ },
+ "node_modules/mongoose/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/mpath": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz",
+ "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/mquery": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/mquery/-/mquery-4.0.3.tgz",
+ "integrity": "sha512-J5heI+P08I6VJ2Ky3+33IpCdAvlYGTSUjwTPxkAr8i8EoduPMBX2OY/wa3IKZIQl7MU4SbFk8ndgSKyB/cl1zA==",
+ "dependencies": {
+ "debug": "4.x"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/mquery/node_modules/debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "dependencies": {
+ "ms": "2.1.2"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/mquery/node_modules/ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/node-addon-api": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz",
+ "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="
+ },
+ "node_modules/node-fetch": {
+ "version": "2.6.7",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-fetch/node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
+ },
+ "node_modules/node-fetch/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
+ },
+ "node_modules/node-fetch/node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/nopt": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+ "dependencies": {
+ "abbrev": "1"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/npmlog": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
+ "dependencies": {
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
+ "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path": {
+ "version": "0.12.7",
+ "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
+ "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
+ "dependencies": {
+ "process": "^0.11.1",
+ "util": "^0.10.3"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
+ },
+ "node_modules/process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
+ "engines": {
+ "node": ">= 0.6.0"
+ }
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "dependencies": {
+ "side-channel": "^1.0.4"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
+ "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "node_modules/saslprep": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz",
+ "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==",
+ "optional": true,
+ "dependencies": {
+ "sparse-bitfield": "^3.0.3"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/semver": {
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/send": {
+ "version": "0.18.0",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
+ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "node_modules/serve-static": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
+ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
+ "dependencies": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.18.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
+ },
+ "node_modules/side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "dependencies": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/sift": {
+ "version": "16.0.0",
+ "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.0.tgz",
+ "integrity": "sha512-ILTjdP2Mv9V1kIxWMXeMTIRbOBrqKc4JAXmFMnFq3fKeyQ2Qwa3Dw1ubcye3vR+Y6ofA0b9gNDr/y2t6eUeIzQ=="
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
+ },
+ "node_modules/smart-buffer": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
+ "engines": {
+ "node": ">= 6.0.0",
+ "npm": ">= 3.0.0"
+ }
+ },
+ "node_modules/socks": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
+ "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
+ "dependencies": {
+ "ip": "^2.0.0",
+ "smart-buffer": "^4.2.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0",
+ "npm": ">= 3.0.0"
+ }
+ },
+ "node_modules/sparse-bitfield": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
+ "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
+ "optional": true,
+ "dependencies": {
+ "memory-pager": "^1.0.2"
+ }
+ },
+ "node_modules/statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/tar": {
+ "version": "6.1.11",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+ "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+ "dependencies": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz",
+ "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==",
+ "dependencies": {
+ "punycode": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/ts-mixer": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.1.tgz",
+ "integrity": "sha512-hvE+ZYXuINrx6Ei6D6hz+PTim0Uf++dYbK9FFifLNwQj+RwKquhQpn868yZsCtJYiclZF1u8l6WZxxKi+vv7Rg=="
+ },
+ "node_modules/tslib": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
+ "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/util": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
+ "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
+ "dependencies": {
+ "inherits": "2.0.3"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+ },
+ "node_modules/util/node_modules/inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/uuid": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
+ "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
+ "bin": {
+ "uuid": "dist/bin/uuid"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/whatwg-url": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz",
+ "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
+ "dependencies": {
+ "tr46": "^3.0.0",
+ "webidl-conversions": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/wide-align": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "dependencies": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+ },
+ "node_modules/ws": {
+ "version": "8.9.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz",
+ "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/xml-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/xml-parser/-/xml-parser-1.2.1.tgz",
+ "integrity": "sha512-lPUzzmS0zdwcNtyNndCl2IwH172ozkUDqmfmH3FcuDzHVl552Kr6oNfsvteHabqTWhsrMgpijqZ/yT7Wo1/Pzw==",
+ "dependencies": {
+ "debug": "^2.2.0"
+ }
+ },
+ "node_modules/xmlbuilder": {
+ "version": "15.1.1",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==",
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+ }
+ },
+ "dependencies": {
+ "@discordjs/builders": {
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/builders/-/builders-0.16.0.tgz",
+ "integrity": "sha512-9/NCiZrLivgRub2/kBc0Vm5pMBE5AUdYbdXsLu/yg9ANgvnaJ0bZKTY8yYnLbsEc/LYUP79lEIdC73qEYhWq7A==",
+ "requires": {
+ "@sapphire/shapeshift": "^3.5.1",
+ "discord-api-types": "^0.36.2",
+ "fast-deep-equal": "^3.1.3",
+ "ts-mixer": "^6.0.1",
+ "tslib": "^2.4.0"
+ },
+ "dependencies": {
+ "discord-api-types": {
+ "version": "0.36.3",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.36.3.tgz",
+ "integrity": "sha512-bz/NDyG0KBo/tY14vSkrwQ/n3HKPf87a0WFW/1M9+tXYK+vp5Z5EksawfCWo2zkAc6o7CClc0eff1Pjrqznlwg=="
+ }
+ }
+ },
+ "@discordjs/collection": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/@discordjs/collection/-/collection-0.7.0.tgz",
+ "integrity": "sha512-R5i8Wb8kIcBAFEPLLf7LVBQKBDYUL+ekb23sOgpkpyGT+V4P7V83wTxcsqmX+PbqHt4cEHn053uMWfRqh/Z/nA=="
+ },
+ "@mapbox/node-pre-gyp": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz",
+ "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==",
+ "requires": {
+ "detect-libc": "^2.0.0",
+ "https-proxy-agent": "^5.0.0",
+ "make-dir": "^3.1.0",
+ "node-fetch": "^2.6.7",
+ "nopt": "^5.0.0",
+ "npmlog": "^5.0.1",
+ "rimraf": "^3.0.2",
+ "semver": "^7.3.5",
+ "tar": "^6.1.11"
+ }
+ },
+ "@sapphire/async-queue": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@sapphire/async-queue/-/async-queue-1.5.0.tgz",
+ "integrity": "sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA=="
+ },
+ "@sapphire/shapeshift": {
+ "version": "3.7.0",
+ "resolved": "https://registry.npmjs.org/@sapphire/shapeshift/-/shapeshift-3.7.0.tgz",
+ "integrity": "sha512-A6vI1zJoxhjWo4grsxpBRBgk96SqSdjLX5WlzKp9H+bJbkM07mvwcbtbVAmUZHbi/OG3HLfiZ1rlw4BhH6tsBQ==",
+ "requires": {
+ "fast-deep-equal": "^3.1.3",
+ "lodash.uniqwith": "^4.5.0"
+ }
+ },
+ "@types/node": {
+ "version": "18.8.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.8.5.tgz",
+ "integrity": "sha512-Bq7G3AErwe5A/Zki5fdD3O6+0zDChhg671NfPjtIcbtzDNZTv4NPKMRFr7gtYPG7y+B8uTiNK4Ngd9T0FTar6Q=="
+ },
+ "@types/node-fetch": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz",
+ "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==",
+ "requires": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ },
+ "dependencies": {
+ "form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ }
+ }
+ },
+ "@types/webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="
+ },
+ "@types/whatwg-url": {
+ "version": "8.2.2",
+ "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz",
+ "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==",
+ "requires": {
+ "@types/node": "*",
+ "@types/webidl-conversions": "*"
+ }
+ },
+ "@types/ws": {
+ "version": "8.5.3",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz",
+ "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==",
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "abbrev": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
+ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
+ },
+ "accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "requires": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ }
+ },
+ "agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
+ "requires": {
+ "debug": "4"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ }
+ }
+ },
+ "ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
+ },
+ "aproba": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
+ },
+ "are-we-there-yet": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
+ "requires": {
+ "delegates": "^1.0.0",
+ "readable-stream": "^3.6.0"
+ }
+ },
+ "array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
+ },
+ "asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
+ },
+ "bad-words": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/bad-words/-/bad-words-3.0.4.tgz",
+ "integrity": "sha512-v/Q9uRPH4+yzDVLL4vR1+S9KoFgOEUl5s4axd6NIAq8SV2mradgi4E8lma/Y0cw1ltVdvyegCQQKffCPRCp8fg==",
+ "requires": {
+ "badwords-list": "^1.0.0"
+ }
+ },
+ "badwords-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/badwords-list/-/badwords-list-1.0.0.tgz",
+ "integrity": "sha512-oWhaSG67e+HQj3OGHQt2ucP+vAPm1wTbdp2aDHeuh4xlGXBdWwzZ//pfu6swf5gZ8iX0b7JgmSo8BhgybbqszA=="
+ },
+ "balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
+ },
+ "base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
+ },
+ "bcrypt": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.0.tgz",
+ "integrity": "sha512-RHBS7HI5N5tEnGTmtR/pppX0mmDSBpQ4aCBsj7CEQfYXDcO74A8sIBYcJMuCsis2E81zDxeENYhv66oZwLiA+Q==",
+ "requires": {
+ "@mapbox/node-pre-gyp": "^1.0.10",
+ "node-addon-api": "^5.0.0"
+ }
+ },
+ "body-parser": {
+ "version": "1.20.1",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
+ "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
+ "requires": {
+ "bytes": "3.1.2",
+ "content-type": "~1.0.4",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "on-finished": "2.4.1",
+ "qs": "6.11.0",
+ "raw-body": "2.5.1",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
+ }
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "bson": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/bson/-/bson-4.7.0.tgz",
+ "integrity": "sha512-VrlEE4vuiO1WTpfof4VmaVolCVYkYTgB9iWgYNOrVlnifpME/06fhFRmONgBhClD5pFC1t9ZWqFUQEQAzY43bA==",
+ "requires": {
+ "buffer": "^5.6.0"
+ }
+ },
+ "buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "requires": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "buffer-equal-constant-time": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
+ "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
+ },
+ "bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
+ },
+ "call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ }
+ },
+ "chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ=="
+ },
+ "color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="
+ },
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
+ },
+ "console-control-strings": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ=="
+ },
+ "content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "requires": {
+ "safe-buffer": "5.2.1"
+ }
+ },
+ "content-type": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
+ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="
+ },
+ "cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ=="
+ },
+ "delegates": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ=="
+ },
+ "denque": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw=="
+ },
+ "depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
+ },
+ "destr": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz",
+ "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ=="
+ },
+ "destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
+ },
+ "detect-libc": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz",
+ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="
+ },
+ "discord-api-types": {
+ "version": "0.33.5",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.33.5.tgz",
+ "integrity": "sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg=="
+ },
+ "discord.js": {
+ "version": "13.12.0",
+ "resolved": "https://registry.npmjs.org/discord.js/-/discord.js-13.12.0.tgz",
+ "integrity": "sha512-K5qhREsYcTHkEqt7+7LcSoXTeQYZpI+SQRs9ei/FhbhUpirmjqFtN99P8W2mrKUyhhy7WXWm7rnna0AooKtIpw==",
+ "requires": {
+ "@discordjs/builders": "^0.16.0",
+ "@discordjs/collection": "^0.7.0",
+ "@sapphire/async-queue": "^1.5.0",
+ "@types/node-fetch": "^2.6.2",
+ "@types/ws": "^8.5.3",
+ "discord-api-types": "^0.33.5",
+ "form-data": "^4.0.0",
+ "node-fetch": "^2.6.7",
+ "ws": "^8.9.0"
+ }
+ },
+ "dotenv": {
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ=="
+ },
+ "ecdsa-sig-formatter": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
+ "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ },
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
+ },
+ "escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
+ },
+ "etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
+ },
+ "express": {
+ "version": "4.18.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
+ "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
+ "requires": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.1",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.5.0",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "1.2.0",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "merge-descriptors": "1.0.1",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.7",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.11.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.18.0",
+ "serve-static": "1.15.0",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "cookie": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
+ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="
+ }
+ }
+ },
+ "express-rate-limit": {
+ "version": "6.7.0",
+ "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-6.7.0.tgz",
+ "integrity": "sha512-vhwIdRoqcYB/72TK3tRZI+0ttS8Ytrk24GfmsxDXK9o9IhHNO5bXRiXQSExPQ4GbaE5tvIS7j1SGrxsuWs+sGA==",
+ "requires": {}
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "finalhandler": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
+ "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
+ }
+ },
+ "form-data": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
+ },
+ "fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
+ },
+ "fs-minipass": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
+ "requires": {
+ "minipass": "^3.0.0"
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
+ },
+ "gauge": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
+ "requires": {
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
+ "signal-exit": "^3.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
+ }
+ },
+ "get-intrinsic": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
+ "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-symbols": "^1.0.3"
+ }
+ },
+ "glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-symbols": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
+ },
+ "has-unicode": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ=="
+ },
+ "http-errors": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "requires": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ }
+ },
+ "https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "requires": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ }
+ }
+ },
+ "iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "requires": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ }
+ },
+ "ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "ip": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
+ "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="
+ },
+ "ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ },
+ "jsonwebtoken": {
+ "version": "8.5.1",
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
+ "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
+ "requires": {
+ "jws": "^3.2.2",
+ "lodash.includes": "^4.3.0",
+ "lodash.isboolean": "^3.0.3",
+ "lodash.isinteger": "^4.0.4",
+ "lodash.isnumber": "^3.0.3",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.isstring": "^4.0.1",
+ "lodash.once": "^4.0.0",
+ "ms": "^2.1.1",
+ "semver": "^5.6.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ },
+ "semver": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
+ "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
+ }
+ }
+ },
+ "jwa": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
+ "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
+ "requires": {
+ "buffer-equal-constant-time": "1.0.1",
+ "ecdsa-sig-formatter": "1.0.11",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "jws": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
+ "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
+ "requires": {
+ "jwa": "^1.4.1",
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "kareem": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.4.1.tgz",
+ "integrity": "sha512-aJ9opVoXroQUPfovYP5kaj2lM7Jn02Gw13bL0lg9v0V7SaUc0qavPs0Eue7d2DcC3NjqI6QAUElXNsuZSeM+EA=="
+ },
+ "lodash.includes": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
+ "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w=="
+ },
+ "lodash.isboolean": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
+ "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="
+ },
+ "lodash.isinteger": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
+ "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA=="
+ },
+ "lodash.isnumber": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
+ "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw=="
+ },
+ "lodash.isplainobject": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
+ "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA=="
+ },
+ "lodash.isstring": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
+ "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw=="
+ },
+ "lodash.once": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
+ "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="
+ },
+ "lodash.uniqwith": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.uniqwith/-/lodash.uniqwith-4.5.0.tgz",
+ "integrity": "sha512-7lYL8bLopMoy4CTICbxygAUq6CdRJ36vFc80DucPueUee+d5NBRxz3FdT9Pes/HEx5mPoT9jwnsEJWz1N7uq7Q=="
+ },
+ "lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "requires": {
+ "semver": "^6.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
+ }
+ }
+ },
+ "media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
+ },
+ "memory-pager": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
+ "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
+ "optional": true
+ },
+ "merge-descriptors": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
+ "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
+ },
+ "methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
+ },
+ "mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
+ },
+ "mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
+ },
+ "mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "requires": {
+ "mime-db": "1.52.0"
+ }
+ },
+ "minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minipass": {
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz",
+ "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==",
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "requires": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ }
+ },
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
+ },
+ "mongodb": {
+ "version": "4.9.1",
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-4.9.1.tgz",
+ "integrity": "sha512-ZhgI/qBf84fD7sI4waZBoLBNJYPQN5IOC++SBCiPiyhzpNKOxN/fi0tBHvH2dEC42HXtNEbFB0zmNz4+oVtorQ==",
+ "requires": {
+ "bson": "^4.7.0",
+ "denque": "^2.1.0",
+ "mongodb-connection-string-url": "^2.5.3",
+ "saslprep": "^1.0.3",
+ "socks": "^2.7.0"
+ }
+ },
+ "mongodb-connection-string-url": {
+ "version": "2.5.4",
+ "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.5.4.tgz",
+ "integrity": "sha512-SeAxuWs0ez3iI3vvmLk/j2y+zHwigTDKQhtdxTgt5ZCOQQS5+HW4g45/Xw5vzzbn7oQXCNQ24Z40AkJsizEy7w==",
+ "requires": {
+ "@types/whatwg-url": "^8.2.1",
+ "whatwg-url": "^11.0.0"
+ }
+ },
+ "mongoose": {
+ "version": "6.6.5",
+ "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.6.5.tgz",
+ "integrity": "sha512-iA/oDpWOc+K2QYzA4Eq7Z1oUBQOz9FGDmUwPLgw872Bfs/qizA5Db+gJorAn+TnnGu3VoCK8iP4Y+TECUelwjA==",
+ "requires": {
+ "bson": "^4.6.5",
+ "kareem": "2.4.1",
+ "mongodb": "4.9.1",
+ "mpath": "0.9.0",
+ "mquery": "4.0.3",
+ "ms": "2.1.3",
+ "sift": "16.0.0"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ }
+ }
+ },
+ "mpath": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz",
+ "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew=="
+ },
+ "mquery": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/mquery/-/mquery-4.0.3.tgz",
+ "integrity": "sha512-J5heI+P08I6VJ2Ky3+33IpCdAvlYGTSUjwTPxkAr8i8EoduPMBX2OY/wa3IKZIQl7MU4SbFk8ndgSKyB/cl1zA==",
+ "requires": {
+ "debug": "4.x"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ }
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
+ },
+ "negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
+ },
+ "node-addon-api": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz",
+ "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="
+ },
+ "node-fetch": {
+ "version": "2.6.7",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz",
+ "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==",
+ "requires": {
+ "whatwg-url": "^5.0.0"
+ },
+ "dependencies": {
+ "tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
+ },
+ "webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
+ },
+ "whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "requires": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ }
+ }
+ },
+ "nopt": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz",
+ "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==",
+ "requires": {
+ "abbrev": "1"
+ }
+ },
+ "npmlog": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
+ "requires": {
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
+ }
+ },
+ "object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
+ },
+ "object-inspect": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
+ "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
+ },
+ "on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "requires": {
+ "ee-first": "1.1.1"
+ }
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
+ },
+ "path": {
+ "version": "0.12.7",
+ "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz",
+ "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==",
+ "requires": {
+ "process": "^0.11.1",
+ "util": "^0.10.3"
+ }
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
+ },
+ "path-to-regexp": {
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
+ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
+ },
+ "process": {
+ "version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
+ },
+ "proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "requires": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ }
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
+ },
+ "qs": {
+ "version": "6.11.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
+ "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
+ "requires": {
+ "side-channel": "^1.0.4"
+ }
+ },
+ "range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
+ },
+ "raw-body": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
+ "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
+ "requires": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ }
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ },
+ "safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+ },
+ "saslprep": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz",
+ "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==",
+ "optional": true,
+ "requires": {
+ "sparse-bitfield": "^3.0.3"
+ }
+ },
+ "semver": {
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ },
+ "send": {
+ "version": "0.18.0",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
+ "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
+ "requires": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
+ "dependencies": {
+ "ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
+ }
+ }
+ },
+ "serve-static": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
+ "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
+ "requires": {
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.18.0"
+ }
+ },
+ "set-blocking": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
+ "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw=="
+ },
+ "setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
+ },
+ "side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "requires": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ }
+ },
+ "sift": {
+ "version": "16.0.0",
+ "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.0.tgz",
+ "integrity": "sha512-ILTjdP2Mv9V1kIxWMXeMTIRbOBrqKc4JAXmFMnFq3fKeyQ2Qwa3Dw1ubcye3vR+Y6ofA0b9gNDr/y2t6eUeIzQ=="
+ },
+ "signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
+ },
+ "smart-buffer": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg=="
+ },
+ "socks": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
+ "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
+ "requires": {
+ "ip": "^2.0.0",
+ "smart-buffer": "^4.2.0"
+ }
+ },
+ "sparse-bitfield": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
+ "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
+ "optional": true,
+ "requires": {
+ "memory-pager": "^1.0.2"
+ }
+ },
+ "statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
+ },
+ "string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "requires": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
+ "tar": {
+ "version": "6.1.11",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz",
+ "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==",
+ "requires": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^3.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ }
+ },
+ "toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
+ },
+ "tr46": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz",
+ "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==",
+ "requires": {
+ "punycode": "^2.1.1"
+ }
+ },
+ "ts-mixer": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.1.tgz",
+ "integrity": "sha512-hvE+ZYXuINrx6Ei6D6hz+PTim0Uf++dYbK9FFifLNwQj+RwKquhQpn868yZsCtJYiclZF1u8l6WZxxKi+vv7Rg=="
+ },
+ "tslib": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
+ "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
+ },
+ "type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "requires": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ }
+ },
+ "unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
+ },
+ "util": {
+ "version": "0.10.4",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
+ "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
+ "requires": {
+ "inherits": "2.0.3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
+ }
+ }
+ },
+ "util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
+ },
+ "uuid": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
+ "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg=="
+ },
+ "vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
+ },
+ "webidl-conversions": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g=="
+ },
+ "whatwg-url": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz",
+ "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
+ "requires": {
+ "tr46": "^3.0.0",
+ "webidl-conversions": "^7.0.0"
+ }
+ },
+ "wide-align": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
+ "requires": {
+ "string-width": "^1.0.2 || 2 || 3 || 4"
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
+ },
+ "ws": {
+ "version": "8.9.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz",
+ "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==",
+ "requires": {}
+ },
+ "xml-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/xml-parser/-/xml-parser-1.2.1.tgz",
+ "integrity": "sha512-lPUzzmS0zdwcNtyNndCl2IwH172ozkUDqmfmH3FcuDzHVl552Kr6oNfsvteHabqTWhsrMgpijqZ/yT7Wo1/Pzw==",
+ "requires": {
+ "debug": "^2.2.0"
+ }
+ },
+ "xmlbuilder": {
+ "version": "15.1.1",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg=="
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..2e2a674
--- /dev/null
+++ b/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "reloadbackend",
+ "version": "1.0.0",
+ "description": "Created by Burlone, This is a modded backend, all main backend credits to lawin",
+ "main": "index.js",
+ "dependencies": {
+ "bad-words": "^3.0.4",
+ "bcrypt": "^5.1.0",
+ "destr": "^2.0.3",
+ "discord.js": "^13.7.0",
+ "dotenv": "^16.0.3",
+ "express": "^4.18.2",
+ "express-rate-limit": "^6.7.0",
+ "jsonwebtoken": "^8.5.1",
+ "mongoose": "^6.6.5",
+ "path": "^0.12.7",
+ "uuid": "^9.0.0",
+ "ws": "^8.9.0",
+ "xml-parser": "^1.2.1",
+ "xmlbuilder": "^15.1.1"
+ },
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/Lawin0129/LawinServerV2.git"
+ },
+ "keywords": [
+ "fortnite",
+ "backend",
+ "node",
+ "server",
+ "v2"
+ ],
+ "author": "Lawin0129",
+ "license": "GPL-3.0",
+ "bugs": {
+ "url": "https://github.com/Lawin0129/LawinServerV2/issues"
+ },
+ "homepage": "https://github.com/Lawin0129/LawinServerV2#readme"
+}
diff --git a/responses/Athena/BattlePass/Season10.json b/responses/Athena/BattlePass/Season10.json
new file mode 100644
index 0000000..f8d4049
--- /dev/null
+++ b/responses/Athena/BattlePass/Season10.json
@@ -0,0 +1,461 @@
+{
+ "battleBundleOfferId": "259920BC42F0AAC7C8672D856C9B622C",
+ "battlePassOfferId": "2E43CCD24C3BE8F5ABBDF28E233B9350",
+ "tierOfferId": "AF1B7AC14A5F6A9ED255B88902120757",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 60,
+ "AthenaCharacter:cid_486_athena_commando_f_streetracerdrift": 1,
+ "AthenaCharacter:cid_488_athena_commando_m_rustremix": 1,
+ "Token:athenaseasonmergedxpboosts": 1,
+ "ChallengeBundleSchedule:season10_seasonx_schedule": 1,
+ "ChallengeBundleSchedule:season10_blackknight_schedule": 1,
+ "ChallengeBundleSchedule:season10_djyonger_schedule": 1,
+ "ChallengeBundleSchedule:season10_drift_schedule": 1,
+ "ChallengeBundleSchedule:season10_rustlord_schedule": 1,
+ "ChallengeBundleSchedule:season10_sparkle_schedule": 1,
+ "ChallengeBundleSchedule:season10_teknique_schedule": 1,
+ "ChallengeBundleSchedule:season10_voyager_schedule": 1,
+ "ChallengeBundleSchedule:season10_mission_schedule": 1,
+ "ChallengeBundleSchedule:season10_seasonlevel_mission_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasonxpboost": 30
+ },
+ {
+ "AthenaDance:emoji_redknight": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_107_graffitiremix": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10dragonegg": 1
+ },
+ {
+ "AthenaGlider:glider_id_166_rustlordremix": 1
+ },
+ {
+ "AthenaDance:spid_150_icedragon": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_161_h7outfitsa": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_024_showdown": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10medievalknight": 1
+ },
+ {
+ "AthenaDance:spid_140_moistymire": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_245_voyagerremix1h": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_155_akdrift": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_crackshot": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:spid_149_fireice": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_074_driftlightning": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_151_jmsparkle": 1
+ },
+ {
+ "AthenaCharacter:cid_483_athena_commando_f_graffitiremix": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_popcorn": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10kevincube": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_012_drift_fox": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_154_ijcuddle": 1
+ },
+ {
+ "AthenaDance:emoji_lifepreserver": 1
+ },
+ {
+ "AthenaDance:eid_jaywalking": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brs10astronaut": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_106_djremix": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_158_ntdurrr": 1
+ },
+ {
+ "AthenaDance:toy_015_bottle": 1
+ },
+ {
+ "AthenaDance:spid_138_sparklespecialist": 1
+ },
+ {
+ "AthenaGlider:glider_id_163_djremix": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_175_jmtomato": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_065_djremix": 1
+ },
+ {
+ "AthenaDance:emoji_coolpepper": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_286_petcarrier_driftfox_styleb": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_160_ktvendetta": 1
+ },
+ {
+ "AthenaCharacter:cid_487_athena_commando_m_djremix": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:spid_135_riskyreels": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10britebomber": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_156_akbrite": 1
+ },
+ {
+ "AthenaDance:toy_020_bottle_fancy": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_288_djremix_headgearb": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_242_sparkleremix": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_162_h7outfitsb": 1
+ },
+ {
+ "AthenaDance:emoji_crossswords": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_105_cube": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10grid": 1
+ },
+ {
+ "AthenaDance:spid_139_tiltedmap": 1
+ },
+ {
+ "AthenaDance:eid_treadmilldance": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "CosmeticVariantToken:vtid_287_petcarrier_driftfox_stylec": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_164_smcrackshot": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_066_tacticalhud": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10westernhats": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaCharacter:cid_485_athena_commando_f_sparkleremix": 1
+ },
+ {
+ "AthenaBackpack:bid_318_sparkleremix": 1
+ },
+ {
+ "AthenaDance:spid_134_dustydepot": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_159_ktfirewalker": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_290_sparkleremix_hairstyleb": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaGlider:glider_id_169_voyagerremix": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10boombox": 1
+ },
+ {
+ "AthenaDance:eid_breakdance2": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_177_ijllama": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_075_celestial": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_109_rustremix": 1
+ },
+ {
+ "HomebaseBannerIcon:brs10doublepump": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_176_smvolcano": 1
+ },
+ {
+ "AthenaCharacter:cid_489_athena_commando_m_voyagerremix": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_sweaty": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_022_daydream": 1
+ },
+ {
+ "AthenaDance:spid_132_blackknight": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_291_voyagerremix_stageb": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_152_jmluxe": 1
+ },
+ {
+ "AthenaGlider:glider_id_165_knightremix": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaItemWrap:wrap_110_streetracerdriftremix": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_289_djremix_headgearc": 1
+ },
+ {
+ "AthenaCharacter:cid_484_athena_commando_m_knightremix": 1,
+ "AthenaBackpack:bid_317_knightremix": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_136_rocketlaunch": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_163_smrocketride": 1
+ },
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_068_popcorn": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_boogiebomb": 1
+ },
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_happyskipping": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs10rift": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaItemWrap:wrap_108_knightremix": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_133_butterfly": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_164_graffitiremix": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_320_rustlordremix": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs1080sllama": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_blowingbubbles": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaMusicPack:musicpack_023_og": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs10shades": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_142_cuberune": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_153_ijdriftboard": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season2.json b/responses/Athena/BattlePass/Season2.json
new file mode 100644
index 0000000..5d5c82c
--- /dev/null
+++ b/responses/Athena/BattlePass/Season2.json
@@ -0,0 +1,318 @@
+{
+ "battlePassOfferId": "C3BA14F04F4D56FC1D490F8011B56553",
+ "tierOfferId": "F86AC2ED4B3EA4B2D65EF1B2629572A0",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_032_athena_commando_m_medieval": 1,
+ "AthenaBackpack:bid_001_bluesquire": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason02bush": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_clapping": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_012_district": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason02lionherald": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_rip": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaGlider:glider_id_004_disco": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason02catsoldier": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason02dragon": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_rage": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaCharacter:cid_033_athena_commando_f_medieval": 1,
+ "AthenaBackpack:bid_002_royaleknight": 1
+ },
+ {
+ "AthenaDance:emoji_peacesign": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason02planet": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_disco": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:eid_worm": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason02bowling": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason02monstertruck": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_exclamation": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_011_medieval": 1
+ },
+ {
+ "AthenaDance:emoji_armflex": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason02icecream": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_mvp": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaGlider:glider_id_003_district": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason02log": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_baited": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:eid_floss": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason02cake": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason02tank": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_salty": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaCharacter:cid_039_athena_commando_f_disco": 1
+ },
+ {
+ "AthenaDance:emoji_stealthy": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason02gasmask": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_potatoaim": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_013_teslacoil": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason02vulture": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_onfire": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaCharacter:cid_035_athena_commando_m_medieval": 1,
+ "AthenaBackpack:bid_004_blackknight": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:emoji_lol": 1
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_wave": 1
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason02salt": 1
+ },
+ {},
+ {},
+ {
+ "AthenaDance:emoji_hearthands": 1
+ },
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {
+ "AthenaDance:emoji_bullseye": 1
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_ridethepony_athena": 1
+ },
+ {},
+ {},
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason02crosshair": 1
+ },
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason02shark": 1
+ },
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_002_medieval": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season3.json b/responses/Athena/BattlePass/Season3.json
new file mode 100644
index 0000000..1e88ea1
--- /dev/null
+++ b/responses/Athena/BattlePass/Season3.json
@@ -0,0 +1,442 @@
+{
+ "battleBundleOfferId": "70487F4C4673CC98F2FEBEBB26505F44",
+ "battlePassOfferId": "2331626809474871A3A44C47C1D8742E",
+ "tierOfferId": "E2D7975EFEC54A45900D8D9A6D9D273C",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_080_athena_commando_m_space": 1,
+ "ChallengeBundleSchedule:season3_challenge_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason03egg": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_wow": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_005_suppressedpistol": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_027_scavenger": 1
+ },
+ {
+ "AthenaDance:emoji_thief": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason03bee": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_003_pickaxes": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03worm": 1
+ },
+ {
+ "AthenaDance:emoji_heartbroken": 1
+ },
+ {
+ "AthenaGlider:glider_id_015_brite": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03paw": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_boombox": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_002_rainbow": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03sun": 1
+ },
+ {
+ "AthenaDance:emoji_rocketride": 1
+ },
+ {
+ "AthenaCharacter:cid_082_athena_commando_m_scavenger": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03falcon": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason03chick": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_004_tacticalshotgun": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03dogcollar": 1
+ },
+ {
+ "AthenaDance:emoji_bush": 1
+ },
+ {
+ "AthenaDance:eid_takethel": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason03crescentmoon": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_004_bluestreak": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_awww": 1
+ },
+ {
+ "AthenaGlider:glider_id_016_tactical": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03crab": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason03tophat": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_001_brite": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_thumbsup": 1
+ },
+ {
+ "AthenaBackpack:bid_024_space": 1
+ },
+ {
+ "AthenaDance:emoji_thumbsdown": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_001_disco": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_1hp": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason03wing": 1
+ },
+ {
+ "AthenaCharacter:cid_081_athena_commando_f_space": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_hotdawg": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_006_minigun": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason03snake": 1
+ },
+ {
+ "AthenaDance:eid_bestmates": 1
+ },
+ {
+ "AthenaDance:emoji_hoarder": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason03teddybear": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_005_bubbles": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaCharacter:cid_088_athena_commando_m_spaceblack": 1
+ },
+ {
+ "AthenaBackpack:bid_028_spaceblack": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03happycloud": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_200iqplay": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_002_raptor": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason03wolf": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_029_assassin": 1
+ },
+ {
+ "AthenaDance:emoji_flamingrage": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason03whale": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_003_fire": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_kaboom": 1
+ },
+ {
+ "AthenaCharacter:cid_083_athena_commando_f_tactical": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason03lightning": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_majestic": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_007_tacticalcommando": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason03flail": 1
+ },
+ {
+ "AthenaDance:eid_robot": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_number1": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "HomebaseBannerIcon:brseason03dinosaurskull": 1
+ },
+ {
+ "AthenaCharacter:cid_084_athena_commando_m_assassin": 1,
+ "ChallengeBundleSchedule:season3_tier_100_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "ChallengeBundleSchedule:season3_tier_2_schedule": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason03donut": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_salute": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_inlove": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_025_tactical": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_goodgame": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_008_keyart": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason03eagle": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_positivity": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_028_space": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason03shootingstar": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_aplus": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season4.json b/responses/Athena/BattlePass/Season4.json
new file mode 100644
index 0000000..a5e7226
--- /dev/null
+++ b/responses/Athena/BattlePass/Season4.json
@@ -0,0 +1,444 @@
+{
+ "battleBundleOfferId": "884CE68998C44AC58D85C5A9883DE1A6",
+ "battlePassOfferId": "76EA7FE9787744B09B79FF3FC5E39D0C",
+ "tierOfferId": "E9527AF46F4B4A9CAE98D91F2AA53CB6",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_115_athena_commando_m_carbideblue": 1,
+ "AthenaCharacter:cid_125_athena_commando_m_tacticalwoodland": 1,
+ "ChallengeBundleSchedule:season4_challenge_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "AthenaDance:spid_002_xmark": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_dynamite": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_017_carbide": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_045_valor": 1
+ },
+ {
+ "AthenaDance:emoji_camera": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:spid_006_rainbow": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_018_rex": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04heroemblem": 1
+ },
+ {
+ "AthenaDance:spid_007_smilegg": 1
+ },
+ {
+ "AthenaGlider:glider_id_035_candy": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04spraycan": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_zzz": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_010_retroscifi": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04dogbowl": 1
+ },
+ {
+ "AthenaDance:spid_008_hearts": 1
+ },
+ {
+ "AthenaCharacter:cid_120_athena_commando_f_graffiti": 1
+ },
+ {
+ "AthenaDance:emoji_babyseal": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason04duck": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_019_tacticaljungle": 1
+ },
+ {
+ "AthenaDance:spid_004_chalkoutline": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:eid_popcorn": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04fence": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:spid_019_circle": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_012_spraypaint": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:spid_011_looted": 1
+ },
+ {
+ "AthenaGlider:glider_id_033_valor": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04only90skids": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:spid_003_arrow": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_021_leviathan": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_plotting": 1
+ },
+ {
+ "AthenaCharacter:cid_119_athena_commando_f_candy": 1
+ },
+ {
+ "AthenaDance:spid_012_royalstroll": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_008_lightning": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_chicken": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:spid_005_abstract": 1
+ },
+ {
+ "AthenaBackpack:bid_047_candy": 1
+ },
+ {
+ "AthenaDance:spid_021_doit": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason04pencil": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_024_graffiti": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:spid_020_threellamas": 1
+ },
+ {
+ "AthenaDance:eid_hype": 1
+ },
+ {
+ "AthenaDance:emoji_crabby": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:spid_009_window": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_009_hearts": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04blitz": 1
+ },
+ {
+ "AthenaDance:spid_013_trapwarning": 1
+ },
+ {
+ "AthenaCharacter:cid_118_athena_commando_f_valor": 1
+ },
+ {
+ "AthenaDance:spid_014_raven": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_rabid": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_023_candy": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04filmcamera": 1
+ },
+ {
+ "AthenaDance:spid_015_lips": 1
+ },
+ {
+ "AthenaGlider:glider_id_034_carbideblue": 1
+ },
+ {
+ "AthenaDance:spid_016_ponytail": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason04bow": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_013_shootingstar": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_022_britegunner": 1
+ },
+ {
+ "AthenaDance:spid_017_splattershot": 1
+ },
+ {
+ "AthenaCharacter:cid_117_athena_commando_m_tacticaljungle": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04seaserpent": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_banana": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_025_raven": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason04villainemblem": 1
+ },
+ {
+ "AthenaDance:spid_010_tunnel": 1
+ },
+ {
+ "AthenaDance:eid_groovejam": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_celebrate": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:spid_018_shadowops": 1
+ },
+ {
+ "AthenaCharacter:cid_116_athena_commando_m_carbideblack": 1,
+ "ChallengeBundleSchedule:season4_progressiveb_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "ChallengeBundleSchedule:season4_starterchallenge_schedule": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason04goo": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_045_tacticaljungle": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_angel": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_teamwork": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_goodvibes": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_020_supplydrop": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason04chains": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_rainbow": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_046_candy": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason04teef": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_kungfusalute": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season5.json b/responses/Athena/BattlePass/Season5.json
new file mode 100644
index 0000000..3bf510b
--- /dev/null
+++ b/responses/Athena/BattlePass/Season5.json
@@ -0,0 +1,453 @@
+{
+ "battleBundleOfferId": "FF77356F424644529049280AFC8A795E",
+ "battlePassOfferId": "D51A2F28AAF843C0B208F14197FBFE91",
+ "tierOfferId": "4B2E310BC1AE40B292A16D5AAD747E0A",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_163_athena_commando_f_viking": 1,
+ "AthenaCharacter:cid_161_athena_commando_m_drift": 1,
+ "ChallengeBundleSchedule:season5_paid_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1,
+ "ChallengeBundleSchedule:season5_progressivea_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason05tictactoe": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_go": 1
+ },
+ {
+ "AthenaDance:spid_038_sushi": 1
+ },
+ {
+ "AthenaGlider:glider_id_050_streetracercobra": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05shoppingcart": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_001_basketball": 1
+ },
+ {
+ "AthenaDance:spid_024_boogie": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_046_vikingpattern": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05dolphin": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_073_balloon": 1
+ },
+ {
+ "AthenaDance:emoji_poolparty": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_034_abstrakt": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_017_lanterns": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05kitsune": 1
+ },
+ {
+ "AthenaDance:spid_036_strawberrypaws": 1
+ },
+ {
+ "AthenaCharacter:cid_162_athena_commando_f_streetracer": 1
+ },
+ {
+ "AthenaDance:emoji_prickly": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_002_golfball": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_045_vikingfemale": 1
+ },
+ {
+ "AthenaDance:spid_030_luchador": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:eid_youreawesome": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05flowyhat": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_040_lifeguard": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_018_runes": 1
+ },
+ {
+ "AthenaDance:emoji_stop": 1
+ },
+ {
+ "AthenaDance:spid_034_goodvibes": 1
+ },
+ {
+ "AthenaGlider:glider_id_048_viking": 1
+ },
+ {
+ "AthenaDance:spid_028_durrr": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_003_beachball": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_039_jailbirds": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_embarrassed": 1
+ },
+ {
+ "AthenaCharacter:cid_166_athena_commando_f_lifeguard": 1
+ },
+ {
+ "AthenaDance:spid_033_fakedoor": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason05golf": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_alarm": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:spid_037_drift": 1
+ },
+ {
+ "AthenaBackpack:bid_071_vikingfemale": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05icecreamtruck": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_005_golfballelite": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_044_flytrap": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason05palms": 1
+ },
+ {
+ "AthenaDance:eid_swipeit": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_042_omen": 1
+ },
+ {
+ "AthenaDance:emoji_tattered": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_016_ice": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05spiderbadass": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaCharacter:cid_167_athena_commando_m_tacticalbadass": 1
+ },
+ {
+ "AthenaDance:spid_035_nordicllama": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_006_beachballelite": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05racingcheckers": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_043_redknight": 1
+ },
+ {
+ "AthenaDance:emoji_tasty": 1
+ },
+ {
+ "AthenaGlider:glider_id_049_lifeguard": 1
+ },
+ {
+ "AthenaDance:spid_032_potatoaim": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason05scubagear": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_007_tp": 1
+ },
+ {
+ "AthenaDance:emoji_badapple": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_035_bandolier": 1
+ },
+ {
+ "AthenaCharacter:cid_173_athena_commando_f_starfishuniform": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason05cobra": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_004_basketballelite": 1
+ },
+ {
+ "AthenaDance:emoji_stinky": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_037_tomatohead": 1
+ },
+ {
+ "AthenaDance:spid_039_yummy": 1
+ },
+ {
+ "AthenaDance:eid_hiphops5": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_potofgold": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:spid_026_darkviking": 1
+ },
+ {
+ "AthenaCharacter:cid_165_athena_commando_m_darkviking": 1,
+ "ChallengeBundleSchedule:season5_progressiveb_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_025_crazycastle": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_036_drift": 1
+ },
+ {},
+ {
+ "AthenaDance:eid_stagebow": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_rockon": 1
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason05vikingship": 1
+ },
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_075_tacticalbadass": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_055_streetracerblack": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_031_pixels": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_071_streetracer": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_074_lifeguardfemale": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason05dinosaur": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_calculated": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_038_highexplosives": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_011_glitch": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_trap": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_029_lasershark": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season6.json b/responses/Athena/BattlePass/Season6.json
new file mode 100644
index 0000000..660d1d4
--- /dev/null
+++ b/responses/Athena/BattlePass/Season6.json
@@ -0,0 +1,453 @@
+{
+ "battleBundleOfferId": "19D4A5ACC90B4CDF88766A0C8A6D13FB",
+ "battlePassOfferId": "9C8D0323775A4F59A1D4283E3FDB356C",
+ "tierOfferId": "A6FE59C497B844068E1B5D84396F19BA",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_233_athena_commando_m_fortnitedj": 1,
+ "AthenaCharacter:cid_237_athena_commando_f_cowgirl": 1,
+ "ChallengeBundleSchedule:season6_paid_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1,
+ "ChallengeBundleSchedule:season6_progressivea_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason06pickaxebr": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_bang": 1
+ },
+ {
+ "AthenaDance:spid_058_cowgirl": 1
+ },
+ {
+ "AthenaGlider:glider_id_079_redriding": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06campfire": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaLoadingScreen:lsid_052_emoticoncollage": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_001_dog": 1
+ },
+ {
+ "AthenaMusicPack:musicpack_001_floss": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06phantom": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_103_fortnitedj": 1
+ },
+ {
+ "AthenaDance:emoji_witchsbrew": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_024_dieselsmoke": 1
+ },
+ {
+ "AthenaDance:spid_050_fullmoon": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_057_bunnies": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06zigzag": 1
+ },
+ {
+ "AthenaCharacter:cid_234_athena_commando_m_llamarider": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaLoadingScreen:lsid_058_djconcept": 1
+ },
+ {
+ "AthenaDance:emoji_plunger": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_007_tomato": 1
+ },
+ {
+ "AthenaBackpack:petcarrier_002_chameleon": 1
+ },
+ {
+ "AthenaDance:spid_056_manholecover": 1
+ },
+ {
+ "AthenaDance:eid_runningman": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06dice": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_055_valkyrie": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_023_fireflies": 1
+ },
+ {
+ "AthenaDance:spid_060_dayofdead": 1
+ },
+ {
+ "AthenaDance:emoji_camper": 1
+ },
+ {
+ "AthenaGlider:glider_id_080_prairiepusher": 1
+ },
+ {
+ "AthenaDance:spid_059_dj": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_003_dragon": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_056_fate": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_ghost": 1
+ },
+ {
+ "AthenaCharacter:cid_231_athena_commando_f_redriding": 1
+ },
+ {
+ "AthenaDance:spid_055_wallcrawler": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason06rift": 1
+ },
+ {
+ "AthenaDance:emoji_blackcat": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_002_spooky": 1
+ },
+ {
+ "AthenaDance:spid_049_cactusmaze": 1
+ },
+ {
+ "AthenaBackpack:bid_119_vampirefemale": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06bat": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_033_petcarrier_dog_styleb": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_050_tomatotemple": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason06carbonfiber": 1
+ },
+ {
+ "AthenaDance:eid_octopus": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_054_scuba": 1
+ },
+ {
+ "AthenaDance:emoji_meet": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_026_bats": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06polkadots": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaCharacter:cid_227_athena_commando_f_vampire": 1
+ },
+ {
+ "AthenaDance:spid_047_gremlins": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "CosmeticVariantToken:vtid_035_petcarrier_dragon_styleb": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_008_tomatoelite": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason06housefly": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_059_vampire": 1
+ },
+ {
+ "AthenaGlider:glider_id_078_vampire": 1
+ },
+ {
+ "AthenaDance:spid_045_oni": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason06skulltrooper": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_022_greensmoke": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_051_ravage": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaCharacter:cid_232_athena_commando_f_halloweentomato": 1
+ },
+ {
+ "AthenaBackpack:bid_122_halloweentomato": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:spid_046_pixelraven": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_034_petcarrier_dog_stylec": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_003_ogremix": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_061_werewolf": 1
+ },
+ {
+ "AthenaDance:emoji_clown": 1
+ },
+ {
+ "AthenaDance:eid_flamenco": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_036_petcarrier_dragon_stylec": 1
+ },
+ {
+ "AthenaDance:spid_062_werewolf": 1
+ },
+ {
+ "AthenaCharacter:cid_230_athena_commando_m_werewolf": 1,
+ "ChallengeBundleSchedule:season6_progressiveb_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_061_spiderweb": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_060_cowgirl": 1
+ },
+ {},
+ {
+ "AthenaDance:eid_regalwave": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_battlebus": 1
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason06floatingisland": 1
+ },
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_121_redriding": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_081_cowboygunslinger": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_053_ggpotion": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_102_redriding": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_123_fortnitedj": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason06handhorns": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_needtogo": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_053_supplyllama": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_025_jackolantern": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_tp": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_051_gameover": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season7.json b/responses/Athena/BattlePass/Season7.json
new file mode 100644
index 0000000..bb9750e
--- /dev/null
+++ b/responses/Athena/BattlePass/Season7.json
@@ -0,0 +1,454 @@
+{
+ "battleBundleOfferId": "347A90158C64424980E8C1B3DC088F37",
+ "battlePassOfferId": "3A3C99847F144AF3A030DB5690477F5A",
+ "tierOfferId": "64A3020B098841A7805EE257D68C554F",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 10,
+ "AthenaCharacter:cid_287_athena_commando_m_arcticsniper": 1,
+ "AthenaCharacter:cid_286_athena_commando_f_neoncat": 1,
+ "ChallengeBundleSchedule:season7_paid_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1,
+ "ChallengeBundleSchedule:season7_progressivea_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasontierboost": 5
+ },
+ {
+ "HomebaseBannerIcon:brseason07wreath": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_001_arcticcamo": 1
+ },
+ {
+ "AthenaDance:emoji_mistletoe": 1
+ },
+ {
+ "AthenaBackpack:bid_160_tacticalsantamale": 1
+ },
+ {
+ "AthenaDance:spid_068_eviltree": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_002_holidaygreen": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_080_gingerbread": 1
+ },
+ {
+ "AthenaMusicPack:musicpack_004_holiday": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07merryface": 1
+ },
+ {
+ "AthenaGlider:glider_id_101_tacticalsanta": 1
+ },
+ {
+ "AthenaDance:emoji_ggwreath": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_004_hamster": 1
+ },
+ {
+ "AthenaDance:spid_069_bagofcoal": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_032_stringlights": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_075_tacticalsanta": 1
+ },
+ {
+ "AthenaCharacter:cid_279_athena_commando_m_tacticalsanta": 1,
+ "ChallengeBundleSchedule:season7_sgtwinter_schedule": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:emoji_gingerbreadhappy": 1
+ },
+ {
+ "AthenaItemWrap:wrap_003_anodizedred": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_010_icepuck": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07tartan": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_083_crackshot": 1
+ },
+ {
+ "AthenaDance:eid_wristflick": 1
+ },
+ {
+ "AthenaDance:emoji_gingerbreadmad": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_005_wolf": 1
+ },
+ {
+ "AthenaDance:spid_071_neoncat": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_037_glyphs": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07iceninjastar": 1
+ },
+ {
+ "AthenaGlider:glider_id_104_durrburger": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_081_tenderdefender": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_004_durrburgerpjs": 1
+ },
+ {
+ "AthenaDance:spid_072_mothhead": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_mittens": 1
+ },
+ {
+ "AthenaCharacter:cid_281_athena_commando_f_snowboard": 1
+ },
+ {
+ "AthenaDance:spid_073_porthole": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brseason07meat": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_054_petcarrier_hamster_styleb": 1
+ },
+ {
+ "AthenaDance:emoji_huskwow": 1
+ },
+ {
+ "AthenaDance:spid_074_cuddlehula": 1
+ },
+ {
+ "AthenaBackpack:bid_162_yetimale": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07trash": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_036_fiberoptics": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_006_ice": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brseason07sun": 1
+ },
+ {
+ "AthenaDance:eid_getfunky": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_076_medics": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "CosmeticVariantToken:vtid_056_petcarrier_wolf_styleb": 1
+ },
+ {
+ "AthenaDance:emoji_penguin": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:spid_081_bananas": 1
+ },
+ {
+ "AthenaCharacter:cid_278_athena_commando_m_yeti": 1
+ },
+ {
+ "AthenaDance:spid_076_yeti": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaItemWrap:wrap_005_carbonfiber": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_009_burgerelite": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07shackle": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_074_darkbomber": 1
+ },
+ {
+ "AthenaGlider:glider_id_100_yeti": 1
+ },
+ {
+ "AthenaDance:spid_077_baited": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_055_petcarrier_hamster_stylec": 1
+ },
+ {
+ "HomebaseBannerIcon:brseason07octopus": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_034_swirlysmoke": 1
+ },
+ {
+ "AthenaDance:emoji_durrrburger": 1
+ },
+ {
+ "AthenaCharacter:cid_245_athena_commando_f_durrburgerpjs": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 5
+ },
+ {
+ "AthenaDance:spid_078_pixelramirez": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_078_skulltrooper": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_006_twist": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_057_petcarrier_wolf_stylec": 1
+ },
+ {
+ "AthenaDance:emoji_fkey": 1
+ },
+ {
+ "AthenaDance:eid_hiphops7": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaLoadingScreen:lsid_073_dustydepot": 1
+ },
+ {
+ "AthenaDance:spid_079_catgirl": 1
+ },
+ {
+ "AthenaCharacter:cid_288_athena_commando_m_iceking": 1,
+ "ChallengeBundleSchedule:season7_iceking_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_067_ggsnowman": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_079_plane": 1
+ },
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_033_snowflakes": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_iceheart": 1
+ },
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason07plane": 1
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_golfclap": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_161_snowboardfemale": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_070_hohoho": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_105_snowboard": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_126_yeti": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brseason07infinityblade": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_micdrop": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_082_neoncat": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaMusicPack:musicpack_005_disco": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_hotchocolate": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_075_meltingsnowman": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season8.json b/responses/Athena/BattlePass/Season8.json
new file mode 100644
index 0000000..a7ea587
--- /dev/null
+++ b/responses/Athena/BattlePass/Season8.json
@@ -0,0 +1,453 @@
+{
+ "battleBundleOfferId": "18D9DA48000A40BFAEBAC55A99C55221",
+ "battlePassOfferId": "77F31B7F83FB422195DA60CDE683671D",
+ "tierOfferId": "E07E41D52D4A425F8DC6592496B75301",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 60,
+ "AthenaCharacter:cid_347_athena_commando_m_pirateprogressive": 1,
+ "AthenaCharacter:cid_346_athena_commando_m_dragonninja": 1,
+ "ChallengeBundleSchedule:season8_paid_schedule": 1,
+ "ChallengeBundleSchedule:season8_cumulative_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasonxpboost": 30
+ },
+ {
+ "HomebaseBannerIcon:brs8pineapple": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_020_tropicalcamo": 1
+ },
+ {
+ "AthenaDance:spid_091_dragonninja": 1
+ },
+ {
+ "AthenaBackpack:bid_218_medusa": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8jellyfish": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_106_treasuremap": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_007_pirate": 1
+ },
+ {
+ "AthenaDance:emoji_palmtree": 1
+ },
+ {
+ "AthenaDance:spid_092_bananapeel": 1
+ },
+ {
+ "AthenaGlider:glider_id_124_medusa": 1
+ },
+ {
+ "AthenaDance:emoji_octopirate": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_007_woodsy": 1
+ },
+ {
+ "AthenaDance:spid_103_mermaid": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_046_clover": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_100_stpattyday": 1
+ },
+ {
+ "AthenaCharacter:cid_348_athena_commando_f_medusa": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_4leafclover": 1
+ },
+ {
+ "AthenaDance:toy_014_bouncyball": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_021_pirate": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8ziggurat": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_101_icequeen": 1
+ },
+ {
+ "AthenaDance:eid_conga": 1
+ },
+ {
+ "AthenaDance:emoji_spicy": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_129_petcarrier_woodsy_styleb": 1
+ },
+ {
+ "AthenaDance:spid_099_key": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_048_spectral": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8coconuts": 1
+ },
+ {
+ "AthenaGlider:glider_id_123_masterkey": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_102_triceraops": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_023_aztec": 1
+ },
+ {
+ "AthenaDance:spid_094_wootdog": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "AthenaDance:emoji_skullbrite": 1
+ },
+ {
+ "AthenaCharacter:cid_349_athena_commando_m_banana": 1
+ },
+ {
+ "AthenaDance:spid_095_loveranger": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "HomebaseBannerIcon:brs8foxhead": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_008_fox": 1
+ },
+ {
+ "AthenaDance:emoji_aztecmask": 1
+ },
+ {
+ "AthenaDance:spid_096_fallenloveranger": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_165_masterkey": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8roach": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_044_lava": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_017_dragonninja": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brs8whaletail": 1
+ },
+ {
+ "AthenaDance:eid_banana": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_103_spraycollage": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "CosmeticVariantToken:vtid_131_petcarrier_fox_styleb": 1
+ },
+ {
+ "AthenaDance:spid_101_britebomber": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:emoji_200m": 1
+ },
+ {
+ "AthenaCharacter:cid_351_athena_commando_f_fireelf": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8tigerstripes": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_097_powerchord": 1
+ },
+ {
+ "AthenaDance:spid_097_fireelf": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_019_tiger": 1
+ },
+ {
+ "AthenaDance:emoji_cuddle": 1
+ },
+ {
+ "AthenaGlider:glider_id_128_bootybuoy": 1
+ },
+ {
+ "AthenaDance:spid_100_salty": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_130_petcarrier_woodsy_stylec": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_104_masterkey": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_047_ammobelt": 1
+ },
+ {
+ "HomebaseBannerIcon:brs8crystalllama": 1
+ },
+ {
+ "AthenaCharacter:cid_350_athena_commando_m_masterkey": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_angryvolcano": 1
+ },
+ {
+ "AthenaDance:spid_098_shiny": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_009_starpower": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_132_petcarrier_fox_stylec": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_105_blackwidow": 1
+ },
+ {
+ "AthenaDance:eid_hulahoop": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_022_gemstone": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_128_masterkey_styleb": 1
+ },
+ {
+ "AthenaCharacter:cid_352_athena_commando_f_shiny": 1,
+ "ChallengeBundleSchedule:season8_shiny_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_102_ggaztec": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_099_piratetheme": 1
+ },
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_045_undertow": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_sun": 1
+ },
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_happywave": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs8jollyroger": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaBackpack:bid_215_masterkey": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_090_dancefloorbox": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_129_fireelf": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_167_medusa": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs8treasurechest": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_youboreme": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_098_dragonninja": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaMusicPack:musicpack_008_coral": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_ggjellyfish": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_093_theend": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/Athena/BattlePass/Season9.json b/responses/Athena/BattlePass/Season9.json
new file mode 100644
index 0000000..7d557c1
--- /dev/null
+++ b/responses/Athena/BattlePass/Season9.json
@@ -0,0 +1,458 @@
+{
+ "battleBundleOfferId": "C7190ACA4E5E228A94CA3CB9C3FC7AE9",
+ "battlePassOfferId": "73E6EE6F4526EF97450D1592C3DB0EF5",
+ "tierOfferId": "33E185A84ED7B64F2856E69AADFD092C",
+ "paidRewards": [
+ {
+ "Token:athenaseasonxpboost": 50,
+ "Token:athenaseasonfriendxpboost": 60,
+ "AthenaCharacter:cid_408_athena_commando_f_strawberrypilot": 1,
+ "AthenaCharacter:cid_403_athena_commando_m_rooster": 1,
+ "ChallengeBundleSchedule:season9_paid_schedule": 1,
+ "ChallengeBundleSchedule:season9_cumulative_schedule": 1,
+ "ChallengeBundleSchedule:season9_fortbyte_schedule": 1,
+ "Token:athenaseasonmergedxpboosts": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10,
+ "Token:athenanextseasonxpboost": 30
+ },
+ {
+ "AthenaDance:emoji_tomatohead": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_060_rooster": 1
+ },
+ {
+ "AthenaDance:spid_109_strawberrypilot": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_211_bunkerman_1h": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9chair": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_126_floorislava": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_015_goodvibes": 1
+ },
+ {
+ "AthenaDance:emoji_rexhead": 1
+ },
+ {
+ "AthenaDance:spid_118_chevronleft": 1
+ },
+ {
+ "AthenaGlider:glider_id_144_strawberrypilot": 1
+ },
+ {
+ "AthenaDance:emoji_drifthead": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_057_banana": 1
+ },
+ {
+ "AthenaDance:spid_115_pixeljonesy": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9bone": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_130_strawberrypilot": 1
+ },
+ {
+ "AthenaCharacter:cid_409_athena_commando_m_bunkerman": 1,
+ "ChallengeBundleSchedule:season9_bunkerman_schedule": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_silentmaven": 1
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_054_kpopglow": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaBackpack:petcarrier_010_robokitty": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9x": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_121_vikings": 1
+ },
+ {
+ "AthenaDance:eid_chickenmoves": 1
+ },
+ {
+ "AthenaDance:emoji_loveranger": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_017_flyingdisc": 1
+ },
+ {
+ "AthenaDance:spid_119_chevronright": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_127_unicornpickaxe": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9bacon": 1
+ },
+ {
+ "AthenaGlider:glider_id_146_masako": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:spid_108_fate": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_062_neotag": 1
+ },
+ {
+ "AthenaDance:emoji_screamingwukong": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "CosmeticVariantToken:vtid_199_petcarrier_robokitty_styleb": 1
+ },
+ {
+ "AthenaCharacter:cid_404_athena_commando_f_bountyhunter": 1,
+ "ChallengeBundleSchedule:season9_bountyhunter_schedule": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_055_bananas": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9roar": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "HomebaseBannerIcon:brs9violin": 1
+ },
+ {
+ "AthenaDance:emoji_durrburgerhead": 1
+ },
+ {
+ "AthenaDance:spid_117_nosymbol": 1
+ },
+ {
+ "AthenaPickaxe:pickaxe_id_205_strawberrypilot": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaDance:spid_113_nananana": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_061_purplesplatter": 1
+ },
+ {
+ "CosmeticVariantToken:vtid_201_petcarrier_robokitty_styled": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brs9cone": 1
+ },
+ {
+ "AthenaDance:eid_signspinner": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaLoadingScreen:lsid_125_lavalegends": 1
+ },
+ {
+ "AthenaDance:spid_111_ark": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaDance:toy_018_fancyflyingdisc": 1
+ },
+ {
+ "AccountResource:athenaseasonalxp": 1000
+ },
+ {
+ "HomebaseBannerIcon:brs9target": 1
+ },
+ {
+ "AthenaCharacter:cid_406_athena_commando_m_stormtracker": 1,
+ "ChallengeBundleSchedule:season9_stormtracker_schedule": 1
+ },
+ {
+ "AthenaDance:emoji_skepticalfishstix": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "CosmeticVariantToken:vtid_200_petcarrier_robokitty_stylec": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_129_stormtracker": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_056_stormtracker": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9blast": 1
+ },
+ {
+ "AthenaGlider:glider_id_143_battlesuit": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_123_inferno": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaDance:emoji_whiteflag": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaItemWrap:wrap_058_storm": 1
+ },
+ {
+ "AthenaDance:spid_116_robot": 1
+ },
+ {
+ "HomebaseBannerIcon:brs9spade": 1
+ },
+ {
+ "AthenaCharacter:cid_405_athena_commando_f_masako": 1,
+ "ChallengeBundleSchedule:season9_masako_schedule": 1
+ },
+ {
+ "Token:athenaseasonfriendxpboost": 10
+ },
+ {
+ "AthenaSkyDiveContrail:trails_id_057_battlesuit": 1
+ },
+ {
+ "AthenaDance:spid_110_rooster": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "AthenaMusicPack:musicpack_014_s9cine": 1
+ },
+ {
+ "AthenaDance:emoji_supdood": 1
+ },
+ {
+ "AthenaLoadingScreen:lsid_128_auroraglow": 1
+ },
+ {
+ "AthenaDance:eid_gabbyhiphop_01": 1
+ },
+ {
+ "Token:athenaseasonxpboost": 10
+ },
+ {
+ "AthenaItemWrap:wrap_059_battlesuit": 1
+ },
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {
+ "CosmeticVariantToken:vtid_202_rooster_styleb": 1
+ },
+ {
+ "AthenaCharacter:cid_407_athena_commando_m_battlesuit": 1,
+ "ChallengeBundleSchedule:season9_battlesuit_schedule": 1
+ }
+ ],
+ "freeRewards": [
+ {},
+ {
+ "AthenaDance:spid_112_rockpeople": 1
+ },
+ {},
+ {
+ "AthenaLoadingScreen:lsid_122_aztec": 1
+ },
+ {},
+ {
+ "AthenaSkyDiveContrail:trails_id_051_neontubes": 1
+ },
+ {},
+ {
+ "AthenaDance:emoji_cuddleteamhead": 1
+ },
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {
+ "AthenaDance:eid_yayexcited": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs9plane": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaGlider:glider_id_032_tacticalwoodland": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_121_sunbird": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaItemWrap:wrap_046_demon": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "Currency:mtxgiveaway": 100
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaPickaxe:pickaxe_id_210_bunkerman": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "HomebaseBannerIcon:brs9paintbrush": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:eid_sadtrombone": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaLoadingScreen:lsid_124_airroyale": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaMusicPack:musicpack_013_robotrack": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:emoji_skulltrooper": 1
+ },
+ {},
+ {},
+ {},
+ {
+ "AthenaDance:spid_114_bush": 1
+ },
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {},
+ {}
+ ]
+}
\ No newline at end of file
diff --git a/responses/catalog.json b/responses/catalog.json
new file mode 100644
index 0000000..7e086e6
--- /dev/null
+++ b/responses/catalog.json
@@ -0,0 +1,2531 @@
+{
+ "refreshIntervalHrs": 24,
+ "dailyPurchaseHrs": 24,
+ "expiration": "9999-12-31T00:00:00.000Z",
+ "storefronts": [
+ {
+ "name": "BRDailyStorefront",
+ "catalogEntries": []
+ },
+ {
+ "name": "BRWeeklyStorefront",
+ "catalogEntries": []
+ },
+ {
+ "name": "BRSeasonStorefront",
+ "catalogEntries": [
+ {
+ "devName": "[VIRTUAL]1 x Aerial Assault One for 500 MtxCurrency",
+ "offerId": "v2:/km5i4yvqxd8sqav1r4tk4qlsjolqkd7o5g25p6elcbqwtlsulqnu6hv84ug58i9c",
+ "fulfillmentIds": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "categories": [
+ "Panel 1"
+ ],
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 500,
+ "finalPrice": 500,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 500
+ }
+ ],
+ "meta": {},
+ "matchFilter": "",
+ "filterWeight": 0,
+ "appStoreId": [],
+ "requirements": [
+ {
+ "requirementType": "DenyOnItemOwnership",
+ "requiredId": "AthenaGlider:Glider_ID_001",
+ "minQuantity": 1
+ }
+ ],
+ "offerType": "StaticPrice",
+ "giftInfo": {},
+ "refundable": true,
+ "metaInfo": [],
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_GliderMiG.DA_Featured_GliderMiG",
+ "itemGrants": [
+ {
+ "templateId": "AthenaGlider:Glider_ID_001",
+ "quantity": 1
+ }
+ ],
+ "sortPriority": -1,
+ "catalogGroupPriority": 0
+ },
+ {
+ "devName": "[VIRTUAL]1 x Aerial Assault Trooper for 1200 MtxCurrency",
+ "offerId": "v2:/6icfozpr9g7o1gxperhc5rl8dty1o4rzlszmiky0iafc012w5gcdczvsvbvqw8fv",
+ "fulfillmentIds": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "categories": [
+ "Panel 2"
+ ],
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 1200,
+ "finalPrice": 1200,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 1200
+ }
+ ],
+ "meta": {},
+ "matchFilter": "",
+ "filterWeight": 0,
+ "appStoreId": [],
+ "requirements": [
+ {
+ "requirementType": "DenyOnItemOwnership",
+ "requiredId": "AthenaCharacter:CID_017_Athena_Commando_M",
+ "minQuantity": 1
+ }
+ ],
+ "offerType": "StaticPrice",
+ "giftInfo": {},
+ "refundable": true,
+ "metaInfo": [],
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_SMaleHID017.DA_Featured_SMaleHID017",
+ "itemGrants": [
+ {
+ "templateId": "AthenaCharacter:CID_017_Athena_Commando_M",
+ "quantity": 1
+ }
+ ],
+ "sortPriority": -1,
+ "catalogGroupPriority": 0
+ },
+ {
+ "devName": "[VIRTUAL]1 x Renegade Raider for 1200 MtxCurrency",
+ "offerId": "v2:/erpaf2rm87d5xgdtqpgx3qyqwrjmn5gsog0cu792enrxh9k1jckzjvgvn6qu7fq7",
+ "fulfillmentIds": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "categories": [
+ "Panel 3"
+ ],
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 1200,
+ "finalPrice": 1200,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 1200
+ }
+ ],
+ "meta": {},
+ "matchFilter": "",
+ "filterWeight": 0,
+ "appStoreId": [],
+ "requirements": [
+ {
+ "requirementType": "DenyOnItemOwnership",
+ "requiredId": "AthenaCharacter:CID_028_Athena_Commando_F",
+ "minQuantity": 1
+ }
+ ],
+ "offerType": "StaticPrice",
+ "giftInfo": {},
+ "refundable": true,
+ "metaInfo": [],
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_SFemaleHID028.DA_Featured_SFemaleHID028",
+ "itemGrants": [
+ {
+ "templateId": "AthenaCharacter:CID_028_Athena_Commando_F",
+ "quantity": 1
+ }
+ ],
+ "sortPriority": -1,
+ "catalogGroupPriority": 0
+ },
+ {
+ "devName": "[VIRTUAL]1 x Raider's Revenge for 1500 MtxCurrency4",
+ "offerId": "v2:/w6aq7n8ma7gz342b4wus42hmkqz8suurbdvjo51ug6on7j9rme577eax92rlt4g9",
+ "fulfillmentIds": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "categories": [
+ "Panel 4"
+ ],
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 1500,
+ "finalPrice": 1500,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 1500
+ }
+ ],
+ "meta": {},
+ "matchFilter": "",
+ "filterWeight": 0,
+ "appStoreId": [],
+ "requirements": [
+ {
+ "requirementType": "DenyOnItemOwnership",
+ "requiredId": "AthenaPickaxe:Pickaxe_Lockjaw",
+ "minQuantity": 1
+ }
+ ],
+ "offerType": "StaticPrice",
+ "giftInfo": {},
+ "refundable": true,
+ "metaInfo": [],
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_Featured_PickaxeLockjaw.DA_Featured_PickaxeLockjaw",
+ "itemGrants": [
+ {
+ "templateId": "AthenaPickaxe:Pickaxe_Lockjaw",
+ "quantity": 1
+ }
+ ],
+ "sortPriority": -1,
+ "catalogGroupPriority": 0
+ }
+ ]
+ },
+ {
+ "name": "BRSeason2",
+ "catalogEntries": [
+ {
+ "offerId": "C3BA14F04F4D56FC1D490F8011B56553",
+ "devName": "BR.Season2.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 1800,
+ "finalPrice": 950,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64C",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Saison 2: 14. Dezember - 20. Februar\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 2.000 V-Bucks!\r\n • Blauer Knappe (Outfit)\r\n • +50 % Saison-Match-EP\r\n • +10 % Saison-Match-EP für Freunde\r\n • Zusätzliche tägliche Battle-Pass-Herausforderung\r\n\r\nSpiele weiter und levele deinen Battle Pass auf, um über 65 Belohnungen im Wert von 12.000 V-Bucks freizuschalten (im Normalfall werden 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Level kaufen!\r\n • Schwarzer Ritter und 2 weitere Outfits\r\n • 3 Erntewerkzeuge\r\n • 2 Hängegleiter\r\n • 1.000 V-Bucks\r\n • +60 % Saison-Match-EP\r\n • +20 % Saison-Match-EP für Freunde\r\n • 2 animierte Emotes\r\n • 13 2D-Emoticons\r\n • und vieles mehr!",
+ "ru": "Второй сезон: 14 декабря — 20 февраля\r\n\r\nСразу же получите предметы стоимостью более 2000 В-баксов!\r\n • Экипировка Синего оруженосца;\r\n • +50% к опыту за матчи сезона;\r\n • +10% к опыту друзей за матчи сезона;\r\n • дополнительное ежедневное испытание по боевому пропуску.\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 65 наград суммарной стоимостью 12 000 В-баксов! Обычно, чтобы открыть все награды, требуется 75–120 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка Чёрного рыцаря и ещё 2 костюма;\r\n • 3 кирки;\r\n • 2 дельтаплана;\r\n • 1000 В-баксов;\r\n • +60% к опыту за матчи сезона;\r\n • +20% к опыту друзей за матчи сезона;\r\n • 2 анимированных эмоции;\r\n • 13 эмотиконов;\r\n • и это ещё не всё!",
+ "ko": "시즌 2: 12월 14일 - 2월 20일\r\n\r\n2000 V-Bucks 이상의 가치가 있는 아이템을 즉시 받아가세요.\r\n • 청색 견습기사 의상\r\n • 50% 보너스 시즌 매치 경험치\r\n • 10% 보너스 시즌 친구 매치 경험치\r\n • 배틀패스 일일 도전 추가\r\n\r\n게임을 플레이하면서 배틀패스 레벨을 올려보세요. 12,000 V-Bucks의 가치가 있는 65개 이상의 보상을 얻을 수 있습니다(보통 75-150시간 정도 소요). 더 빠르게 달성하고 싶으신가요? V-Bucks를 사용해서 언제든지 레벨을 구매할 수 있습니다!\r\n • 흑기사 및 의상 2개\r\n • 수확 도구 3개\r\n • 글라이더 2개\r\n • 1000 V-Bucks\r\n • 60% 보너스 시즌 매치 경험치\r\n • 20% 보너스 시즌 친구 매치 경험치\r\n • 애니메이션 이모트 2개\r\n • 2D 이모트 13개\r\n • 그 외 혜택!",
+ "zh-hant": "第2賽季:12月14日-2月20日\r\n\r\n立即獲得總值超過2000V幣的下列物品!\r\n•堡壘騎士服裝\r\n•額外50%賽季匹配經驗\r\n•額外10%好友賽季匹配經驗\r\n•追加英雄季卡每日挑戰\r\n\r\n遊玩升級英雄季卡,解鎖價值12000V幣的65個以上獎勵(遊戲時間通常為75至150小時)。想要儘早獲得?你也可以使用V幣隨時購買升級!\r\n•3套服裝\r\n•3個採集工具\r\n•2架滑翔傘\r\n•1000V幣\r\n•額外60%賽季匹配經驗\r\n•額外20%好友賽季匹配經驗\r\n•2個動畫表情\r\n•13個2D表情符號\r\n•還有更多獎勵!",
+ "pt-br": "Temporada 2: 14 de dezembro — 20 de fevereiro\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 2.000 V-Bucks!\r\n • Traje Escudeiro Azul\r\n • 50% de Bônus de EXP da Temporada em Partidas\r\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Desafio Diário de Passe de Batalha Extra\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 65 recompensas avaliadas em 12.000 V-Bucks (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar níveis a qualquer momento!\r\n • Cavaleiro Negro e mais 2 outros trajes\r\n • 3 Ferramentas de Coleta\r\n • 2 Asas-deltas\r\n • 1.000 V-Bucks\r\n • 60% de Bônus de EXP da Temporada em Partidas\r\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • 2 Gestos Animados\r\n • 13 Gestos 2D\r\n • e mais!",
+ "en": "Season 2: Dec 14 - Feb 20\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Blue Squire Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Extra Battle Pass Daily Challenge\r\n\r\nPlay to level up your Battle Pass, unlocking up to 65+ rewards worth 12,000 V-Bucks (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy levels any time!\r\n • Black Knight plus 2 other outfits\r\n • 3 Harvesting Tools\r\n • 2 Gliders\r\n • 1000 V-Bucks\r\n • 60% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • 2 Animated Emotes\r\n • 13 2D Emotes\r\n • and more!",
+ "it": "Stagione 2: 14 dic. - 20 feb.\r\n\r\nOttieni subito una valutazione di questi oggetti a 2000 V-buck!\r\n • Costume Scudiero blu\r\n • Bonus del 50% dei PE partite stagionali\r\n • Bonus del 10% dei PE partite amico\r\n • Sfida giornaliera Pass battaglia extra\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 65+ ricompense dal valore di 12.000 V-buck (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Cavaliere nero e altri 2 costumi\r\n • 3 strumenti di raccolta\r\n • 2 deltaplani\r\n • 1000 V-buck\r\n • Bonus del 60% dei PE partite stagionali\r\n • Bonus del 20% dei PE partite amico\r\n • 2 emoticon animate\r\n • 13 emoticon 2D\r\n • e molto altro ancora!",
+ "fr": "Saison 2 : 14 déc. - 20 fév.\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 2000 V-bucks.\r\n • Tenue d'écuyer bleu\r\n • Bonus d'EXP de saison de 50%\r\n • Bonus d'EXP de saison de 10% pour des amis\r\n • Un défi quotidien du Passe de combat supplémentaire\r\n\r\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 65 récompenses d'une valeur de 12 000 V-bucks (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Chevalier noir, ainsi que deux autres tenues\r\n • 3 outils de collecte\r\n • 2 planeurs\r\n • 1000 V-bucks\r\n • Bonus d'EXP de saison de 60%\r\n • Bonus d'EXP de saison de 20% pour des amis\r\n • 2 emotes animées\r\n • 13 emotes en 2D\r\n • Et plus !",
+ "zh-cn": "第2赛季:12月14日-2月20日\r\n\r\n立即获得总值超过2000V币的下列物品!\r\n•堡垒骑士服装\r\n•额外50%赛季匹配经验\r\n•额外10%好友赛季匹配经验\r\n•追加英雄季卡每日挑战\r\n\r\n游玩升级英雄季卡,解锁价值12000V币的65个以上奖励(游戏时间通常为75至150小时)。想要尽早获得?你也可以使用V币随时购买升级!\r\n•3套服装\r\n•3个采集工具\r\n•2架滑翔伞\r\n•1000V币\r\n•额外60%赛季匹配经验\r\n•额外20%好友赛季匹配经验\r\n•2个动画表情\r\n•13个2D表情符号\r\n•还有更多奖励! ",
+ "es": "Temporada 2: 14 dic - 20 feb\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 2000 paVos.\r\n • Traje de escudero azul.\r\n • Bonificación de PE de partida de temporada del 50%.\r\n • Bonificación de PE de partida amistosa de temporada del 10%.\r\n • Desafío diario del pase de batalla adicional.\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea más de 65 recompensas con un valor de 12000 paVos (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para subir de nivel siempre que quieras!\r\n • Caballero negro más otros 2 trajes.\r\n • 3 herramientas de recolección.\r\n • 2 alas delta.\r\n • 1000 paVos.\r\n • Bonificación de PE de partida de temporada del 60%.\r\n • Bonificación de PE de partida amistosa de temporada del 20%.\r\n • 2 gestos animados.\r\n • 13 gestos 2D.\r\n • ¡Y mucho más!",
+ "ar": "Season 2: Dec 14 - Feb 20\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Blue Squire Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Extra Battle Pass Daily Challenge\r\n\r\nPlay to level up your Battle Pass, unlocking up to 65+ rewards worth 12,000 V-Bucks (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy levels any time!\r\n • Black Knight plus 2 other outfits\r\n • 3 Harvesting Tools\r\n • 2 Gliders\r\n • 1000 V-Bucks\r\n • 60% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • 2 Animated Emotes\r\n • 13 2D Emotes\r\n • and more!",
+ "ja": "シーズン2: 12月14日~2月20日\r\n\r\n2000 V-Bucks分のアイテムをすぐに入手しましょう。\r\n ・ブルースクワイアー\r\n ・シーズンマッチXPの50%ボーナス\r\n ・シーズンフレンドマッチXPの10%ボーナス\r\n ・追加のバトルパス・デイリーチャレンジ\r\n\r\nプレイしてバトルパスのレベルを上げると、12000 V-Bucks分の報酬を最大65個以上アンロックできます(およそ75~150時間程度のプレイが必要)。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入することができます!\r\n ・ブラックナイトコスチュームとさらに他のコスチューム2点\r\n ・収集ツールx3\r\n ・グライダーx2\r\n ・1000 V-Bucks\r\n ・シーズンマッチXPの60%ボーナス\r\n ・シーズンフレンドマッチXPの20%ボーナス\r\n • 動くエモートx2\r\n ・2Dエモートx13\r\n ・他にも色々!",
+ "pl": "Sezon 2: 14 grudnia - 20 lutego\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 2000 V-dolców!\r\n • Strój: „Niebieski Giermek”\r\n • Sezonowa premia +50% PD za grę\r\n • Sezonowa premia +10% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 65 kolejnych nagród o wartości ponad 12 000 V-dolców (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Czarny Rycerz plus 2 inne stroje\r\n • 3 zbieraki\r\n • 2 lotnie\r\n • 1000 V-dolców\r\n • Sezonowa premia +60% PD za grę\r\n • Sezonowa premia +20% PD za grę ze znajomym\r\n • 2 animowane emotki\r\n • 13 emotek 2D\r\n • I dużo więcej!",
+ "es-419": "Temporada 2: 14 dic - 20 feb\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 2000 monedas V!\r\n • Atuendo Escudero azul\r\n • 50 % de bonificación de PE para partidas de la temporada\r\n • 10 % de bonificación de PE para partidas con amigos en la temporada\r\n • Desafío diario de pase de batalla adicional\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea hasta más de 65 recompensas con un valor de 12.000 monedas V (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Caballero negro más otros 2 atuendos\r\n • 3 herramientas de recolección\r\n • 2 planeadores\r\n • 1000 monedas V\r\n • 60 % de bonificación de PE para partidas de la temporada\r\n • 20 % de bonificación de PE para partidas con amigos en la temporada\r\n • 2 gestos animados\r\n • 13 gestos 2D\r\n • ¡Y mucho más!",
+ "tr": "2. Sezon: 14 Aralık - 20 Şubat\r\n\r\n2000 V-Papel’in üzerinde değeri olan bu içeriklere hemen sahip ol.\r\n • Mavi Şövalye Kıyafeti\r\n • %50 Bonus Sezonluk Maç TP'si\r\n • %10 Bonus Sezonluk Arkadaş Maçı TP'si\r\n • İlave Savaş Bileti Günlük Görevi\r\n\r\nOynayarak Savaş Bileti’nin seviyesini yükselt ve 12.000 V-Papel değerindeki (normalde 75-150 saat oynayarak elde edilebilen) 65'in üzerinde ödülün kilidini aç. Hepsine daha çabuk mu sahip olmak istiyorsun? İstediğin zaman aşama satın almak için V-Papel kullanabilirsin!\r\n • Kara Şövalye ve 2 kıyafet daha\r\n • 3 Toplama Aleti\r\n • 2 Planör\r\n • 1000 V-Papel\r\n • %60 Bonus Sezonluk Maç TP'si\r\n • %20 Bonus Sezonluk Arkadaş Maçı TP'si\r\n • 2 Animasyonlu İfade\r\n • 13 2B İfade\r\n • ve daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season2_BattlePass.DA_BR_Season2_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "F86AC2ED4B3EA4B2D65EF1B2629572A0",
+ "devName": "BR.Season2.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Level",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 레벨",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Nível de Passe de Batalha",
+ "en": "Battle Pass Level",
+ "it": "Livello Pass battaglia",
+ "fr": "Niveau de Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Pase de batalla de nivel",
+ "ar": "Battle Pass Level",
+ "ja": "バトルバスレベル",
+ "pl": "Poziom karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason3",
+ "catalogEntries": [
+ {
+ "offerId": "70487F4C4673CC98F2FEBEBB26505F44",
+ "devName": "BR.Season3.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64B",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Nuovo pacchetto battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 3: 22. Februar – 30. April\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 8.000 V-Bucks.\r\n • Missionsspezialist (Outfit)\r\n • Rostmeister (Outfit)\r\n • Sägezahn (Erntewerkzeug)\r\n • Regenbogenritt (Hängegleiter)\r\n • Regenbogen (Flugspur)\r\n • +70 % Saison-Match-EP\r\n • +20 % Saison-Match-EP für Freunde\r\n • Zugang zu Wöchentlichen Herausforderungen\r\n • und noch mehr!\r\n\r\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 weitere Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\r\n • Der Sensenmann und 3 weitere Outfits\r\n • 1 Erntewerkzeug\r\n • 1 Hängegleiter\r\n • 2 Rücken-Accessoires\r\n • 4 Flugspuren\r\n • 1.300 V-Bucks\r\n • und noch eine ganze Menge mehr!",
+ "ru": "Третий сезон: 22 февраля — 30 апреля\r\n\r\nСразу же получите предметы стоимостью более 8000 В-баксов!\r\n • Экипировка «Миссия выполнима»;\r\n • Экипировка «Повелитель ржавчины»;\r\n • Кирка «Пилозуб»;\r\n • Дельтаплан «Радужный гонщик»;\r\n • Радужный след при падении;\r\n • +70% к опыту за матчи сезона;\r\n • +20% к опыту друзей за матчи сезона;\r\n • доступ к еженедельным испытаниям.\r\n • и это не всё!\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка «Душегуб» и ещё 3 костюма;\r\n • 1 кирка;\r\n • 1 дельтаплан;\r\n • 2 украшения на спину;\r\n • 4 воздушных следа при падении;\r\n • 1300 В-баксов;\r\n • и это ещё не всё!",
+ "ko": "시즌 3: 2월 22일 - 4월 30일\r\n\r\n8000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\r\n • 우주선 비행사 의상\r\n • 고철왕 의상\r\n • 톱날 수확 도구\r\n • 무지개 글라이더\r\n • 무지개 스카이다이빙 트레일\r\n • 70% 보너스 시즌 매치 XP\r\n • 20% 보너스 시즌 친구 매치 XP\r\n • 주간 도전 이용 권한\r\n\r\n배틀패스 티어를 올려서 최대 75개 이상의 보상을 얻으세요(보통 75-150시간 소요). 더 빨리 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\r\n • 사신 의상 및 다른 의상 3개\r\n • 수확 도구 1개\r\n • 글라이더 1개\r\n • 등 장신구 2개\r\n • 스카이다이빙 트레일 4개\r\n • 1300 V-Bucks\r\n • 그 외 많은 혜택!",
+ "zh-hant": "第3賽季:2月22日——4月30日\r\n\r\n立即獲得這些價值8000V幣的物品。\r\n • 任務專家服裝\r\n • 廢土領主服裝\r\n • 鋸齒採集工具\r\n • 彩虹騎士滑翔傘\r\n • 彩虹滑翔軌跡\r\n • 70%額外賽季比賽經驗\r\n • 20%額外賽季好友比賽經驗\r\n •獲得每週挑戰許可權\r\n •以及更多!\r\n\r\n通過遊玩提升英雄季卡戰階,解鎖75個以上獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\r\n •收割者以及其他3套服裝\r\n • 1個採集工具\r\n • 1個滑翔傘\r\n • 2個背部裝飾\r\n • 4個滑翔軌跡\r\n • 1300V幣\r\n • 以及更多獎勵!",
+ "pt-br": "Temporada 3: 22 de fevereiro — 30 de abril\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 8.000 V-Bucks!\r\n • Traje Especialista em Missão\r\n • Traje Lorde da Ferrugem\r\n • Ferramenta de Coleta Dente Serrilhado\r\n • Asa-delta Arco-íris\r\n • Rastro de Queda Livre Arco-íris\r\n • 70% de Bônus de EXP da Temporada em Partidas\r\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Acesso a Desafios Semanais\r\n • e mais!\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\r\n • O Ceifador e mais 3 outros trajes\r\n • 1 Ferramenta de Coleta\r\n • 1 Asa-delta\r\n • 2 Acessórios para as Costas\r\n • 4 Rastros de Queda Livre\r\n • 1.300 V-Bucks\r\n • e muito mais!",
+ "en": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 8000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • Rust Lord Outfit\r\n • Sawtooth Harvesting Tool\r\n • Rainbow Rider Glider\r\n • Rainbow Skydiving Trail\r\n • 70% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n • and more!\r\n\r\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 3 other outfits\r\n • 1 Harvesting Tool\r\n • 1 Glider\r\n • 2 Back Blings\r\n • 4 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!",
+ "it": "Stagione 3: 22 feb. - 30 apr.\r\n\r\nOttieni subito questi oggetti dal valore di oltre 8000 V-buck!\r\n • Costume Specialista di missione\r\n • Costume Signore della ruggine\r\n • Strumento di raccolta Dente di sega\r\n • Deltaplano Fantino arcobaleno\r\n • Scia Volo dell'arcobaleno\r\n • Bonus del 70% dei PE partite stagionali\r\n • Bonus del 20% dei PE partite amico\r\n • Accesso alle sfide settimanali\r\n • ...e molto altro ancora!\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando oltre 75 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Il Mietitore e altri 3 costumi\r\n • 1 strumento di raccolta\r\n • 1 deltaplano\r\n • 2 Dorsi decorativi\r\n • 4 Scie Skydive\r\n • 1300 V-buck\r\n • ...e molto altro ancora!",
+ "fr": "Saison 3 : 22 février - 30 avril\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 8000 V-bucks.\r\n • Tenue de Spationaute\r\n • Tenue de Roi de la rouille\r\n • Outil de collecte Dent de scie\r\n • Planeur magique\r\n • Traînée de condensation Arc-en-ciel\r\n • Bonus d'EXP de saison de 70%\r\n • Bonus d'EXP de saison de 20% pour des amis\r\n • L'accès aux défis hebdomadaires\r\n • Et plus !\r\n\r\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Le Faucheur, ainsi que 3 autres tenues\r\n • 1 outil de collecte\r\n • 1 planeur\r\n • 2 accessoires de dos\r\n • 4 traînées de condensation\r\n • 1300 V-bucks\r\n • Et plus !",
+ "zh-cn": "第3赛季:2月22日——4月30日\r\n\r\n立即获得这些价值8000V币的物品。\r\n • 任务专家服装\r\n • 废土领主服装\r\n • 锯齿采集工具\r\n • 彩虹骑士滑翔伞\r\n • 彩虹滑翔轨迹\r\n • 70%额外赛季比赛经验\r\n • 20%额外赛季好友比赛经验\r\n •获得每周挑战权限\r\n •以及更多!\r\n\r\n通过游玩提升英雄季卡战阶,解锁75个以上奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\r\n •收割者以及其他3套服装\r\n • 1个采集工具\r\n • 1个滑翔伞\r\n • 2个背部装饰\r\n • 4个滑翔轨迹\r\n • 1300V币\r\n • 以及更多奖励!",
+ "es": "Temporada 3: 22 feb - 30 abr\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 8000 paVos.\r\n • Traje de especialista en misiones.\r\n • Traje de señor del óxido.\r\n • Herramienta de recolección dientes de sierra.\r\n • Ala delta jinete arcoíris.\r\n • Estela de descenso arcoíris.\r\n • Bonificación de PE de partida de temporada del 70%.\r\n • Bonificación de PE de partida amistosa de temporada del 20%.\r\n • Acceso a los desafíos semanales.\r\n • ¡Y mucho más!\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\r\n • Señor Muerte más otros 3 trajes.\r\n • 1 herramienta de recolección.\r\n • 1 ala delta.\r\n • 2 popurrí de regalitos.\r\n • 4 estelas de descenso.\r\n • 1300 paVos.\r\n • ¡Y mucho más!",
+ "ar": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 8000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • Rust Lord Outfit\r\n • Sawtooth Harvesting Tool\r\n • Rainbow Rider Glider\r\n • Rainbow Skydiving Trail\r\n • 70% Bonus Season Match XP\r\n • 20% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n • and more!\r\n\r\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 3 other outfits\r\n • 1 Harvesting Tool\r\n • 1 Glider\r\n • 2 Back Blings\r\n • 4 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!",
+ "ja": "シーズン3: 2月22日~4月30日\r\n\r\n8000 V-Bucks以上の価値があるアイテムをすぐに手に入れよう。\r\n ・ミッションスペシャリストコスチューム\r\n ・ジャンクロードコスチューム\r\n ・ジャンクアックス収集ツール\r\n ・レインボーライダーグライダー\r\n ・レインボースカイダイビングトレイル\r\n ・シーズンマッチXPの70%ボーナス\r\n ・シーズンフレンドマッチXPの20%ボーナス\r\n ・ウィークリーチャレンジへの挑戦権\r\n ・他にも色々!\r\n\r\nたくさんプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(およそ75~150時間程度のプレイが必要)。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入することができます!\r\n ・ザ・リーパーコスチュームとさらに他のコスチューム3点\r\n ・収集ツールx1\r\n ・グライダーx1\r\n ・バックアクセサリーx2\r\n ・スカイダイビングトレイルx4\r\n ・1300 V-Bucks\r\n ・他にも色々!",
+ "pl": "Sezon 3: 22 lutego - 30 kwietnia\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 8000 V-dolców!\r\n • Strój: Specjalista od Zadań\r\n • Strój: Rdzawy Lord\r\n • Lotnia Jeźdźca Tęczy\r\n • Sezonowa premia +70% PD za grę\r\n • Sezonowa premia +20% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 75 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Żniwiarz plus 3 inne stroje\r\n • 1 zbierak\r\n • 1 lotnia\r\n • 2 plecaki\r\n • 4 smugi lotni\n • 1300 V-dolców\r\n • I dużo więcej!",
+ "es-419": "Temporada 3: Del 22 de feb. al 30 de abr.\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 8000 monedas V!\r\n • Atuendo Especialista de misión\r\n • Atuendo Señor del óxido\r\n • Herramienta de recolección Dientes de sierra\r\n • Planeador Jinete de arcoíris\r\n • Rastro de caída libre Arcoíris\r\n • 70% de bonificación de PE para partidas de la temporada\r\n • 20 % de PE de bonificación para partidas con amigos en la temporada\r\n • Acceso a los desafíos semanales\r\n • ¡Y mucho más!\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Segador más otros 3 atuendos\r\n • 1 herramienta de recolección\r\n • 1 planeador\r\n • 2 mochilas retro\r\n • 4 rastros de caída libre\r\n • 1300 monedas V\r\n • ¡Y mucho más!",
+ "tr": "3. Sezon: 22 Şubat - 30 Nisan\r\n\r\n8000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\r\n • Görev Uzmanı Kıyafeti\r\n • Pasın Efendisi Kıyafeti\r\n • Testere Dişli Kazma\r\n • Gökkuşağının Kanatları Planörü\r\n • %70 Bonus Sezon Maçı TP’si\r\n • %20 Bonus Sezon Arkadaş Maçı TP’si\r\n • Haftalık Görevlere Erişim\r\n • ve daha pek çok şey!\r\n\r\nSavaş Bileti’nin seviyesini yükseltmek için oyna, 75’ten fazla ödülü aç (75-150 saat arası vakit alabilir)! Hepsini daha mı çabuk istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\r\n • Ölüm Meleği ve 3 kıyafet daha\r\n • 1 Toplama Aleti\r\n • 1 Planör\r\n • 2 Sırt Süsü\r\n • 4 Dalış İzi\r\n • 1300 V-Papel\r\n • ve dahası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season3_BattlePassWithLevels.DA_BR_Season3_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "2331626809474871A3A44C47C1D8742E",
+ "devName": "BR.Season3.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64B",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 3",
+ "ru": "Сезон 3",
+ "ko": "시즌 3",
+ "zh-hant": "第3季度",
+ "pt-br": "Temporada 3",
+ "en": "Season 3",
+ "it": "Stagione 3",
+ "fr": "Saison 3",
+ "zh-cn": "第3赛季",
+ "es": "Temporada 3",
+ "ar": "Season 3",
+ "ja": "シーズン3",
+ "pl": "Sezon 3",
+ "es-419": "Temporada 3",
+ "tr": "3. Sezon"
+ },
+ "description": {
+ "de": "Saison 3: 22. Februar – 30. April\r\n\r\nErhalte sofort diese Gegenstände im Wert von über 2.000 V-Bucks.\r\n • Missionsspezialist (Outfit)\r\n • +50 % Saison-Match-EP\r\n • +10 % Saison-Match-EP für Freunde\r\n • Zugang zu Wöchentlichen Herausforderungen\r\n\r\nSpiele weiter und stufe deinen Battle Pass auf, um bis zu 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\r\n • Der Sensenmann und 4 weitere Outfits\r\n • 2 Erntewerkzeuge\r\n • 2 Hängegleiter\r\n • 2 Rücken-Accessoires\r\n • 5 Flugspuren\r\n • 1.300 V-Bucks\r\n • und noch eine ganze Menge mehr!",
+ "ru": "Третий сезон: 22 февраля — 30 апреля\r\n\r\nСразу же получите предметы стоимостью более 2000 В-баксов!\r\n • Экипировка «Миссия выполнима»;\r\n • +50% к опыту за матчи сезона;\r\n • +10% к опыту друзей за матчи сезона;\r\n • доступ к еженедельным испытаниям.\r\n\r\nИграйте, повышайте уровень боевого пропуска — и вас ждут до 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\r\n • Экипировка «Душегуб» и ещё 4 костюма;\r\n • 2 кирки;\r\n • 2 дельтаплана;\r\n • 2 украшения на спину;\r\n • 5 воздушных следов при падении;\r\n • 1300 В-баксов;\r\n • и это ещё не всё!",
+ "ko": "시즌 3: 2월 22일 - 4월 30일\r\n\r\n2000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\r\n • 우주선 비행사 의상\r\n • 50% 보너스 시즌 매치 XP\r\n • 10% 보너스 시즌 친구 매치 XP\r\n • 주간 도전 이용 권한\r\n\r\n배틀패스 티어를 올려서 최대 100개의 보상을 얻으세요(보통 75-150시간 소요). 더 빨리 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\r\n • 사신 의상 및 다른 의상 4개\r\n • 수확 도구 2개\r\n • 글라이더 2개\r\n • 등 장신구 2개\r\n • 스카이다이빙 트레일 5개\r\n • 1300 V-Bucks\r\n • 그 외 많은 혜택!",
+ "zh-hant": "第3賽季:2月22日——4月30日\r\n\r\n立即獲得這些價值2000V幣的物品。\r\n • 任務專家服裝\r\n • 50% 額外賽季比賽經驗\r\n • 10%額外賽季好友比賽經驗\r\n •獲得每週挑戰許可權\r\n\r\n通過遊玩提升英雄季卡戰階,解鎖100多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\r\n •收割者以及其他4套服裝\r\n • 2個採集工具\r\n • 2個滑翔傘\r\n • 2個背部裝飾\r\n • 5個滑翔軌跡\r\n • 1300V幣\r\n • 以及更多獎勵!",
+ "pt-br": "Temporada 3: 22 de fevereiro — 30 de abril\r\n\r\nReceba instantaneamente estes itens avaliados em mais de 2.000 V-Bucks!\r\n • Traje Especialista em Missão\r\n • 50% de Bônus de EXP da Temporada em Partidas\r\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\r\n • Acesso a Desafios Semanais\r\n\r\nJogue para subir o nível do seu Passe de Batalha, desbloqueando até 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\r\n • O Ceifador e mais 4 outros trajes\r\n • 2 Ferramentas de Coleta\r\n • 2 Asas-deltas\r\n • 2 Acessórios para as Costas\r\n • 5 Rastros de Queda Livre\r\n • 1.300 V-Bucks\r\n • e muito mais!",
+ "en": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n\r\nPlay to level up your Battle Pass, unlocking up to 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 4 other outfits\r\n • 2 Harvesting Tools\r\n • 2 Gliders\r\n • 2 Back Blings\r\n • 5 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!",
+ "it": "Stagione 3: 22 feb. - 30 apr.\r\n\r\nOttieni subito questi oggetti dal valore di oltre 2000 V-buck!\r\n • Costume Specialista di missione\r\n • Bonus del 50% dei PE partite stagionali\r\n • Bonus del 10% dei PE partite amico\r\n • Accesso alle sfide settimanali\r\n\r\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\r\n • Il Mietitore e altri 4 costumi\r\n • 2 strumenti di raccolta\r\n • 2 deltaplani\r\n • 2 Dorsi decorativi\r\n • 5 Scie Skydive\r\n • 1300 V-buck\r\n • ...e molto altro ancora!",
+ "fr": "Saison 3 : 22 février - 30 avril\r\n\r\nRecevez immédiatement ces objets d'une valeur supérieure à 2000 V-bucks.\r\n • Tenue de Spationaute\r\n • Bonus d'EXP de saison de 50%\r\n • Bonus d'EXP de saison de 10% pour des amis\r\n • L'accès aux défis hebdomadaires\r\n\r\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller jusqu'à 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\r\n • Le Faucheur, ainsi que 4 autres tenues\r\n • 2 outils de collecte\r\n • 2 planeurs\r\n • 2 accessoires de dos\r\n • 5 traînées de condensation\r\n • 1300 V-bucks\r\n • Et plus !",
+ "zh-cn": "第3赛季:2月22日——4月30日\r\n\r\n立即获得这些价值2000V币的物品。\r\n • 任务专家服装\r\n • 50% 额外赛季比赛经验\r\n • 10%额外赛季好友比赛经验\r\n •获得每周挑战权限\r\n\r\n通过游玩提升英雄季卡战阶,解锁100多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\r\n •收割者以及其他4套服装\r\n • 2个采集工具\r\n • 2个滑翔伞\r\n • 2个背部装饰\r\n • 5个滑翔轨迹\r\n • 1300V币\r\n • 以及更多奖励!",
+ "es": "Temporada 3: 22 feb - 30 abr\r\n\r\nConsigue instantáneamente estos objetos valorados en más de 2000 paVos.\r\n • Traje de especialista en misiones.\r\n • Bonificación de PE de partida de temporada del 50%.\r\n • Bonificación de PE de partida amistosa de temporada del 10%.\r\n • Acceso a los desafíos semanales.\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquea hasta 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\r\n • Señor Muerte más otros 4 trajes.\r\n • 2 herramientas de recolección.\r\n • 2 alas delta.\r\n • 2 popurrí de regalitos.\r\n • 5 estelas de descenso.\r\n • 1300 paVos.\r\n • ¡Y mucho más!",
+ "ar": "Season 3: Feb 22 - April 30\r\n\r\nInstantly get these items valued at over 2000 V-Bucks.\r\n • Mission Specialist Outfit\r\n • 50% Bonus Season Match XP\r\n • 10% Bonus Season Friend Match XP\r\n • Access to Weekly Challenges\r\n\r\nPlay to level up your Battle Pass, unlocking up to 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\r\n • The Reaper plus 4 other outfits\r\n • 2 Harvesting Tools\r\n • 2 Gliders\r\n • 2 Back Blings\r\n • 5 Skydiving Trails\r\n • 1300 V-Bucks\r\n • and so much more!",
+ "ja": "シーズン3: 2月22日~4月30日\r\n\r\n2000 V-Bucks以上の価値があるアイテムをすぐに手に入れよう。\r\n ・ミッションスペシャリスト\r\n ・シーズンマッチXPの50%ボーナス\r\n ・シーズンフレンドマッチXPの10%ボーナス\r\n ・ウィークリーチャレンジへの挑戦権\r\n\r\nプレイしてバトルパスのレベルを上げると、最大100個の報酬をアンロックする事ができます。すぐに報酬が欲しい場合は、V-Bucksでいつでもティアを購入する事ができます!\r\n ・ザ・リーパーや他のコスチューム4点\r\n ・ピックアックス 2点\r\n ・グライダー 2点\r\n ・バックアクセサリー 2点\r\n ・トレイル 5点\r\n ・1300 V-Bucks\r\n ・他にも色々!",
+ "pl": "Sezon 3: 22 lutego - 30 kwietnia\r\n\r\nOtrzymasz od razu poniższe przedmioty o wartości ponad 2000 V-dolców!\r\n • Strój: Specjalista od Zadań\r\n • Sezonowa premia +50% PD za grę\r\n • Sezonowa premia +10% PD za grę ze znajomym\r\n • Dodatkowe wyzwanie dnia z karnetu bojowego\r\n\r\nGraj dalej, aby awansować karnet bojowy i zdobyć do 100 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\r\n • Żniwiarz plus 4 inne stroje\r\n • 2 zbieraki\r\n • 2 lotnie\r\n • 2 plecaki\r\n • 5 smug lotni\n • 1300 V-dolców\r\n • I dużo więcej!",
+ "es-419": "Temporada 3: Del 22 de feb. al 30 de abr.\r\n\r\n¡Obtén al instante estos objetos que cuestan más de 2000 monedas V!\r\n • Atuendo Especialista de misión\r\n • 50 % de bonificación de PE para partidas de la temporada\r\n • 10 % de PE de bonificación para partidas con amigos en la temporada\r\n • Acceso a los desafíos semanales\r\n\r\nJuega para subir de nivel tu pase de batalla y desbloquear hasta 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\r\n • Segador más otros 4 atuendos\r\n • 2 herramientas de recolección\r\n • 2 planeadores\r\n • 2 mochilas retro\r\n • 5 rastros de caída libre\r\n • 1300 monedas V\r\n • ¡Y mucho más!",
+ "tr": "3. Sezon: 22 Şubat - 30 Nisan\r\n\r\n2000 V-Papel'in üzerinde değeri olan bu içerikleri hemen edin.\r\n • Görev Uzmanı Kıyafeti\r\n • %50 Bonus Sezon Maçı TP'si\r\n • %10 Bonus Sezon Arkadaş Maç TP'si\r\n • Haftalık Görevlere Erişim\r\n\r\nSavaş Bileti’nin seviyesini yükseltmek için oyna, 100 ödülü de aç (75-150 saat arası vakit alabilir)! Hepsini daha mı çabuk istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\r\n • Ölüm Meleği ve 4 kıyafet daha\r\n • 2 Toplama Aleti\r\n • 2 Planör\r\n • 2 Sırt Süsü\r\n •5 Dalış İzi\r\n • 1300 V-Papel \r\n • ve daha pek çok şey!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season3_BattlePass.DA_BR_Season3_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "E2D7975EFEC54A45900D8D9A6D9D273C",
+ "devName": "BR.Season3.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Level",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 레벨",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Nível de Passe de Batalha",
+ "en": "Battle Pass Level",
+ "it": "Livello Pass battaglia",
+ "fr": "Niveau de Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Pase de batalla de nivel",
+ "ar": "Battle Pass Level",
+ "ja": "バトルバスレベル",
+ "pl": "Poziom karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "素晴らしい報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason4",
+ "catalogEntries": [
+ {
+ "offerId": "884CE68998C44AC58D85C5A9883DE1A6",
+ "devName": "BR.Season4.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64A",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 4: Ab sofort bis 9. Juli\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Carbide (Outfit)\n • Kriegsfalke (Outfit)\n • Teknique (Outfit) \n • Orkanhacke (Spitzhacke)\n • Zuckerschock (Hängegleiter)\n • Standardausführung (Rücken-Accessoire)\n • 4 Spraymotive\n • Retro-Science-Fiction (Flugspur)\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • Zugang zu Wöchentlichen Herausforderungen\n • Zugang zu Blockbuster-Herausforderungen\n • Zugang zu Carbide-Herausforderungen\n • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n\n • Omega und 3 weitere Outfits\n • 3 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 1 Rücken-Accessoire\n • 4 Flugspuren\n • 16 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Четвёртый сезон: до 9 июля\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Карбида;\n • экипировка Боевого ястреба;\n • экипировка мисс Бэнкси;\n • кирка «Штормовая мощь»;\n • дельтаплан «Конфетка»;\n • украшение на спину «Верный стандарт»;\n • 4 граффити;\n • воздушный след «Ретрофутуризм»;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • доступ к еженедельным испытаниям;\n • доступ к испытаниям Карбида;\n • доступ к испытаниям события «Убойное кино»;\n • и это ещё не всё!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Омеги и ещё 3 костюма;\n • 3 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 1 украшение на спину;\n • 4 воздушных следа;\n • 16 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!",
+ "ko": "시즌4: 7월 9일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 카바이드 의상\n • 배틀호크 의상\n • 테크니크 아티스트 의상\n • 강풍 곡괭이\n • 슈가 크래시 글라이더\n • 보급품 배낭 등 장신구\n • 스프레이 4개\n • 복고풍 공상 과학 스카이다이빙 트레일\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 주간 도전 이용 권한\n • 블록버스터 도전 이용 권한\n • 카바이드 도전 이용 권한\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 오메가 및 다른 의상 3개\n • 곡괭이 3개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 1개\n • 스카이다이빙 트레일 4개\n • 스프레이 16개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第4賽季:現在起至7月9日\n\n立即獲得這些價值10000V幣的物品。\n • 碳化合金服裝\n • 戰鷹服裝\n • 技巧服裝\n • 蓋爾力量鋤頭\n • 糖果風暴滑翔傘\n • 制式裝備背包\n • 4個塗鴉\n • 復古科幻滑翔軌跡\n • 70% 額外賽季比賽經驗\n • 20%額外賽季好友比賽經驗\n • 獲得每週挑戰許可權\n • 獲得爆紅挑戰許可權\n • 獲得碳化合金挑戰許可權\n • 以及更多!\n\n通過遊玩提升英雄季卡戰階,解鎖75多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n •歐米伽以及其他3套服裝\n •3個鋤頭\n • 4個姿勢\n • 2個滑翔傘\n • 1個背部裝飾\n • 4個滑翔軌跡\n • 16個塗鴉\n • 1300V幣\n • 以及更多獎勵!",
+ "pt-br": "Temporada 4: de hoje até 9 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Carboneto\n • Traje Gavião Guerreiro\n • Traje Téknica \n • Picareta Rajada\n • Asa-delta Pancada Açucarada\n • Acessório para as Costas Padrão\n • 4 Sprays\n • Rastro de Queda Livre Ficção Científica Retrô\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Acesso a Desafios Semanais\n • Acesso a Desafios de Filmaço\n • Acesso a Desafios Carboneto\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n\n • O Ômega e mais 3 outros trajes\n • 3 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 1 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 16 Sprays\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • Teknique Outfit \n • Gale Force Pickaxe\n • Sugar Crash Glider\n • Standard Issue Back Bling\n • 4 Sprays\n • Retro Sci-fi Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n\n • Omega plus 3 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 1 Back Bling\n • 4 Skydiving Trails\n • 16 Sprays\n • 1300 V-Bucks\n • and so much more!",
+ "it": "Stagione 4: fino al 9 luglio\n\nOttieni subito questi oggetti dal valore di oltre 10,000 V-buck!\n • Costume Carburo\n • Costume Battlehawk\n • Costume Teknica\n • Piccone Uragano\n • Deltaplano Crash zucchero\n • Dorso decorativo Standard\n • 4 spray\n • Scia skydive Fantascienza rétro\n • Bonus del 70% dei PE partite stagionali\n • Bonus del 20% dei PE partite amico\n • Accesso alle sfide settimanali\n • Accesso alle sfide spaccatutto\n • Accesso alle sfide Carburo\n • ...e tanto altro!\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando oltre 75 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n\n • Omega e altri 3 costumi\n • 3 picconi\n • 2 deltaplani\n • 1 Dorso decorativo\n • 4 Scie Skydive\n • 16 spray\n • 1300 V-buck\n • ...e molto altro ancora!",
+ "fr": "Saison 4 : jusqu'au 9 juillet\n\n Recevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Carburo\n • Tenue Le Faucon\n • Tenue Graffeuse \n • Pioche Zéphyr\n • Planeur Friandise\n • Accessoire de dos Sac réglementaire\n • 4 aérosols\n • Traînée de condensation Rétrofuturiste\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • L'accès aux défis hebdomadaires\n • L'accès aux défis Superproduction\n • L'accès aux défis de Carburo\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n\n • Oméga plus 3 autres tenues\n • 3 pioches\n • 4 emotes\n • 2 planeurs\n • 1 accessoire de dos\n • 4 traînées de condensation\n • 16 aérosols\n • 1300 V-bucks\n • Et plus !",
+ "zh-cn": "第4赛季:现在起至7月9日\n\n立即获得这些价值10000V币的物品。\n • 碳化合金服装\n • 战鹰服装\n • 技巧服装\n • 盖尔力量锄头\n • 糖果风暴滑翔伞\n • 制式装备背包\n • 4个涂鸦\n • 复古科幻滑翔轨迹\n • 70% 额外赛季比赛经验\n • 20%额外赛季好友比赛经验\n • 获得每周挑战权限\n • 获得爆红挑战权限\n • 获得碳化合金挑战权限\n • 以及更多!\n\n通过游玩提升英雄季卡战阶,解锁75多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n •欧米伽以及其他3套服装\n •3个锄头\n • 4个姿势\n • 2个滑翔伞\n • 1个背部装饰\n • 4个滑翔轨迹\n • 16个涂鸦\n • 1300V币\n • 以及更多奖励!",
+ "es": "Temporada 4: Desde ahora hasta el 9 de julio\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Carburo\n • Traje de halcón bélico\n • Traje de Téknica \n • Pico fuerza de la tempestad\n • Ala delta subidón de azúcar\n • Accesorio mochilero modelo estándar\n • 4 grafitis\n • Estela de descenso ciencia ficción retro\n • Bonificación de PE de partida de temporada del 70%\n • Bonificación de PE de partida amistosa de temporada del 20%.\n • Acceso a los desafíos semanales.\n • Acceso a los desafíos de Taquillazo.\n • Acceso a los desafíos de Carburo.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n\n • Omega más otros 3 trajes.\n • 3 picos.\n • 4 gestos\n • 2 alas delta\n • 1 accesorio mochilero\n • 4 estelas de descenso\n • 16 grafitis\n • 1300 paVos\n • ¡Y mucho más!",
+ "ar": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • Teknique Outfit \n • Gale Force Pickaxe\n • Sugar Crash Glider\n • Standard Issue Back Bling\n • 4 Sprays\n • Retro Sci-fi Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n\n • Omega plus 3 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 1 Back Bling\n • 4 Skydiving Trails\n • 16 Sprays\n • 1300 V-Bucks\n • and so much more!",
+ "ja": "シーズン4: 7月9日まで\n\n10,000 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・カーバイドコスチューム\n ・バトルホークコスチューム\n ・テクニークコスチューム\n ・ゲイルフォースツルハシ\n ・シュガークラッシュグライダー\n ・標準仕様バックアクセサリー\n ・スプレー4点\n ・レトロなSFチックスカイダイビングトレイル\n ・シーズンマッチXPの70%ボーナス\n ・シーズンフレンドマッチXPの20%ボーナス\n ・ウィークリーチャレンジへの挑戦権\n ・ブロックバスターチャレンジへの挑戦権\n ・カーバイドチャレンジへの挑戦権\n ・他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n\n ・オメガコスチュームとさらに他のコスチュームx3\n ・ツルハシx3\n ・エモートx4\n ・グライダーx2\n バックアクセサリーx1\n スカイダイビングトレイルx4\n ・スプレーx16\n ・1300 V-Bucks\n 他にも色々!",
+ "pl": "Sezon 4: potrwa do 9 lipca\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Karbid\n • Strój: Bojowy Jastrząb\n • Strój: Teknique\n • Kilof: Sztormowiec\n • Lotnia: Słodki Spadek\n • Plecak: Standardowe Wyposażenie\n • 4 graffiti\n • Smuga lotni: Retro-SF\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% za grę ze znajomym\n • Dostęp do wyzwań tygodnia\n • Dostęp do wyzwań Hitu Ekranu\n • Dostęp do wyzwań Karbida\n • I jeszcze więcej!\n\nGraj dalej, aby awansować karnet bojowy i zdobyć ponad 75 kolejnych nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n\n • Omega plus 3 inne stroje\n • 3 kilofy\n • 4 emotki\n • 2 lotnie\n • 1 sprzęt na plecy\n • 4 smugi lotni\n • 16 graffiti\n • 1300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 4: Ahora hasta el 9 de julio\n\n¡Obtén al instante estos objetos que cuestan más de 10 000 monedas V!\n • Atuendo Carburo\n • Atuendo Halcón de combate\n • Atuendo Téknica \n • Pico Fuerza huracanada\n • Planeador Bajón de azúcar\n • Mochila retro Edición básica\n • 4 aerosoles\n • Rastro de caída libre Ciencia ficción retro\n • 70 % de PE de bonificación para partidas de la temporada\n • 20 % de PE de bonificación para partidas con amigos en la temporada\n • Acceso a los desafíos semanales\n • Acceso a los desafíos de Taquillazo\n • Acceso a los desafíos de Carburo\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n\n • Omega más otros 3 atuendos\n • 3 picos\n • 4 gestos\n • 2 planeadores\n • 1 mochila retro\n • 4 rastros de caída libre\n • 16 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!",
+ "tr": "4. Sezon: Şu andan 9 Temmuz’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Demir Maske Kıyafeti\n • Savaş Şahini Kıyafeti\n • Asi Grafitici Kıyafeti\n • Kraliçenin Gücü Kazması\n • Şeker Koması Planörü\n • Standart Ekipman Sırt Süsü\n • 4 Sprey\n • Retro Bilimkurgu Hava Dalışı İzi\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • Haftalık Görevlere Erişim\n • Gişe Rekortmeni Görevlerine Erişim\n • Demir Maske Görevlerine Erişim\n • ve fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n\n • Omega artı 3 kıyafet daha\n • 3 Kazma\n • 4 İfade\n • 2 Planör\n • 1 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 16 Sprey\n • 1300 V-Papel\n • ve çok daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season4_BattlePassWithLevels.DA_BR_Season4_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "76EA7FE9787744B09B79FF3FC5E39D0C",
+ "devName": "BR.Season4.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64A",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 4",
+ "ru": "Сезон 4",
+ "ko": "시즌 4",
+ "zh-hant": "第4賽季",
+ "pt-br": "Temporada 4",
+ "en": "Season 4",
+ "it": "Stagione 4",
+ "fr": "Saison 4",
+ "zh-cn": "第4赛季",
+ "es": "Temporada 4",
+ "ar": "Season 4",
+ "ja": "シーズン4",
+ "pl": "Sezon 4",
+ "es-419": "Temporada 4",
+ "tr": "4. Sezon"
+ },
+ "description": {
+ "de": "Saison 4: Ab sofort bis 9. Juli\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Carbide (Outfit)\n • Kriegsfalke (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • Zugang zu Wöchentlichen Herausforderungen\n • Zugang zu Blockbuster-Herausforderungen\n • Zugang zu Carbide-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Omega und 4 weitere Outfits\n • 4 Spitzhacken\n • 5 Emotes\n • 3 Hängegleiter\n • 2 Rücken-Accessoires\n • 5 Flugspuren\n • 20 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Четвёртый сезон: до 9 июля\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Карбида;\n • экипировка Боевого ястреба;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • доступ к еженедельным испытаниям;\n • доступ к испытаниям Карбида;\n • доступ к испытаниям события «Убойное кино».\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут до 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Омеги и ещё 4 костюма;\n • 4 кирки;\n • 5 эмоций;\n • 3 дельтаплана;\n • 2 украшения на спину;\n • 5 воздушных следов;\n • 20 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!",
+ "ko": "시즌4: 7월 9일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 카바이드 의상\n • 배틀호크 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 주간 도전 이용 권한\n • 블록버스터 도전 이용 권한\n • 카바이드 도전 이용 권한\n\n배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 오메가 및 다른 의상 4개\n • 곡괭이 4개\n • 이모트 5개\n • 글라이더 3개\n • 등 장신구 2개\n • 스카이다이빙 트레일 5개\n • 스프레이 20개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第4賽季:現在起至7月9日\n\n立即獲得這些價值3500V幣的物品。\n • 碳化合金服裝\n • 戰鷹服裝\n • 50% 額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 獲得每週挑戰許可權\n • 獲得爆紅挑戰許可權\n • 獲得碳化合金挑戰許可權\n\n通過遊玩提升英雄季卡戰階,解鎖100多個獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n •歐米伽以及其他4套服裝\n •4個鋤頭\n • 5個姿勢\n • 3個滑翔傘\n • 2個背部裝飾\n • 5個滑翔軌跡\n • 20個小塗鴉\n • 1300V幣\n • 以及更多獎勵!",
+ "pt-br": "Temporada 4: de hoje até 9 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Carboneto\n • Traje Gavião Guerreiro\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Acesso a Desafios Semanais\n • Acesso a Desafios de Filmaço\n • Acesso a Desafios Carboneto\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ômega e mais 4 outros trajes\n • 4 Picaretas\n • 5 Gestos\n • 3 Asas-deltas\n • 2 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 20 Sprays\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Omega plus 4 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 3 Gliders\n • 2 Back Blings\n • 5 Skydiving Trails\n • 20 Sprays\n • 1300 V-Bucks\n • and so much more!",
+ "it": "Stagione 4: fino al 9 luglio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Carburo\n • Costume Battlehawk\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico\n • Accesso alle sfide settimanali\n • Accesso alle sfide spaccatutto\n • Accesso alle sfide Carburo\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n • Omega e altri 4 costumi\n • 4 picconi\n • 3 deltaplani\n • 2 Dorso decorativo\n • 5 Scie Skydive\n • 20 Spray\n • 1300 V-buck\n • ...e molto altro ancora!",
+ "fr": "Saison 4 : jusqu'au 9 juillet\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3 500 V-bucks.\n • Tenue Carburo\n • Tenue Le Faucon\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • L'accès aux défis hebdomadaires\n • L'accès aux défis Superproduction\n • L'accès aux défis de Carburo\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Oméga plus 4 autres tenues\n • 4 pioches\n • 5 emotes\n • 3 planeurs\n • 2 accessoires de dos\n • 5 traînées de condensation\n • 20 aérosols\n • 1300 V-bucks\n • Et plus !",
+ "zh-cn": "第4赛季:现在起至7月9日\n\n立即获得这些价值3500V币的物品。\n • 碳化合金服装\n • 战鹰服装\n • 50% 额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 获得每周挑战权限\n • 获得爆红挑战权限\n • 获得碳化合金挑战权限\n\n通过游玩提升英雄季卡战阶,解锁100多个奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n •欧米伽以及其他4套服装\n •4个锄头\n • 5个姿势\n • 3个滑翔伞\n • 2个背部装饰\n • 5个滑翔轨迹\n • 20个小涂鸦\n • 1300V币\n • 以及更多奖励!",
+ "es": "Temporada 4: Desde ahora hasta el 9 de julio\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Carburo\n • Traje de halcón bélico\n • Bonificación de PE de partida de temporada del 50%.\n • Bonificación de PE de partida amistosa de temporada del 10%.\n • Acceso a los desafíos semanales.\n • Acceso a los desafíos de Taquillazo.\n • Acceso a los desafíos de Carburo.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Omega más otros 4 trajes.\n • 4 picos.\n • 5 gestos.\n • 3 alas delta.\n • 2 accesorios mochileros.\n • 5 estelas de descenso.\n • 20 grafitis.\n • 1300 paVos\n • ¡Y mucho más!",
+ "ar": "Season 4: Now thru July 9\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Carbide Outfit\n • Battlehawk Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Access to Weekly Challenges\n • Access to Blockbuster Challenges\n • Access to Carbide Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Omega plus 4 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 3 Gliders\n • 2 Back Blings\n • 5 Skydiving Trails\n • 20 Sprays\n • 1300 V-Bucks\n • and so much more!",
+ "ja": "シーズン4: 7月9日まで\n\n3,500 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・カーバイドコスチューム\n ・バトルホークコスチューム\n ・シーズンマッチXPの50%ボーナス\n ・シーズンフレンドマッチXPの10%ボーナス\n ・ウィークリーチャレンジへの挑戦権\n ・ブロックバスターチャレンジへの挑戦権\n ・カーバイドチャレンジへの挑戦権\n\nプレイしてバトルパスのレベルを上げると、100個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・オメガコスチュームとさらに他のコスチュームx4\n ・ツルハシx4\n ・エモートx5\n ・グライダーx3\n ・バックアクセサリーx2\n ・スカイダイビングトレイルx5\n ・スプレーx20\n ・1300 V-Bucks\n ・他にも色々!",
+ "pl": "Sezon 4: potrwa do 9 lipca\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3 500 V-dolców:\n • Strój: Karbid\n • Strój: Bojowy Jastrząb\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomym\n • Dostęp do wyzwań tygodnia\n • Dostęp do wyzwań Hitu Ekranu\n • Dostęp do wyzwań Karbida\n\nGraj dalej, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie normalnie zajmuje od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Omega plus 4 inne stroje\n • 4 kilofy\n • 5 emotek\n • 3 lotnie\n • 2 plecaki\n • 5 smug lotni\n • 20 graffiti\n • 1300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 4: Ahora hasta el 9 de julio\n\n¡Obtén al instante estos objetos que cuestan más de 3500 monedas V!\n • Atuendo Carburo\n • Atuendo Halcón de combate\n • 50 % de PE de bonificación para partidas de la temporada\n • 10 % de PE de bonificación para partidas con amigos en la temporada\n • Acceso a los desafíos semanales\n • Acceso a los desafíos de Taquillazo\n • Acceso a los desafíos de Carburo\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • Omega más otros 4 atuendos\n • 4 picos\n • 5 gestos\n • 3 planeadores\n • 2 mochilas retro\n • 5 rastros de caída libre\n • 20 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!",
+ "tr": "4. Sezon: Şu andan 9 Temmuz’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Demir Maske Kıyafeti\n • Savaş Şahini Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • Haftalık Görevlere Erişim\n • Gişe Rekortmeni Görevlerine Erişim\n • Demir Maske Görevlerine Erişim\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 100’den fazla ödülü aç (yaklaşık 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Omega artı 4 kıyafet daha\n • 4 Kazma\n • 5 İfade\n • 3 Planör\n • 2 Sırt Süsü\n • 5 Hava Dalışı İzi\n • 20 Sprey\n • 1300 V-Papel\n • ve çok daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season4_BattlePass.DA_BR_Season4_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "E9527AF46F4B4A9CAE98D91F2AA53CB6",
+ "devName": "BR.Season4.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "素晴らしい報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason5",
+ "catalogEntries": [
+ {
+ "offerId": "FF77356F424644529049280AFC8A795E",
+ "devName": "BR.Season5.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64E",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 5: Ab sofort bis 25. September\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Jägerin (Outfit)\n • Drift (Outfit)\n • Rotstreifen (Outfit)\n • Ballonhacke (Spitzhacke)\n • Funker (Rücken-Accessoire)\n • Laternen (Flugspur)\n • 2 Hängegleiter\n • 4 Spraymotive\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen • fortschreitende Drift-Herausforderungen\n • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Ragnarök und 4 weitere Outfits\n • 3 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Flugspuren\n • 11 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Пятый сезон: до 25 сентября\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Астрид;\n • экипировка Ронина;\n • экипировка Красной Линии;\n • кирка «Шарики»;\n • украшение на спину «Рюкзак-скрутка»;\n • воздушный след «Фонарики»;\n • 2 дельтаплана;\n • 4 граффити;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Ронина;\n • и многое другое!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Рагнарёка и ещё 4 костюма;\n • 3 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 4 украшения на спину;\n • 4 воздушных следа;\n • 11 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!",
+ "ko": "시즌 5: 9월 25일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 헌트리스 의상\n • 드리프트 의상\n • 레드라인 의상\n • 풍선 도끼 곡괭이\n • 업링크 등 장신구\n • 등불 스카이다이빙 트레일\n • 글라이더 2개\n • 스프레이 4개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 드리프트 연속 도전\n • 그 외 혜택!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 라그나로크 외 의상 4개\n • 곡괭이 3개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 4개\n • 스카이다이빙 트레일 4개\n • 스프레이 11개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第5賽季:從今天起直到9月25號\n\n立即獲得以下總價值超過1萬V幣的物品。\n •“女獵手”套裝 •“天狐”套裝\n • “紅線”套裝\n • “氣球斧”鋤頭\n • “上傳” 背部裝飾\n •“燈籠” 滑翔軌跡\n • 2種滑翔傘\n • 4種噴漆圖案\n • 70% 額外賽季匹配經驗值\n • 20% 額外賽季好友匹配經驗值\n • 額外的每週挑戰\n • 天狐進度挑戰\n • 以及更多獎勵\n\n玩遊戲以提升你的英雄季卡,解鎖超過75中獎勵(一般情況下全解鎖需要75至150小時的遊玩時間)想要更快解鎖?你隨時可以用V幣購買戰階等級!\n • “諸神黃昏”外加4套其他服裝\n • 3款鋤頭\n • 4種姿勢\n • 2款滑翔傘\n • 4種背部裝飾\n • 4種滑翔軌跡\n • 11款塗鴉\n • 1300V幣\n •以及更多內容!",
+ "pt-br": "Temporada 5: de hoje até 25 de setembro\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Caçadora\n • Traje Atemporal\n • Traje Acelerada\n • Picareta Balãoreta\n • Acessório para as Costas Conexão\n • Rastro de Queda Livre Lanternas\n • 2 Asas-deltas\n • 4 Sprays\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Atemporal Progressivos\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ragnarok e mais 4 outros trajes\n • 3 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 11 Sprays\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • “Huntress” Outfit\n • “Drift” Outfit\n • “Redline” Outfit\n • “Balloon Axe” Pickaxe\n • “Uplink” Back Bling\n • “Lanterns” Skydiving Trail\n • 2 Gliders\n • 4 Sprays\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 4 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "it": "Incrementa di 5 secondi la durata dell'effetto attivo di Allo sbaraglio.",
+ "fr": "Saison 5 : jusqu'au 25 septembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Chasseresse\n • Tenue Nomade\n • Tenue Ligne rouge\n • Pioche Baudruche\n • Accessoire de dos Radiotransmetteur\n • Traînée de condensation Lanternes\n • 2 planeurs\n • 4 aérosols\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs du Nomade\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Ragnarök plus 4 autres tenues\n • 3 pioches\n • 4 emotes\n • 2 planeurs\n • 4 accessoires de dos\n • 4 traînées de condensation\n • 11 aérosols\n • 1300 V-bucks\n • Et plus !",
+ "zh-cn": "第5赛季:从今天起直到9月25号\n\n立即获得以下总价值超过1万V币的物品。\n •“女猎手”套装 •“天狐”套装\n • “红线”套装\n • “气球斧”锄头\n • “上传” 背部装饰\n •“灯笼” 滑翔轨迹\n • 2种滑翔伞\n • 4种喷漆图案\n • 70% 额外赛季匹配经验值\n • 20% 额外赛季好友匹配经验值\n • 额外的每周挑战\n • 天狐进度挑战\n • 以及更多奖励\n\n玩游戏以提升你的英雄季卡,解锁超过75中奖励(一般情况下全解锁需要75至150小时的游玩时间)想要更快解锁?你随时可以用V币购买战阶等级!\n • “诸神黄昏”外加4套其他服装\n • 3款锄头\n • 4种姿势\n • 2款滑翔伞\n • 4种背部装饰\n • 4种滑翔轨迹\n • 11款涂鸦\n • 1300V币\n •以及更多内容!",
+ "es": "Temporada 5: Desde ahora hasta el 25 de septiembre\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Cazadora.\n • Traje de Deriva.\n • Traje de Revolucionada.\n • Pico Hacha globo.\n • Accesorio mochilero Enlace ascendente.\n • Estela de descenso Farolillos.\n • 2 alas delta.\n • 4 grafitis.\n • Bonificación de PE de partida de temporada del 70 %.\n • Bonificación de PE de partida amistosa de temporada del 20 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Deriva.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas adicionales (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Ragnarok más otros 4 trajes.\n • 3 picos.\n • 4 gestos.\n • 2 alas delta.\n • 4 accesorios mochileros.\n • 4 estelas de descenso.\n • 11 grafitis.\n • 1300 paVos\n • ¡Y mucho más!",
+ "ar": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • “Huntress” Outfit\n • “Drift” Outfit\n • “Redline” Outfit\n • “Balloon Axe” Pickaxe\n • “Uplink” Back Bling\n • “Lanterns” Skydiving Trail\n • 2 Gliders\n • 4 Sprays\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 4 other outfits\n • 3 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "ja": "シーズン5: 9月25日まで\n\n10,000 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・「ハントレス」コスチューム\n ・「ドリフト」コスチューム\n ・「レッドライン」コスチューム\n ・「バルーンアックス」ツルハシ\n ・「アップリンク」バックアクセサリー\n ・「ランタン」スカイダイビングトレイル\n ・グライダー2個\n ・スプレー4個\n ・シーズンマッチXPの70%ボーナス\n ・シーズンフレンドマッチXPの20%ボーナス\n ・追加のウィークリーチャレンジ\n ・ドリフトプログレッシブチャレンジ\n ・他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・「ラグナロク」とさらに他のコスチュームx4\n ・ツルハシx3\n ・エモートx4\n ・グライダーx2\n バックアクセサリーx4\n スカイダイビングトレイルx4\n ・スプレーx11\n ・1,300 V-Bucks\n 他にも色々!",
+ "pl": "Sezon 5: potrwa do 25 września\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Łowczyni\n • Strój: Drift\n • Strój: Prędkość Graniczna\n • Kilof: Balon\n • Plecak: Łącznik\n • Smuga: Latarnie\n • 2 lotnie\n • 4 graffiti\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomym\n • Dostęp do dodatkowych wyzwań tygodniowych\n • Dostęp do progresywnych wyzwań Drifta\n • I jeszcze więcej!\n\nGraj, aby awansować karnet bojowy i odkryć do 75 nagród (ich zdobycie zajmuje zwykle od 75 do 150 godz. gry). Chcesz rozwijać się szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Zmierzch Bogów plus 4 inne stroje\n • 3 kilofy\n • 4 emotki\n • 2 lotnie\n • 4 plecaki\n • 4 smugi\n • 11 graffiti\n • 1300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 5: Ahora hasta el 25 de septiembre\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo \"Cazadora\"\n • Atuendo \"Deriva\"\n • Atuendo \"Línea roja\"\n • Pico \"Globo\"\n • Mochila retro \"Enlace ascendente\"\n • Rastro de caída libre \"Faroles\"\n • 2 planeadores\n • 4 aerosoles\n • 70 % de bonificación de PE para partidas de la temporada\n • 20% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Deriva\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquear más de 75 recompensas adicionales (normalmente toma de 75 a 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • \"Ragnarok\" más otros 4 atuendos\n • 3 picos\n • 4 gestos\n • 2 planeadores\n • 4 mochilas retro\n • 4 rastros de caída libre\n • 11 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!",
+ "tr": "5. Sezon: Şu andan 25 Eylül’e kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • “Avcı Viking” Kıyafeti\n • “Drift” Kıyafeti\n • “Gözüpek Yarışçı” Kıyafeti\n • “Balon Kazma”\n • “Telsizli Çanta” Sırt Süsü\n • “Fenerler” Hava Dalışı İzi\n • 2 Planör\n • 4 Sprey\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevlere Erişim\n • İlerlemeli Drift Görevleri\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • “Ragnarok” artı 4 kıyafet daha\n • 3 Kazma\n • 4 İfade\n • 2 Planör\n • 4 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 11 Sprey\n • 1.300 V-Papel\n • ve çok daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season5_BattlePassWithLevels.DA_BR_Season5_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "D51A2F28AAF843C0B208F14197FBFE91",
+ "devName": "BR.Season5.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2B4936F24F3179416FEFD49DA5C4B64E",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 5",
+ "ru": "Сезон 5",
+ "ko": "시즌 5",
+ "zh-hant": "第5賽季",
+ "pt-br": "Temporada 5",
+ "en": "Season 5",
+ "it": "Stagione 5",
+ "fr": "Saison 5",
+ "zh-cn": "第5赛季",
+ "es": "Temporada 5",
+ "ar": "Season 5",
+ "ja": "シーズン5",
+ "pl": "Sezon 5",
+ "es-419": "Temporada 5",
+ "tr": "5. Sezon"
+ },
+ "description": {
+ "de": "Saison 5: Ab sofort bis 25. September\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Jägerin (Outfit)\n • Drift (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen\n • fortschreitende Drift-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Ragnarök und 5 weitere Outfits\n • 4 Spitzhacken\n • 5 Emotes\n • 4 Hängegleiter\n • 5 Rücken-Accessoires\n • 5 Flugspuren\n • 15 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Пятый сезон: до 25 сентября\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Астрид;\n • экипировка Ронина;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Ронина.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Рагнарёка и ещё 5 костюмов;\n • 4 кирки;\n • 5 эмоций;\n • 4 дельтаплана;\n • 5 украшений на спину;\n • 5 воздушных следов;\n • 15 граффити;\n • 1300 В-баксов;\n • и это ещё не всё!",
+ "ko": "시즌 5: 9월 25일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 헌트리스 의상\n • 드리프트 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 드리프트 연속 도전\n\n배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 라그나로크 외 의상 5개\n • 곡괭이 4개\n • 이모트 5개\n • 글라이더 4개\n • 등 장신구 5개\n • 스카이다이빙 트레일 5개\n • 스프레이 15개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第5賽季:從現在起到9月25日\n\n立即獲得這些價值超過3500V幣的物品。\n • 女獵手服裝\n • 天狐服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外的每週挑戰\n • 天狐漸進挑戰\n\n通過遊玩升級你的英雄季卡,解鎖超過100項獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • “諸神黃昏”外加5套其他服裝\n • 4個鋤頭\n • 5個姿勢\n • 4個滑翔傘\n • 5個背部裝飾\n • 5個滑翔軌跡\n • 15個塗鴉\n • 1300V幣\n •以及更多!",
+ "pt-br": "Temporada 5: de hoje até 25 de julho\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Caçadora\n • Traje Atemporal\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Atemporal Progressivos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • O Ragnarok e mais 5 outros trajes\n • 4 Picaretas\n • 5 Gestos\n • 4 Asas-deltas\n • 5 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 15 Sprays\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Huntress Outfit\n • Drift Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 5 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 5 Back Blings\n • 5 Skydiving Trails\n • 15 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "it": "Stagione 5: fino al 25 settembre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Cacciatrice\n • Costume Alla deriva\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico\n • Sfide settimanali extra\n • Sfide progressive Alla deriva\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando fino a 100 ricompense (necessarie tra le 75-150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per acquistare i livelli in qualsiasi momento!\n • \"Ragnarok\" e altri 5 costumi\n • 4 picconi\n • 5 emote\n • 4 deltaplani\n • 5 dorsi decorativi\n • 5 scie Skydive\n • 15 spray\n • 1300 V-buck\n • ...e molto altro ancora!",
+ "fr": "Saison 5 : jusqu'au 25 septembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Chasseresse\n • Tenue Nomade\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs du Nomade\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Ragnarök plus 5 autres tenues\n • 4 pioches\n • 5 emotes\n • 4 planeurs\n • 5 accessoires de dos\n • 5 traînées de condensation\n • 15 aérosols\n • 1300 V-bucks\n • Et plus !",
+ "zh-cn": "第5赛季:从现在起到9月25日\n\n立即获得这些价值超过3500V币的物品。\n • 女猎手服装\n • 天狐服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外的每周挑战\n • 天狐渐进挑战\n\n通过游玩升级你的英雄季卡,解锁超过100项奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • “诸神黄昏”外加5套其他服装\n • 4个锄头\n • 5个姿势\n • 4个滑翔伞\n • 5个背部装饰\n • 5个滑翔轨迹\n • 15个涂鸦\n • 1300V币\n •以及更多!",
+ "es": "Temporada 5: Desde ahora hasta el 25 de septiembre\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Cazadora.\n • Traje de Deriva.\n • Bonificación de PE de partida de temporada del 50 %.\n • Bonificación de PE de partida amistosa de temporada del 10 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Deriva.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Ragnarok más otros 5 trajes.\n • 4 picos.\n • 5 gestos.\n • 4 alas delta.\n • 5 accesorios mochileros.\n • 5 estelas de descenso.\n • 15 grafitis.\n • 1300 paVos\n • ¡Y mucho más!",
+ "ar": "Season 5: Now thru Sept 25\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Huntress Outfit\n • Drift Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Drift Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • “Ragnarok” plus 5 other outfits\n • 4 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 5 Back Blings\n • 5 Skydiving Trails\n • 15 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "ja": "シーズン5: 9月25日まで\n\n3,500 V-Bucks以上の価値があるアイテムをすぐに手に入れましょう\n ・ハントレスコスチューム\n ・ドリフトコスチューム\n ・シーズンマッチXPの50%ボーナス\n ・シーズンフレンドマッチXPの10%ボーナス\n ・追加のウィークリーチャレンジ\n ・ドリフトプログレッシブチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n ・「ラグナロク」とさらに他のコスチュームx5\n ・ツルハシx4\n ・エモートx5\n ・グライダーx4\n ・バックアクセサリーx5\n ・スカイダイビングトレイルx5\n ・スプレーx15\n ・1,300 V-Bucks\n ・他にも色々!",
+ "pl": "Sezon 5: potrwa do 25 września\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3 500 V-dolców:\n • Strój: Łowczyni\n • Strój: Drift\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomym\n • Dostęp do dodatkowych wyzwań tygodniowych\n • Dostęp do progresywnych wyzwań Drifta\n\nGraj, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić poziomy za V-dolce!\n • Zmierzch Bogów plus 5 innych strojów\n • 4 kilofy\n • 5 emotek\n • 3 lotnie\n • 5 plecaków\n • 5 smug lotni\n • 15 graffiti\n • 1 300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 5: Ahora hasta el 25 de septiembre\n\nObtén estos objetos instantáneamente valuados en más de 3500 monedas V.\n • Atuendo de Cazadora\n • Atuendo de Deriva\n • 50 % de bonificación de PE para partidas de la temporada\n • 10% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Deriva\n\nJuega para subir de nivel tu pase de batalla, desbloqueando más de 100 recompensas (normalmente toma de 75 a 150 horas de juego). ¿Lo quieres todo más rápido? ¡Puedes utilizar monedas V para comprar niveles cuando quieras!\n • “Ragnarok” más otros 5 atuendos\n • 4 picos\n • 5 gestos\n • 4 planeadores\n • 5 mochilas retro\n • 5 rastros de caída libre\n • 15 aerosoles\n • 1300 monedas V\n • ¡Y mucho más!",
+ "tr": "5. Sezon: 25 Eylül’e kadar sürecek\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Avcı Viking Kıyafeti\n • Drift Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Arkadaşlar için Sezonluk Maç TP’si\n • Fazladan Haftalık Görevler\n • İlerlemeli Drift Görevleri\n\nBattle Royale oynayarak Savaş Bileti’nin seviyesini yükselt, 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsine hemen sahip olmak mı istiyorsun? V-Papel kullanarak aşamaları istediğin zaman açabilirsin!\n • “Ragnarok” artı 5 kıyafet daha\n • 4 Kazma\n • 5 İfade\n • 4 Planör\n • 5 Sırt Süsü\n • 5 Hava Dalışı İzi\n • 15 Sprey\n • 1.300 V-Papel\n • ve daha pek çok şey!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season5_BattlePass.DA_BR_Season5_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "4B2E310BC1AE40B292A16D5AAD747E0A",
+ "devName": "BR.Season5.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason6",
+ "catalogEntries": [
+ {
+ "offerId": "19D4A5ACC90B4CDF88766A0C8A6D13FB",
+ "devName": "BR.Season6.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "854FAED044783BF137181887C325FFD2",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 6: Ab sofort bis 6. Dezember\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Calamity (Outfit)\n • DJ Yonder (Outfit)\n • Aufgesattelt (Outfit)\n • Krachender Mix (Spitzhacke)\n • Picknick (Hängegleiter)\n • Märchenumhang (Rücken-Accessoire)\n • 3 Spraymotive\n • Wuffel (Gefährte)\n • Düsen (Flugspur)\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche Wöchentliche Herausforderungen\n • Calamity-Herausforderungen • und mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 weitere Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Wolf und 3 weitere Outfits\n • 2 Gefährten\n • 2 Spitzhacken\n • 4 Emotes\n • 2 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Flugspuren\n • 11 Spraymotive\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Шестой сезон: до 6 декабря\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • экипировка Тёмного рейнджера;\n • экипировка Эм Си Ламы;\n • экипировка Наездника;\n • кирка «Эквалайзер»;\n • дельтаплан «Гостинец»;\n • украшение на спину «Красный плащ»;\n • 3 граффити;\n • питомец Дружок;\n • воздушный след «Выхлоп»;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • испытания Тёмного рейнджера;\n • и это ещё не всё!\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Оборотня и ещё 3 костюма;\n • 2 питомца;\n • 2 кирки;\n • 4 эмоции;\n • 2 дельтаплана;\n • 4 украшения на спину;\n • 4 воздушных следов;\n • 11 граффити;\n • 1 300 В-баксов;\n • и это ещё не всё!",
+ "ko": "시즌 6: 12월 6일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 캘러미티 의상\n • DJ 욘더 의상\n • 라마 라이더 의상\n • 스매시 업 곡괭이\n • 피크닉 글라이더\n • 빨간 망토 등 장신구\n • 스프레이 3개\n • 보니 애완동물\n • 엔진 불꽃 스카이다이빙 트레일\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 캘러미티 연속 도전\n • 그 외 혜택!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 다이어 외 의상 3개\n • 애완동물 2개\n • 곡괭이 2개\n • 이모트 4개\n • 글라이더 2개\n • 등 장신구 4개\n • 스카이다이빙 트레일 4개\n • 스프레이 11개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第六賽季:現在起至12月6日\n\n立即獲得以下總價值逾10000V幣的物品。\n • 災厄俠客服裝\n • 金碟鐵馬服裝\n • 策馬奔騰服裝\n • 粉碎鎬\n • 野餐滑翔傘\n • 寓言斗篷背部裝飾\n • 3個塗鴉\n • 犬崽寵物\n • 助力推進滑翔軌跡\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 災厄俠客挑戰\n • 及其他獎勵!\n\n通過遊玩提升英雄勳章戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • 驚懼狼人與其他三種服裝\n • 2只寵物\n • 2個鎬\n • 4個姿勢\n • 2個滑翔傘\n • 4個背部裝飾\n • 4個滑翔軌跡\n • 11個塗鴉\n • 1300V幣\n • 及其他獎勵!",
+ "pt-br": "Temporada 6: de hoje até 6 de dezembro\n\nGanhe instantaneamente esses itens avaliados em mais de 10.000 V-Bucks.\n • Traje Calamidade\n • Traje DJ Além\n • Traje Lhaminha\n • Picareta Quebra Tudo\n • Asa-delta Piquenique\n • Acessório para as Costas Capa Fabulosa\n • 3 Sprays\n • Mascote Ossíneo\n • Rastro de Queda Livre Exaustor\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Calamidade\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • Lupino e mais 3 outros trajes\n • 2 Mascotes\n • 2 Picaretas\n • 4 Gestos\n • 2 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Rastros de Queda Livre\n • 11 Sprays\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • Giddy-up Outfit\n • Smash-Up Pickaxe\n • Picnic Glider\n • Fabled Cape Back Bling\n • 3 Sprays\n • Bonesy Pet\n • Exhaust Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 3 other outfits\n • 2 Pets\n • 2 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "it": "Stagione 6: da ora al 6 dicembre\n\nOttieni subito questi oggetti, per un valore di oltre 10.000 V-buck.\n • Costume Calamity\n • Costume DJ Yonder\n • Costume Giddy-up\n • Piccone Smash-Up\n • Deltaplano Picnic\n • Dorso decorativo Fabled Cape\n • 3 spray\n • Piccolo amico Bonesy\n • Scia skydive Exhaust\n • 70% di bonus ai PE partita stagione\n • 20% di bonus ai PE partita amichevole stagione\n • Sfide settimanali extra\n • Sfide Calamity\n • E altro ancora!\n\nGioca per far salire di livello il tuo Pass battaglia e sblocca fino a 75+ altre ricompense (tipicamente occorrono da 75 a 150 ore di gioco). Vuoi tutto più in fretta? Puoi usare i V-buck per comprare livelli in qualsiasi momento!\n • Manny più 3 altri costumi\n • 2 Piccoli amici\n • 2 picconi\n • 4 emote\n • 2 deltaplani\n • 4 dorsi decorativi\n • 4 scie skydive\n • 11 spray\n • 1300 V-buck\n • E molto altro ancora!",
+ "fr": "Saison 6 : jusqu'au 6 décembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Calamité\n • Tenue DJ Lama\n • Tenue Fier destrier\n • Pioche Contrôleur DJ\n • Planeur Pique-nique\n • Accessoire de dos Cape rouge\n • 3 aérosols\n • Le compagnon Ticaillou\n • Traînée de condensation Gaz d'échappement\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs de Calamité\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Lycan plus 3 autres tenues\n • 2 compagnons\n • 2 pioches\n • 4 emotes\n • 2 planeurs\n • 4 accessoires de dos\n • 4 traînées de condensation\n • 11 aérosols\n • 1 300 V-bucks\n • Et plus !",
+ "zh-cn": "第六赛季:现在起至12月6日\n\n立即获得以下总价值逾10000V币的物品。\n • 灾厄侠客服装\n • 金碟铁马服装\n • 策马奔腾服装\n • 粉碎镐\n • 野餐滑翔伞\n • 寓言斗篷背部装饰\n • 3个涂鸦\n • 犬崽宠物\n • 助力推进滑翔轨迹\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 灾厄侠客挑战\n • 及其他奖励!\n\n通过游玩提升英雄勋章战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • 惊惧狼人与其他三种服装\n • 2只宠物\n • 2个镐\n • 4个姿势\n • 2个滑翔伞\n • 4个背部装饰\n • 4个滑翔轨迹\n • 11个涂鸦\n • 1300V币\n • 及其他奖励!",
+ "es": "Temporada 6: Desde ahora hasta el 6 de diciembre.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Calamidad.\n • Traje de Llama DJ.\n • Traje de Galopante.\n • Pico Pico de mezclas.\n • Ala delta Picnic.\n • Accesorio mochilero Capa de Fábula.\n • 3 grafitis.\n • Mascota Huesete.\n • Estela de descenso Tubo de escape.\n • Bonificación de PE de partida de temporada del 70 %.\n • Bonificación de PE de partida amistosa de temporada del 20 %.\n • Desafíos semanales adicionales.\n • Desafíos de Calamidad.\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquea más de 75 recompensas adicionales (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Lobuno más otros 3 trajes.\n • 2 mascotas.\n • 2 picos.\n • 4 gestos.\n • 2 alas delta.\n • 4 accesorios mochileros.\n • 4 estelas de descenso.\n • 11 grafitis.\n • 1300 paVos.\n • ¡Y mucho más!",
+ "ar": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • Giddy-up Outfit\n • Smash-Up Pickaxe\n • Picnic Glider\n • Fabled Cape Back Bling\n • 3 Sprays\n • Bonesy Pet\n • Exhaust Skydiving Trail\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking up to 75+ more rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 3 other outfits\n • 2 Pets\n • 2 Pickaxes\n • 4 Emotes\n • 2 Gliders\n • 4 Back Blings\n • 4 Skydiving Trails\n • 11 Sprays\n • 1,300 V-Bucks\n • and so much more!",
+ "ja": "シーズン6: 12月6日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • 「カラミティ」コスチューム\n • 「DJ ヨンダー」コスチューム\n • 「ギディーアップ」コスチューム\n • 「スマッシュアップ」ツルハシ\n • 「ピクニック」グライダー\n • 「寓話のケープ」バックアクセサリー\n • スプレーx3\n • 「ボーンジー」ペット\n • 「エグゾースト」スカイダイビングトレイル\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • カラミティチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n • ダイアとその他コスチュームx3\n • ペットx2\n • ツルハシx2\n • エモートx4\n • グライダーx2\n • バックアクセサリーx4\n • スカイダイビングトレイルx4\n • スプレーx11\n • 1,300 V-Bucks\n • 他にも色々!",
+ "pl": "Sezon 6: od teraz do 6 grudnia\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój: Kowbojka\n • Strój: DJ Jak-mu-tam\n • Strój: Jazda\n • Kilof: Ostry Rytm\n • Lotnia: Piknik\n • Plecak: Bajkowy Kapturek\n • 3 graffiti\n • Pupil: Kostek\n • Smuga: Spaliny\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • Dostęp do wyzwań Kowbojki\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć do 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!\n • Straszliwiec plus 3 inne stroje\n • 2 pupile\n • 2 kilofy\n • 4 emotki\n • 2 lotnie\n • 4 plecaki\n • 4 smugi\n • 11 graffiti\n • 1300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 6: Ahora hasta el 6 de diciembre\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo Calamidad\n • Atuendo DJ Llama\n • Atuendo Arre llama\n • Pico Mezclador\n • Planeador Pícnic\n • Mochila retro Capa de Fábula\n • 3 Aerosoles\n • Mascota Huesitos\n • Rastro de caída libre Escape\n • 70% de bonificación de PE para partidas de la temporada\n • 20% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos de Calamidad\n • ¡y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Usa monedas V para comprar niveles en cualquier momento!\n • Amenaza inminente más otros 3 atuendos\n • 2 mascotas\n • 2 picos\n • 4 gestos\n • 2 planeadores\n • 4 mochilas retro\n • 4 rastros de caída libre\n • 11 aerosoles\n • 1300 monedas V\n • ¡y mucho más!",
+ "tr": "6. Sezon: Şu andan 6 Aralık’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Belalı Kovboy Kıyafeti\n • DJ Lama Kıyafeti\n • Dıgıdık Kıyafeti\n • Miks Kazması\n • Piknik Sepeti Planörü\n • Masal Pelerini Sırt Süsü\n • 3 Sprey\n • Sadık Dost Şanslı\n • İniş Motoru Hava Dalışı İzi\n • %70 Bonus Sezonluk Maç TP’si\n • %20 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevlere Erişim\n • Belalı Kovboy Görevleri\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Kurtadam artı 3 kıyafet daha\n • 2 Sadık Dost\n • 2 Kazma\n • 4 İfade\n • 2 Planör\n • 4 Sırt Süsü\n • 4 Hava Dalışı İzi\n • 11 Sprey\n • 1.300 V-Papel\n • ve çok daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season6_BattlePassWithLevels.DA_BR_Season6_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "A6FE59C497B844068E1B5D84396F19BA",
+ "devName": "BR.Season6.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "素晴らしい報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ },
+ {
+ "offerId": "9C8D0323775A4F59A1D4283E3FDB356C",
+ "devName": "BR.Season6.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "854FAED044783BF137181887C325FFD2",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 6",
+ "ru": "Сезон 6",
+ "ko": "시즌 6",
+ "zh-hant": "第6賽季",
+ "pt-br": "Temporada 6",
+ "en": "Season 6",
+ "it": "Stagione 6",
+ "fr": "Saison 6",
+ "zh-cn": "第6赛季",
+ "es": "Temporada 6",
+ "ar": "Season 6",
+ "ja": "シーズン6",
+ "pl": "Sezon 6",
+ "es-419": "Temporada 6",
+ "tr": "6. Sezon"
+ },
+ "description": {
+ "de": "Saison 6: Ab sofort bis 6. Dezember\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Calamity (Outfit)\n • DJ Yonder (Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • fortschreitende Calamity-Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt). Das dauert dir zu lange? Mit V-Bucks kannst du jederzeit Stufen kaufen!\n • Wolf und 4 weitere Outfits\n • 3 Gefährten\n • 3 Spitzhacken\n • 5 Emotes\n • 4 Hängegleiter\n • 4 Rücken-Accessoires\n • 5 Flugspuren\n • 14 Spraymotive\n • 2 Spielsachen\n • 3 Songs\n • 1.300 V-Bucks\n • und noch eine ganze Menge mehr!",
+ "ru": "Шестой сезон: до 6 декабря\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • экипировка Тёмного рейнджера;\n • экипировка Эм Си Ламы;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания;\n • последовательные испытания Тёмного рейнджера.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры; но если вы не хотите ждать, этот процесс можно ускорить за В-баксы.\n • экипировка Оборотня и ещё 4 костюма;\n • 3 питомца;\n • 3 кирки;\n • 5 эмоций;\n • 4 дельтаплана;\n • 4 украшения на спину;\n • 5 воздушных следов;\n • 14 граффити;\n • 2 игрушки;\n • 3 музыкальных композиции;\n • 1300 В-баксов;\n • и многое другое!",
+ "ko": "시즌 6: 12월 6일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 캘러미티 의상\n • DJ 욘더 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 캘러미티 연속 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요). 더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!\n • 다이어 외 의상 4개\n • 애완동물 3개\n • 곡괭이 3개\n • 이모트 5개\n • 글라이더 4개\n • 등 장신구 4개\n • 스카이다이빙 트레일 5개\n • 스프레이 14개\n • 장난감 2개\n • 음악 트랙 3개\n • 1,300 V-Bucks\n • 그 외 많은 혜택!",
+ "zh-hant": "第六賽季:現在起至12月6日\n\n立即獲得這些價值3500V幣的物品。\n • 災厄俠客服裝\n • 金碟鐵馬服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外每週挑戰\n • 災厄俠客可進化挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。希望更快嗎?你可以隨時使用V幣購買戰階!\n • 驚懼狼人及其他4套服裝\n • 3個寵物\n • 3個鋤頭\n • 5個姿勢\n • 4個滑翔傘\n • 4個背部裝飾\n • 5個滑翔軌跡\n • 14個塗鴉\n • 2個玩具\n • 3個音軌\n • 1300V幣\n • 以及更多獎勵!",
+ "pt-br": "Temporada 6: de hoje até 6 de dezembro\n\nGanhe instantaneamente esses itens avaliados em mais de 3.500 V-Bucks.\n • Traje Calamidade\n • Traje DJ Além\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • Desafios Calamidade Progressivos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média 75 a 150 horas de jogo). Quer mais rápido? Você pode usar V-Bucks para comprar categorias a qualquer momento!\n • Lupino e mais 4 outros trajes\n • 3 Mascotes\n • 3 Picaretas\n • 5 Gestos\n • 4 Asas-deltas\n • 4 Acessórios para as Costas\n • 5 Rastros de Queda Livre\n • 14 Sprays\n • 2 Brinquedos\n • 3 Faixas Musicais\n • 1.300 V-Bucks\n • e muito mais!",
+ "en": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 4 other outfits\n • 3 Pets\n • 3 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 4 Back Blings\n • 5 Skydiving Trails\n • 14 Sprays\n • 2 Toys\n • 3 Music Tracks\n • 1,300 V-Bucks\n • and so much more!",
+ "it": "Stagione 6: Fino al 6 dicembre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n• Costume Calamity\n• Costume DJ Yonder\n• Bonus del 50% dei PE partite stagionali\n• Bonus del 10% dei PE partite amico stagionali\n• Sfide settimanali extra\n• Sfide progressive Calamity\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco). Vuoi tutto e subito? Puoi usare i V-buck per acquistare livelli in qualsiasi momento!\n• Manny e altri 4 costumi\n• 3 piccoli amici\n• 3 picconi\n• 5 emote\n• 4 deltaplani\n• 4 dorsi decorativi\n• 5 scie skydive\n• 14 spray\n• 2 giocattoli\n• 3 brani musicali\n• 1.300 V-buck\n• E tanto altro!",
+ "fr": "Saison 6 : jusqu'au 6 décembre\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Calamité\n • Tenue DJ Lama\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Les défis progressifs de Calamité\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu). Envie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !\n • Lycan plus 4 autres tenues\n • 3 compagnons\n • 3 pioches\n • 5 emotes\n • 4 planeurs\n • 4 accessoires de dos\n • 5 traînées de condensation\n • 14 aérosols\n • 2 jouets\n • 3 pistes musicales\n • 1300 V-bucks\n • Et plus !",
+ "zh-cn": "第六赛季:现在起至12月6日\n\n立即获得这些价值3500V币的物品。\n • 灾厄侠客服装\n • 金碟铁马服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外每周挑战\n • 灾厄侠客可进化挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。希望更快吗?你可以随时使用V币购买战阶!\n • 惊惧狼人及其他4套服装\n • 3个宠物\n • 3个锄头\n • 5个姿势\n • 4个滑翔伞\n • 4个背部装饰\n • 5个滑翔轨迹\n • 14个涂鸦\n • 2个玩具\n • 3个音轨\n • 1300V币\n • 以及更多奖励!",
+ "es": "Temporada 6: desde ahora hasta el 6 de diciembre.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Calamidad.\n • Traje de Llama DJ.\n • Bonificación de PE de partida de temporada del 50 %.\n • Bonificación de PE de partida amistosa de temporada del 10 %.\n • Desafíos semanales adicionales.\n • Desafíos progresivos de Calamidad.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego). ¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!\n • Lobuno más otros 4 trajes.\n • 3 mascotas.\n • 3 picos.\n • 5 gestos.\n • 4 alas delta.\n • 4 accesorios mochileros.\n • 5 estelas de descenso.\n • 14 grafitis.\n • 2 juguetes.\n • 3 pistas musicales.\n • 1300 paVos.\n • ¡Y mucho más!",
+ "ar": "Season 6: Now thru Dec 6\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Calamity Outfit\n • DJ Yonder Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • Calamity Progressive Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play). Want it all faster? You can use V-Bucks to buy tiers any time!\n • Dire plus 4 other outfits\n • 3 Pets\n • 3 Pickaxes\n • 5 Emotes\n • 4 Gliders\n • 4 Back Blings\n • 5 Skydiving Trails\n • 14 Sprays\n • 2 Toys\n • 3 Music Tracks\n • 1,300 V-Bucks\n • and so much more!",
+ "ja": "シーズン6: 12月6日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。• 「カラミティ」コスチューム\n • 「DJ ヨンダー」コスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n • カラミティプログレッシブチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。もっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!\n • ダイアとその他コスチュームx4\n • ペットx3\n • ツルハシx3\n • エモートx5\n • グライダーx4\n • バックアクセサリーx4\n • スカイダイビングトレイルx5\n • スプレーx14\n • おもちゃx2\n • ミュージックx3\n • 1,300 V-Bucks\n • 他にも色々!",
+ "pl": "Sezon 6: od teraz do 6 grudnia\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój: Kowbojka\n • Strój: DJ Jak-mu-tam\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • Dostęp do wyzwań Kowbojki\n\nGraj, aby awansować karnet bojowy i zdobyć łącznie ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry). Chcesz się rozwijać szybciej? W każdej chwili możesz kupić stopnie za V-dolce!\n • Straszliwiec plus 4 inne stroje\n • 3 pupile\n • 3 kilofy\n • 5 emotek\n • 4 lotnie\n • 4 plecaki\n • 5 smug\n • 14 graffiti\n • 2 zabawki\n • 3 tła muzyczne\n • 1300 V-dolców\n • I dużo więcej!",
+ "es-419": "Temporada 6: Ahora hasta el 6 de diciembre\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo Calamidad\n • Atuendo DJ Llama\n • 50% de bonificación de PE para partidas de la temporada\n • 10% de PE de bonificación para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • Desafíos progresivos de Calamidad\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego). ¿Lo quieres todo más rápido? ¡Usa monedas V para comprar niveles en cualquier momento!\n • Amenaza inminente más otros 4 atuendos\n • 3 mascotas\n • 3 picos\n • 5 gestos\n • 4 planeadores\n • 4 mochilas retro\n • 5 rastros de caída libre\n • 14 aerosoles\n • 2 juguetes\n • 3 pistas de música\n • 1300 monedas V\n • ¡y mucho más!",
+ "tr": "6. Sezon: Şu andan 6 Aralık’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen edin.\n • Belalı Kovboy Kıyafeti\n • DJ Lama Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • %10 Bonus Sezonluk Arkadaşlar için Maç TP’si\n • İlave Haftalık Görevler\n • İlerlemeli Belalı Kovboy Görevleri\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (yaklaşık 75 ila 150 saat oynama gerektirir). Hepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!\n • Kurtadam artı 4 kıyafet daha\n • 3 Sadık Dost\n • 3 Kazma\n • 5 İfade\n • 4 Planör\n • 4 Sırt Süsü\n • 5 Dalış İzi\n • 14 Sprey\n • 2 Oyuncak\n • 3 Müzik Parçası\n • 1.300 V-Papel\n • ve çok daha fazlası!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season6_BattlePass.DA_BR_Season6_BattlePass",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason7",
+ "catalogEntries": [
+ {
+ "offerId": "347A90158C64424980E8C1B3DC088F37",
+ "devName": "BR.Season7.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "601C6830460BFED07506F5A6D2C4CE7B",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 7: Ab sofort bis 28. Februar\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Zenit (aufrüstbares Outfit)\n • Luchs (aufrüstbares Outfit)\n • Sgt. Winter (Outfit und Stilherausforderungen)\n • Hamirez (Gefährte)\n • Taktischer Schlitten (Hängegleiter)\n • Arktistarnung (Lackierung)\n • Perfektes Geschenk (Rücken-Accessoire)\n • Lichterkette (Kondensstreifen)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.300 V-Bucks\n • 6 Emotes\n • 3 Hängegleiter\n • 4 Rücken-Accessoires\n • 4 Lackierungen\n • 4 Erntwerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 12 Spraymotive\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Седьмой сезон: до 28 февраля\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • улучшаемая экипировка Снежного снайпера;\n • улучшаемая экипировка Неоновой Рыси;\n • экипировка генерала Мороза и испытания стиля;\n • питомец Хома;\n • дельтаплан «Боевые сани»;\n • обёртка «Арктический камуфляж»;\n • украшение на спину «Подарочки»;\n • воздушный след «Гирлянда»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1300 В-баксов;\n • 6 эмоций\n; • 3 дельтаплана;\n • 4 украшения на спину;\n • 4 обёртки;\n • 4 инструмента;\n • 4 воздушных следа;\n • 1 питомец;\n • 12 граффити;\n • 2 музыкальные композиции;\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 7: 2월 28일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 제니스 진화형 의상\n • 링스 진화형 의상\n • 윈터 병장 의상 및 스타일 도전\n • 하미레스 애완동물\n • 전술 썰매 글라이더\n • 극지방 위장 패턴 외관\n • 완벽한 선물 등 장신구\n • 줄조명 스카이다이빙 트레일\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 기타 보상!\n\n배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 의상 4개\n • 1,300 V-Bucks\n • 이모트 6개\n • 글라이더 3개\n • 등 장신구 4개\n • 외관 4개\n • 수확 도구 4개\n • 스카이다이빙 트레일 4개\n • 애완동물 1개\n • 스프레이 12개\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第七賽季:現在起至2月28日\n\n立即獲得這些價值10000V幣的物品。\n • 蒼穹可進化服裝\n • 山貓可進化服裝\n • 冬軍衛士服裝與風格挑戰\n • 竹鼠寵物\n • 戰術雪橇滑翔傘\n • 極地迷彩 皮膚\n• 完美禮物背部裝飾\n • 燈串滑翔軌跡\n • 300 V幣\n • 1個音樂盒\n • 70%額外賽季比賽經驗\n • 20%額外賽季好友比賽經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1,300V幣\n • 6個姿勢\n • 3個滑翔傘\n • 4個背包\n • 4 個皮膚\n • 4個稿\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音樂盒\n •以及更多獎勵!\n希望更快嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 7: De hoje até 28 de fevereiro\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks:\n • Traje Progressivo Zênite\n • Traje Progressivo Lince\n • Traje e Desafios Estilo Sargento Inverno\n • Mascote Hamsterzínea\n • Asa-delta Trenó Tático\n • Envelopamento Camuflagem Ártica\n • Acessório para as Costas Presente Perfeito\n • Rastro de Fumaça Pisca-Pisca\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.300 V-Bucks\n • 6 Gestos\n • 3 Asas-deltas\n • 4 Acessórios para as Costas\n • 4 Envelopamentos\n • 4 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 12 Sprays\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • Sgt. Winter Outfit and Style Challenges\n • Hamirez Pet\n • Tactical Sleigh Glider\n • Arctic Camo Wrap\n • Perfect Present Back Bling\n • String Lights Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,300 V-Bucks\n • 6 Emotes\n • 3 Gliders\n • 4 Back Blings\n • 4 Wraps\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 7: Fino al 28 febbraio\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n• Costume progressivo Zenith\n• Costume progressivo Lynx\n• Costume e sfide stile sergente Bruma\n• Piccolo amico Hamirez\n• Deltaplano Slitta tattica\n• Copertura mimetica artica\n• Dorso decorativo Regalo perfetto\n• Scia Luci a filo\n• 300 V-buck\n• 1 brano musicale\n• Bonus del 70% dei PE partite stagionali\n• Bonus del 20% dei PE partite amico stagionali\n• Sfide settimanali extra\n• E altro ancora!\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n• 4 costumi in più\n• 1.300 V-buck\n• 6 emote\n• 3 deltaplani\n• 4 dorsi decorativi\n• 4 coperture\n• 4 strumenti di raccolta\n• 4 scie\n• 1 piccolo amico\n• 12 spray\n• 2 brani musicali\n• E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 7 : jusqu'au 28 février\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Zénith\n • Tenue évolutive Lynx\n • Tenue évolutive Sergent Frimas et défis de style\n • Le compagnon Hamirez\n • Planeur Traîneau tactique\n • Revêtement Camouflage arctique\n • Accessoire de dos Cadeau idéal\n • Traînée de condensation Guirlandes électriques\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1300 V-bucks\n • 6 emotes\n • 3 planeurs\n • 4 accessoires de dos\n • 4 revêtements\n • 4 pioches\n • 4 traînées de condensation\n • 1 compagnon\n • 12 aérosols\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第七赛季:现在起至2月28日\n\n立即获得这些价值10000V币的物品。\n • 苍穹可进化服装\n • 山猫可进化服装\n • 冬军卫士服装与风格挑战\n • 竹鼠宠物\n • 战术雪橇滑翔伞\n • 极地迷彩 皮肤\n• 完美礼物背部装饰\n • 灯串滑翔轨迹\n • 300 V币\n • 1个音乐盒\n • 70%额外赛季比赛经验\n • 20%额外赛季好友比赛经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1,300V币\n • 6个姿势\n • 3个滑翔伞\n • 4个背包\n • 4 个皮肤\n • 4个稿\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音乐盒\n •以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada 7: Desde ahora hasta el 28 de febrero\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Cénit.\n • Traje progresivo de Lince.\n • Traje y desafíos de estilo del General Invierno.\n • Mascota Hamírez.\n • Ala delta Trineo táctico.\n • Envoltorio Camuflaje ártico.\n • Accesorio mochilero Presente perfecto.\n • Estela Luces de colores.\n • 300 paVos.\n • 1 pista musical.\n • 70 % adicional de PE de partida de temporada.\n • 20 % adicional de PE de partida amistosa de temporada.\n • Desafíos semanales adicionales.\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más.\n • 1300 paVos.\n • 6 gestos.\n • 3 alas delta.\n • 4 accesorios mochileros.\n • 4 envoltorios.\n • 4 herramientas de recolección.\n • 4 estelas.\n • 1 mascota.\n • 12 grafitis.\n • 2 pistas musicales.\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • Sgt. Winter Outfit and Style Challenges\n • Hamirez Pet\n • Tactical Sleigh Glider\n • Arctic Camo Wrap\n • Perfect Present Back Bling\n • String Lights Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,300 V-Bucks\n • 6 Emotes\n • 3 Gliders\n • 4 Back Blings\n • 4 Wraps\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン7: 2月28日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • 「ゼニス」プログレッシブコスチューム\n • 「リンクス」プログレッシブコスチューム\n • 「サージェント ウィンター」コスチューム及びスタイルチャレンジ\n • 「ハミレス」ペット\n • 「タクティカルスレイ」グライダー\n • 「アークティックカモ」ラップ\n • 「パーフェクトプレゼント」バックアクセサリー\n • 「ストリングライト」コントレイル\n • 300 V-Bucks\n • ミュージックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • コスチュームx4以上\n • 1,300 V-Bucks\n • エモートx6\n • グライダーx3\n • バックアクセサリーx4\n • ラップx4\n • 収集ツールx4\n • コントレイルx4\n • ペットx1\n • スプレーx12\n • ミュージックトラックx2\n • 他にも色々!\nもっと早く報酬を全部集めたいなら、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 7: od teraz do 28 lutego\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Zenit\n • Strój progresywny: Puma\n • Strój i wyzwania stylów Sierżant Zima\n • Pupil Chomirez\n • Lotnia Sanie Szturmowe\n • Malowanie Zimowy kamuflaż\n • Plecak Przemyślany Prezent\n • Smuga Sznur lampek\n • 300 V-dolców\n • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodniowych\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 dodatkowe stroje\n • 1300 V-dolców\n • 6 emotek\n • 3 lotnie\n • 4 plecaki\n • 4 malowania\n • 4 zbieraki\n • 4 smugi\n • 1 pupil\n • 12 graffiti\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 7: Ahora hasta el 28 de febrero\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo progresivo Cenit\n • Atuendo progresivo Lince\n • Atuendo y desafíos de estilo de Sargento Invierno\n • Mascota Hamírez\n • Planeador Trineo táctico\n • Papel Camu ártico\n • Mochila retro Regalo perfecto\n • Estela Luces colgantes\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas en la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1300 monedas V\n • 6 gestos\n • 3 planeadores\n • 4 mochilas retro\n • 4 papeles\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 aerosoles\n • 2 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "7. Sezon: Şu andan 28 Şubat’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karakulak Kıyafeti\n • İlerlemeli Kutup Dağcısı Kıyafeti\n • Kış Çavuşu Kıyafeti ve Tarz Görevleri\n • Sadık Dost Hamirez\n • Roketli Kızak Planörü\n • Kutup Kamuflajı Kaplaması\n • Mükemmel Hediye Sırt Süsü\n • Yılbaşı Işıkları Dalış İzi\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.300 V-Papel\n • 6 İfade\n • 3 Planör\n • 4 Sırt Süsü\n • 4 Kaplama\n • 4 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 12 Sprey\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season7_BattlePassWithLevels.DA_BR_Season7_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "3A3C99847F144AF3A030DB5690477F5A",
+ "devName": "BR.Season7.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "601C6830460BFED07506F5A6D2C4CE7B",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 7",
+ "ru": "Седьмой сезон",
+ "ko": "시즌 7",
+ "zh-hant": "第七賽季",
+ "pt-br": "Temporada 7",
+ "en": "Season 7",
+ "it": "Stagione 7",
+ "fr": "Saison 7",
+ "zh-cn": "第七赛季",
+ "es": "Temporada 7",
+ "ar": "Season 7",
+ "ja": "シーズン7",
+ "pl": "Sezon 7",
+ "es-419": "Temporada 7",
+ "tr": "7. Sezon"
+ },
+ "description": {
+ "de": "Saison 7: Ab sofort bis 28. Februar\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Zenit (aufrüstbares Outfit)\n • Luchs (aufrüstbares Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Sgt. Winter und 4 weitere Outfits\n • 1.300 V-Bucks\n • 2 Gefährten\n • 6 Lackierungen\n • 4 Erntewerkzeuge\n • 7 Emotes\n • 2 Spielsachen\n • 4 Hängegleiter\n • 6 Rücke-Accessoires\n • 5 Kondensstreifen\n • 13 Spraymotive\n • 3 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Седьмой сезон: до 28 февраля\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • улучшаемая экипировка Снежного снайпера;\n • улучшаемая экипировка Неоновой Рыси;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка генерала Мороза и ещё 4 костюма;\n • 1300 В-баксов;\n • 2 питомца;\n • 6 обёрток;\n • 4 инструмента;\n • 7 эмоций;\n • 2 игрушки;\n • 4 дельтаплана;\n • 6 украшений на спину;\n • 5 воздушных следов;\n • 13 граффити;\n • 3 музыкальные композиции;\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 7: 2월 28일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 제니스 진화형 의상\n • 링스 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n • 게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 윈터 병장 외 의상 4개\n • 1,300 V-Bucks\n • 애완동물 2개\n • 외관 6개\n • 수확 도구 4개\n • 이모트 7개\n • 장난감 2개\n • 글라이더 4개\n • 등 장신구 6개\n • 스카이다이빙 트레일 5개\n • 스프레이 13개\n • 음악 트랙 3개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第七賽季:現在起至2月28日\n\n立即獲得這些價值3500V幣的物品。\n • 蒼穹可進化服裝\n • 山貓可進化服裝\n • 50%額外賽季比賽經驗\n • 10%額外賽季好友比賽經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 冬軍衛士和至少4套服裝\n • 1300V幣\n • 2個寵物\n • 6個包裝\n • 4個採集工具\n • 7個姿勢\n • 2個玩具\n • 4個滑翔傘\n • 6個背部裝飾\n • 5個滑翔軌跡\n • 13個塗鴉\n • 3個音軌\n • 以及更多獎勵!\n希望更快得到嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 7: De hoje até 28 de fevereiro\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks:\n • Traje Progressivo Zênite\n • Traje Progressivo Lince\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Sargento Inverno e mais 4 Trajes\n • 1.300 V-Bucks\n • 2 Mascotes\n • 6 Envelopamentos\n • 4 Ferramentas de Coleta\n • 7 Gestos\n • 2 Brinquedos\n • 4 Asas-deltas\n • 6 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 13 Sprays\n • 3 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sgt. Winter and 4 more Outfits\n • 1,300 V-Bucks\n • 2 Pets\n • 6 Wraps\n • 4 Harvesting Tools\n • 7 Emotes\n • 2 Toys\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 7: Fino al 28 febbraio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n• Costume progressivo Zenith\n• Costume progressivo Lynx\n• Bonus del 50% dei PE partite stagionali\n• Bonus del 10% dei PE partite amico stagionali\n• Sfide settimanali extra\n\nGioca per aumentare di livello il tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\nSergente Bruma e altri 4 costumi\n• 1.300 V-buck\n• 2 piccoli amici\n• 6 coperture\n• 4 strumenti di raccolta\n• 7 emote\n• 2 giocattoli\n• 4 deltaplani\n• 6 dorsi decorativi\n• 5 scie\n• 13 spray\n• 3 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 7 : jusqu'au 28 février\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Zénith\n • Tenue évolutive Lynx\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Sergent Frimas plus 4 autres tenues\n • 1300 V-bucks\n • 2 compagnons\n • 6 revêtements\n • 4 pioches\n • 7 emotes\n • 2 jouets\n • 4 planeurs\n • 6 accessoires de dos\n • 5 traînées de condensation\n • 13 aérosols\n • 3 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第七赛季:现在起至2月28日\n\n立即获得这些价值3500V币的物品。\n • 苍穹可进化服装\n • 山猫可进化服装\n • 50%额外赛季比赛经验\n • 10%额外赛季好友比赛经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 冬军卫士和至少4套服装\n • 1300V币\n • 2个宠物\n • 6个包装\n • 4个采集工具\n • 7个姿势\n • 2个玩具\n • 4个滑翔伞\n • 6个背部装饰\n • 5个滑翔轨迹\n • 13个涂鸦\n • 3个音轨\n • 以及更多奖励!\n希望更快得到吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada 7: Desde ahora hasta el 28 de febrero\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje progresivo de Cénit.\n • Traje progresivo de Lince.\n • 50 % adicional de PE de partida de temporada.\n • 10 % adicional de PE de partida amistosa de temporada.\n • Desafíos semanales adicionales.\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • General Invierno y 4 trajes más.\n • 1300 paVos.\n • 2 mascotas.\n • 6 envoltorios.\n • 4 herramientas de recolección.\n • 7 gestos.\n • 2 juguetes.\n • 4 alas delta.\n • 6 accesorios mochileros.\n • 5 estelas.\n • 13 grafitis.\n • 3 pistas musicales.\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 7: Now thru Feb 28\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Zenith Progressive Outfit\n • Lynx Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sgt. Winter and 4 more Outfits\n • 1,300 V-Bucks\n • 2 Pets\n • 6 Wraps\n • 4 Harvesting Tools\n • 7 Emotes\n • 2 Toys\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン7: 2月28日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。• 「ゼニス」プログレッシブコスチューム\n • 「リンクス」プログレッシブコスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n •「サージェント ウィンター」及びコスチュームx4以上\n • 1,300 V-Bucks\n • ペットx2\n • ラップx6\n • 収集ツールx4\n • エモートx7\n • おもちゃx2\n • グライダーx4\n • バックアクセサリーx6\n • コントレイルx5\n • スプレーx13\n • ミュージックトラックx3\n • 他にも色々!\nもっと早く報酬を全部集めたいなら、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 7: od teraz do 28 lutego\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Zenit\n • Strój progresywny: Puma\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodniowych\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Sierżant Zima i 4 inne stroje\n • 1300 V-dolców\n • 2 pupile\n • 6 malowań\n • 4 zbieraki\n • 7 emotek\n • 2 zabawki\n • 4 lotnie\n • 6 plecaków\n • 5 smug\n • 13 graffiti\n • 3 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 7: Ahora hasta el 28 de febrero\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Cenit\n • Atuendo progresivo Lince\n • 50 % de bonificación de PE para partidas de la temporada\n • 10 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Sargento Invierno y 4 atuendos más\n • 1300 monedas V\n • 2 mascotas\n • 6 papeles\n • 4 herramientas de recolección\n • 7 gestos\n • 2 juguetes\n • 4 planeadores\n • 6 mochilas retro\n • 5 estelas\n • 13 aerosoles\n • 3 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "7. Sezon: Şu andan 28 Şubat’a kadar\n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Kutup Dağcısı Kıyafeti\n • İlerlemeli Karakulak Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %10 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Kış Çavuşu ve 4 Kıyafet daha\n • 1,300 V-Papel\n • 2 Sadık Dost\n • 6 Kaplama\n • 4 Toplama Aleti\n • 7 İfade\n • 2 Oyuncak\n • 4 Planör\n • 6 Sırt Süsü\n • 5 Dalış İzi\n • 13 Sprey\n • 3 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season7_BattlePass.DA_BR_Season7_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "64A3020B098841A7805EE257D68C554F",
+ "devName": "BR.Season7.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle-Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason8",
+ "catalogEntries": [
+ {
+ "offerId": "18D9DA48000A40BFAEBAC55A99C55221",
+ "devName": "BR.Season8.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "9DF02EA14FB15E475EBBEBBFDBB988DB",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 8 – Ab sofort bis einschließlich 8. Mai\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Schwarzherz (aufrüstbares Outfit)\n • Hybrid (aufrüstbares Outfit)\n • Klapperschlange (Outfit)\n • Tropentarnung (Lackierung)\n • Stöckchen (Gefährte)\n • Himmelsschlangen (Hängegleiter)\n • Kobra (Rücken-Accessoire)\n • Wehende Standarte (Kondensstreifen)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 5 Lackierungen\n • 3 Hängegleiter\n • 3 Rücken-Accessoires\n • 4 Erntewerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 12 Spraymotive\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Восьмой сезон: до 8 мая\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Улучшающаяся экипировка Флибустьера;\n • улучшающаяся экипировка Гибрида;\n • экипировка Горгоны;\n • обёртка «Тропики»;\n • питомец Псиноккио;\n • дельтаплан «Воздушные змеи»;\n • украшение на спину «Кобра»;\n • воздушный след «Чёрный флаг»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 5 обёрток;\n • 3 дельтаплана;\n • 3 украшения на спину;\n • 4 инструмента;\n • 4 воздушных следа;\n • 1 питомец;\n • 12 граффити;\n • 2 музыкальные композиции\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 8: 5월 8일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 블랙하트 진화형 의상\n • 하이브리드 진화형 의상\n • 사이드와인더 의상\n • 열대 지방 위장 패턴 외관\n • 우지 애완동물\n • 하늘뱀 글라이더\n • 코브라 등 장신구\n • 공중 깃발 트레일\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 5개\n • 글라이더 3개\n • 등 장신구 3개\n • 수확 도구 4개\n • 트레일 4개\n • 애완동물 1마리\n • 스프레이 12개\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第八賽季:現在起至5月8日\n\n立即獲得這些價值逾10000V幣的物品。\n • 黑鬍子可進化服裝\n • 忍者龍可進化服裝\n • 響尾蛇服裝\n • 熱帶迷彩皮膚\n • 木雕汪寵物\n • 空中飛蛇滑翔傘\n • 眼鏡蛇背部裝飾\n • 飛行掛旗滑翔軌跡\n • 300V幣\n • 1個音軌\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 5個皮膚\n • 3個滑翔傘\n • 3個背部裝飾\n • 4個鎬\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音軌\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 8: de hoje até 8 de maio\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Progressivo Coração Negro\n • Traje Progressivo Híbrido\n • Traje Cascavel\n • Envelopamento Camuflagem Tropical\n • Mascote Madeiríneo\n • Asa-delta Serpentes dos Céus\n • Acessório para as Costas Naja\n • Rastro de Fumaça Estandarte de Voo\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 5 Envelopamentos\n • 3 Asas-deltas\n • 3 Acessórios para as Costas\n • 4 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 12 Sprays\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 8 Now thru May 8\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • Sidewinder Outfit\n • Tropical Camo Wrap\n • Woodsy Pet\n • Sky Serpents Glider\n • Cobra Back Bling\n • Flying Standard Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 5 Wraps\n • 3 Gliders\n • 3 Back Blings\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 8, da ora fino all'8 maggio\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume progressivo Cuore nero\n • Costume progressivo Ibrido\n • Costume Sidewinder\n • Copertura Mimetica tropicale\n • Piccolo amico Woodsy\n • Deltaplano Serpenti dei cieli\n • Dorso decorativo Cobra\n • Scia Stendardo volante\n • 300 V-Buck\n • 1 brano musicale\n • Bonus 70% Bonus PE partite stagionali\n • Bonus 20% PE amici partite stagionali\n • Sfide settimanali extra\n • e altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1.000 V-Buck\n • 6 emote\n • 5 coperture\n • 3 deltaplani\n • 3 dorsi decorativi\n • 4 strumenti raccolta\n • 4 scie\n • 1 piccolo amico\n • 12 spray\n • 2 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 8 : jusqu'au 8 mai\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Cœur Noir\n • Tenue évolutive Hybride\n • Tenue Vipère\n • Revêtement Camouflage tropical\n • Le compagnon Tilleul\n • Planeur Serpents célestes\n • Accessoire de dos Cobra\n • Traînée de condensation Drapeau volant\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 5 revêtements\n • 3 planeurs\n • 3 accessoires de dos\n • 4 pioches\n • 4 traînées de condensation\n • 1 compagnon\n • 12 aérosols\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第八赛季:现在起至5月8日\n\n立即获得这些价值逾10000V币的物品。\n • 黑胡子可进化服装\n • 忍者龙可进化服装\n • 响尾蛇服装\n • 热带迷彩皮肤\n • 木雕汪宠物\n • 空中飞蛇滑翔伞\n • 眼镜蛇背部装饰\n • 飞行挂旗滑翔轨迹\n • 300V币\n • 1个音轨\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 5个皮肤\n • 3个滑翔伞\n • 3个背部装饰\n • 4个镐\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音轨\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada 8, desde ahora hasta el 8 de mayo\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Parchenegro\n • Traje progresivo de Híbrido\n • Traje de Áspid\n • Envoltorio Camuflaje tropical\n • Mascota Maderito\n • Ala deltaCarroza de cascabel\n • Accesorio mochileroCobra\n • Estela A toda vela\n • 300 paVos\n • 1 Tema musical\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 20 % de PE de partida con amigos de temporada\n • Desafíos semanales adicionales\n • ¡y mucho más!\n\nJugad para subir de nivel el pase de batalla, que desbloquea más de 75 recompensas (suele dar para entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 5 envoltorios\n • 3 alas delta\n • 3 accesorios mochileros\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 grafitis\n • 2 temas musicales\n • ¡y mucho más!\n¿Lo queréis más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 8 Now thru May 8\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • Sidewinder Outfit\n • Tropical Camo Wrap\n • Woodsy Pet\n • Sky Serpents Glider\n • Cobra Back Bling\n • Flying Standard Contrail\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 5 Wraps\n • 3 Gliders\n • 3 Back Blings\n • 4 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 12 Sprays\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン8: 5月8日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • プログレッシブコスチューム「ブラックハート」\n • プログレッシブコスチューム「ハイブリッド」\n • コスチューム「サイドワインダー」\n • ラップ「トロピカルカモ」\n • ペット「ウッドゥジー」\n • グライダー「スカイサーペント」\n • バックアクセサリー「コブラ」\n • コントレイル「フライングスタンダード」\n • 300 V-Bucks\n • ミュージックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも盛りだくさん!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • コスチュームx4以上\n • 1,000 V-Bucks\n • エモートx6\n • ラップx5\n • グライダーx3\n • バックアクセサリーx3\n • 収集ツールx4\n • コントレイルx4\n • ペットx1\n • スプレーx12\n • ミュージックトラックx2\n • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 8: od teraz do 8 maja\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Czarnosercy\n • Strój progresywny: Hybryda\n • Strój progresywny: Grzechotnica\n • Malowanie: Tropikalny kamuflaż\n • Pupil: Drewniak\n • Lotnia: Podniebne Węże\n • Plecak: Kobra\n • Smuga: Powiewający Sztandar\n • 300 V-dolców • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 kolejne stroje\n • 1000 V-dolców\n • 6 emotek\n • 5 malowań\n • 3 lotnie\n • 3 plecaki\n • 4 zbieraki\n • 4 smugi\n • 1 pupil\n • 12 graffiti\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 8: ahora hasta el 8 de mayo\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo progresivo Parche Negro\n • Atuendo progresivo Híbrido\n • Atuendo Cascabel\n • Papel Camuflaje tropical\n • Mascota Maderín\n • Planeador Serpientes del cielo\n • Mochila retro Cobra \n • Estela Viento en popa\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas en la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 5 papeles\n • 3 planeadores\n • 3 mochilas retro\n • 4 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 12 aerosoles\n • 2 pistas de música\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "8. Sezon: Şu andan 8 Mayıs’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karasakal Kıyafeti\n • İlerlemeli Melez Kıyafeti\n • Engerek Kıyafeti\n • Tropik Kamuflaj Kaplaması\n • Sadık Dost Gofret\n • Yılanör Planörü\n • Kobra Sırt Süsü\n • Kara Bayrak Dalış İzi\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 5 Kaplama\n • 3 Planör\n • 3 Sırt Süsü\n • 4 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 12 Sprey\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season8_BattlePassWithLevels.DA_BR_Season8_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "E07E41D52D4A425F8DC6592496B75301",
+ "devName": "BR.Season8.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 얻어보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödüllerin sahibi ol!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ },
+ {
+ "offerId": "77F31B7F83FB422195DA60CDE683671D",
+ "devName": "BR.Season8.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "9DF02EA14FB15E475EBBEBBFDBB988DB",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 8",
+ "ru": "Сезон 8",
+ "ko": "시즌 8",
+ "zh-hant": "第8賽季",
+ "pt-br": "Temporada 8",
+ "en": "Season 8",
+ "it": "Stagione 8",
+ "fr": "Saison 8",
+ "zh-cn": "第8赛季",
+ "es": "Temporada 8",
+ "ar": "Season 8",
+ "ja": "シーズン8",
+ "pl": "Sezon 8",
+ "es-419": "Temporada 8",
+ "tr": "8. Sezon"
+ },
+ "description": {
+ "de": "Saison 8 – Ab sofort bis einschließlich 8. Mai\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Schwarzherz (aufrüstbares Outfit)\n • Hybrid (aufrüstbares Outfit)\n • +50 % Saison-Match-EP\n • +10 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Klapperschlange und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 2 Gefährten\n • 5 Erntewerkzeuge\n • 4 Hängegleiter\n • 4 Rücken-Accessoires\n • 5 Kondensstreifen\n • 14 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 20 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Восьмой сезон: до 8 мая \n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Улучшающаяся экипировка Флибустьера;\n • улучшающаяся экипировка Гибрида;\n • +50% к опыту за матчи сезона;\n • +10% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка Горгоны и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 2 питомца;\n • 5 инструментов;\n • 4 дельтаплана;\n • 4 украшения на спину;\n • 5 воздушных следов;\n • 14 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 20 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 8: 5월 8일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 블랙하트 진화형 의상\n • 하이브리드 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 10% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 사이드와인더 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 애완동물 2마리\n • 수확 도구 5개\n • 글라이더 4개\n • 등 장신구 4개\n • 트레일 5개\n • 스프레이 14개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 20개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第八賽季:現在起至5月8日\n\n立即獲得這些價值逾3500V幣的物品。\n • 黑鬍子可進化服裝\n • 忍者龍可進化服裝\n • 50%額外賽季匹配經驗\n • 10%額外賽季好友匹配經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 響尾蛇和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 2個寵物\n • 5個鎬\n • 4個滑翔傘\n • 4個背部裝飾\n • 5個滑翔軌跡\n • 14個塗鴉\n • 3個音軌\n • 1個玩具\n • 20張載入介面\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 8: de hoje até 8 de maio \n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Progressivo Coração Negro\n • Traje Progressivo Híbrido\n • 50% de Bônus de EXP da Temporada em Partidas\n • 10% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Cascavel e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 2 Mascotes\n • 5 Ferramentas de Coleta\n • 4 Asas-deltas\n • 4 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 14 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 20 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 8 Now thru May 8 \n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sidewinder and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 2 Pets\n • 5 Harvesting Tools\n • 4 Gliders\n • 4 Back Blings\n • 5 Contrails\n • 14 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 8, da ora fino all'8 maggio\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume progressivo Cuore nero\n • Costume progressivo Ibrido\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 10% dei PE partite amico stagionali\n • Sfide settimanali extra\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Sidewinder e altri 4 costumi\n • 1.300 V-buck\n • 7 emote\n • 6 coperture\n • 2 piccoli amici\n • 5 strumenti raccolta\n • 4 deltaplani\n • 4 dorsi decorativi\n • 5 scie\n • 14 spray\n • 3 brani musicali\n • 1 giocattolo\n • 20 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 8 : jusqu'au 8 mai\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Cœur Noir\n • Tenue évolutive Hybride\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\n Jouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Vipère plus 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 2 compagnons\n • 5 pioches\n • 4 planeurs\n • 4 accessoires de dos\n • 5 traînées de condensation\n • 14 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 20 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第八赛季:现在起至5月8日\n\n立即获得这些价值逾3500V币的物品。\n • 黑胡子可进化服装\n • 忍者龙可进化服装\n • 50%额外赛季匹配经验\n • 10%额外赛季好友匹配经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 响尾蛇和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 2个宠物\n • 5个镐\n • 4个滑翔伞\n • 4个背部装饰\n • 5个滑翔轨迹\n • 14个涂鸦\n • 3个音轨\n • 1个玩具\n • 20张载入界面\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!",
+ "es": "Desde ahora hasta el 8 de mayo \n\nConsigue instantáneamente estos objetos valorados en más de 3.500 paVos.\n • Traje progresivo de Parchenegro\n • Traje progresivo deHíbrido\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 10 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n\nJugad para subir de nivel el pase de batalla, que desbloquea más de 100 recompensas (suele dar para entre 75 y 150 horas de juego).\n • Áspid y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 2 mascotas\n • 5 herramientas de recolección\n • 4 alas delta\n • 4 accesorios mochileros\n • 5 estelas\n • 14 grafitis\n • 3 temas musicales\n • 1 juguete\n • 20 pantallas de carga\n • ¡y mucho más!\n¿Lo queréis más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 8 Now thru May 8 \n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Blackheart Progressive Outfit\n • Hybrid Progressive Outfit\n • 50% Bonus Season Match XP\n • 10% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Sidewinder and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 2 Pets\n • 5 Harvesting Tools\n • 4 Gliders\n • 4 Back Blings\n • 5 Contrails\n • 14 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン8: 5月8日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n • プログレッシブコスチューム「ブラックハート」\n • プログレッシブコスチューム「ハイブリッド」\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの10%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • 「サイドワインダー」及びコスチュームx4以上\n • 1,300 V-Bucks\n • エモートx7\n • ラップx6\n • ペットx2\n • 収集ツールx5\n • グライダーx4\n • バックアクセサリーx4\n • コントレイルx5\n • スプレーx14\n • ミュージックトラックx3\n • おもちゃx1\n • ロード画面x20\n • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 8: od teraz do 8 maja\n\nOtrzymasz od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Czarnosercy\n • Strój progresywny: Hybryda\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +10% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Grzechotnica i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 2 pupile\n • 5 zbieraków\n • 4 lotnie\n • 4 plecaki\n • 5 smug\n • 14 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 8: ahora hasta el 8 de mayo\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Parche Negro\n • Atuendo progresivo Híbrido\n • 50 % de bonificación de PE para partidas en la temporada\n • 10 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Cascabel y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 2 mascotas\n • 5 herramientas de recolección\n • 4 planeadores\n • 4 mochilas retro\n • 5 estelas\n • 14 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "8. Sezon: Şu andan 8 Mayıs’a kadar \n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Karasakal Kıyafeti\n • İlerlemeli Melez Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %10 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Engerek ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 2 Sadık Dost\n • 5 Toplama Aleti\n • 4 Planör\n • 4 Sırt Süsü\n • 5 Dalış İzi\n • 14 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 20 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season8_BattlePass.DA_BR_Season8_BattlePass",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason9",
+ "catalogEntries": [
+ {
+ "offerId": "C7190ACA4E5E228A94CA3CB9C3FC7AE9",
+ "devName": "BR.Season9.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "73E6EE6F4526EF97450D1592C3DB0EF5",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison 9 – Ab sofort bis einschließlich 1. August.\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • Rox (aufrüstbares Outfit)\n • Hüter (Outfit)\n • Bunker-Jonesy (Outfit)\n • Hüter (Lackierung)\n • Reife Ripper (Erntewerkzeug)\n • Turbodrall (Hängegleiter)\n • Reifeprüfung (Lackierung)\n • 300 V-Bucks\n • 1 Musikstück\n • +70 % Saison-Match-EP\n • +20 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 4 Lackierungen\n • 2 Hängegleiter\n • 6 Rücken-Accessoires\n • 6 Erntewerkzeuge\n • 4 Kondensstreifen\n • 1 Gefährte\n • 2 Musikstücke\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Девятый сезон: до 1 августа\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Улучшающаяся экипировка Рокси;\n • экипировка Стража;\n • экипировка Затворника Джоунси;\n • обёртка «Страж»;\n • кирка «Самодельный топорик»;\n • дельтаплан «Футуризм»;\n • обёртка «Банановая кожура»;\n • 300 В-баксов;\n • 1 музыкальная композиция;\n • +70% к опыту за матчи сезона;\n • +20% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания\n и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 4 обёртки;\n • 2 дельтаплана;\n • 6 украшений на спину;\n • 6 инструментов;\n • 4 воздушных следа;\n • 1 питомец;\n • 2 музыкальные композиции\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 9: 8월 1일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 록스 진화형 의상\n • 센티널 진화형 의상\n • 벙커 존시 의상\n • 센티널 외관\n • 바나나 껍질 도끼 수확 도구\n • 터보 스핀 글라이더\n • 바나나 껍질 외관\n • 300 V-Bucks\n • 음악 트랙 1개\n • 70% 보너스 시즌 매치 XP\n • 20% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 4개\n • 글라이더 2개\n • 등 장신구 6개\n • 수확 도구 6개\n • 트레일 4개\n • 애완동물 1마리\n • 음악 트랙 2개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第九賽季:現在起至8月1日\n\n立即獲得這些價值逾10000V幣的物品。\n • 草莓飛行員可進化服裝\n • 裝甲雄雞服裝\n • 地堡鐘斯服裝\n • 裝甲雄雞皮膚\n • 老練撕裂者採集工具\n • 加速旋轉滑翔傘\n • 老練皮膚\n • 300V幣\n • 1個音軌\n • 70%額外賽季匹配經驗\n • 20%額外賽季好友匹配經驗\n • 額外每週挑戰\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖超過75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 4個皮膚\n • 2個滑翔傘\n • 6個背部裝飾\n • 6個採集工具\n • 4個滑翔軌跡\n • 1個寵物\n • 12個塗鴉\n • 2個音軌\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 9: de hoje até 1.º de agosto\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Progressivo Rox\n • Traje Progressivo Sentinela\n • Traje Jonesy — Bunker\n • Envelopamento Sentinela\n • Ferramenta de Coleta Mutiladores Maduros\n • Asa-delta Voadora Turbinada\n • Envelopamento Maduro\n • 300 V-Bucks\n • 1 Faixa Musical\n • 70% de Bônus de EXP da Temporada em Partidas\n • 20% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 4 Envelopamentos\n • 2 Asas-deltas\n • 6 Acessórios para as Costas\n • 6 Ferramentas de Coleta\n • 4 Rastros de Fumaça\n • 1 Mascote\n • 2 Faixas Musicais\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • Bunker Jonesy Outfit\n • Sentinel Wrap\n • Ripe Rippers Harvesting Tool\n • Turbo Spin Glider\n • Ripe Wrap\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 2 Gliders\n • 6 Back Blings\n • 6 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 9, da ora fino al 1° agosto\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume progressivo Rox\n • Costume progressivo Sentinella\n • Costume Jonesy Bunker\n • Copertura Sentinella\n • Strumento raccolta Fauci feroci\n • Deltaplano Rotazione turbo\n • Copertura Maturo\n • 300 V-buck\n • 1 brano musicale\n • Bonus 70% PE partite stagionali\n • Bonus 20% PE amici partite stagionali\n • Sfide settimanali extra\n • e altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1000 V-Buck\n • 6 emote\n • 4 coperture\n • 2 deltaplani\n • 6 dorsi decorativi\n • 6 strumenti raccolta\n • 4 scie\n • 1 piccolo amico\n • 2 brani musicali\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 9 : jusqu'au 1er août\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue évolutive Rox\n • Tenue Sentinelle\n • Tenue Jonesy du bunker\n • Revêtement Sentinelle\n • Outil de collecte Haches mûres\n • Planeur Aile turbo\n • Revêtement Mûr\n • 300 V-bucks\n • 1 piste musicale\n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 20% pour des amis\n • Des défis hebdomadaires supplémentaires\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 4 revêtements\n • 2 planeurs\n • 6 accessoires de dos\n • 6 outils de collecte\n • 4 traînées de condensation\n • 1 compagnon\n • 2 pistes musicales\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第九赛季:现在起至8月1日\n\n立即获得这些价值逾10000V币的物品。\n • 草莓飞行员可进化服装\n • 装甲雄鸡服装\n • 地堡琼斯服装\n • 装甲雄鸡皮肤\n • 蕉战斧采集工具\n • 动力尾旋滑翔伞\n • 香蕉皮皮肤\n • 300V币\n • 1个音轨\n • 70%额外赛季匹配经验\n • 20%额外赛季好友匹配经验\n • 额外每周挑战\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁超过75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 4个皮肤\n • 2个滑翔伞\n • 6个背部装饰\n • 6个采集工具\n • 4个滑翔轨迹\n • 1个宠物\n • 12个涂鸦\n • 2个音轨\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada 9: desde ahora hasta el 1 de agosto.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje progresivo de Rox\n • Traje de Centinela\n • Traje de Jonesy del búnker\n • Envoltorio Centinela\n • Herramienta de recolección Machete maduro\n • Ala delta Turbogiro\n • Envoltorio Maduro\n • 300 paVos\n • 1 tema musical\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 20 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 4 envoltorios\n • 2 alas delta\n • 6 accesorios mochileros\n • 6 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 2 temas musicales\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • Bunker Jonesy Outfit\n • Sentinel Wrap\n • Ripe Rippers Harvesting Tool\n • Turbo Spin Glider\n • Ripe Wrap\n • 300 V-Bucks\n • 1 Music Track\n • 70% Bonus Season Match XP\n • 20% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 2 Gliders\n • 6 Back Blings\n • 6 Harvesting Tools\n • 4 Contrails\n • 1 Pet\n • 2 Music Tracks\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン9: 8月1日まで\n\n10,000 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n• ロックスプログレッシブコスチューム\n • センチネルコスチューム\n • バンカージョンジーコスチューム\n • センチネルラップ\n • 「ライプリッパーズ」収集ツール\n • 「ターボスピン」グライダー\n • 「バナナ」 ラップ\n • 300 V-Bucks\n • ミュージックトラックx1\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの20%ボーナス\n • 追加のウィークリーチャレンジ\n • 他にも色々!\n\nプレイしてバトルパスのレベルを上げると、75以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • 追加のコスチュームx4\n • 1,000 V-Bucks\n • エモートx6\n • ラップx4\n • グライダーx2\n • バックアクセサリーx6\n • 収集ツールx6\n • コントレイルx4\n • ペットx1\n • ミュージックトラックx2\n • 他にも色々!\nもっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 9: od teraz do 1 sierpnia.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 10 000 V-dolców:\n • Strój progresywny: Roxi\n • Strój progresywny: K0gut\n • Strój: Jonesy z Bunkra\n • Strój: K0gut\n • Malowanie: K0gut\n • Zbierak: Dojrzały Rozpruwacz\n • Lotnia: Turboskrętka\n • Malowanie: Dojrzałe\n • 300 V-dolców • 1 tło muzyczne\n • Sezonowa premia +70% PD za grę\n • Sezonowa premia +20% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • 4 kolejne stroje\n • 1000 V-dolców\n • 6 emotek\n • 4 malowania\n • 2 lotnie\n • 6 plecaków\n • 6 zbieraków\n • 4 smugi\n • 1 pupil\n • 2 tła muzyczne\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 9: ahora y hasta el 1 de agosto.\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V..\n • Atuendo progresivo Rox\n • Atuendo Centinela\n • Atuendo Jonesy del búnker\n • Papel Centinela\n • Herramienta de recolección Destripamaduros\n • PlaneadorVuelta turbo\n • Papel Maduro\n • 300 monedas V\n • 1 pista de música\n • 70 % de bonificación de PE para partidas de la temporada\n • 20 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 100 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 4 papeles\n • 2 planeadores\n • 6 mochilas retro\n • 6 herramientas de recolección\n • 4 estelas\n • 1 mascota\n • 2 pistas de música\n • ¡Y muchísimo más!\n¿Quieres todo más rápido? ¡Usa las monedas V para comprar niveles cuando quieras!",
+ "tr": "9. Sezon: Şu andan 1 Ağustos’a kadar\n\n10.000 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Pembeli Savaşçı Kıyafeti\n • Savaş Kuşu Kıyafeti\n • Sığınak Kaçkını Jonesy Kıyafeti\n • Savaş Kuşu Kaplaması\n • Kabuktan Kazma Toplama Aleti\n • Pembe Kanat Planörü\n • Olgunlaşmış Kaplaması\n • 300 V-Papel\n • 1 Müzik Parçası\n • %70 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %20 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n • ve çok daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 75’ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 4 Kaplama\n • 2 Planör\n • 6 Sırt Süsü\n • 6 Toplama Aleti\n • 4 Dalış İzi\n • 1 Sadık Dost\n • 2 Müzik Parçası\n • ve çok daha fazlası!\nHepsini daha hızlı almak mı istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season9_BattlePassWithLevels.DA_BR_Season9_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "73E6EE6F4526EF97450D1592C3DB0EF5",
+ "devName": "BR.Season9.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "73E6EE6F4526EF97450D1592C3DB0EF5",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison 9",
+ "ru": "Девятый сезон",
+ "ko": "시즌 9",
+ "zh-hant": "第九賽季",
+ "pt-br": "Temporada 9",
+ "en": "Season 9",
+ "it": "Stagione 9",
+ "fr": "Saison 9",
+ "zh-cn": "第九赛季",
+ "es": "Temporada 9",
+ "ar": "Season 9",
+ "ja": "シーズン9",
+ "pl": "Sezon 9",
+ "es-419": "Temporada 9",
+ "tr": "9. Sezon"
+ },
+ "description": {
+ "de": "Saison 9 – Ab sofort bis einschließlich 1. August.\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • Rox (aufrüstbares Outfit)\n • Hüter (Outfit)\n • +50 % Saison-Match-EP\n • +60 % Saison-Match-EP für Freunde\n • zusätzliche wöchentliche Herausforderungen\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Bunker-Jonesy und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 7 Erntewerkzeuge\n • 1 Gefährte\n • 4 Hängegleiter\n • 6 Rücken-Accessoires\n • 5 Kondensstreifen\n • 13 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 20 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Девятый сезон: до 1 августа\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Улучшающаяся экипировка Рокси;\n • экипировка Стража;\n • +50% к опыту за матчи сезона;\n • +60% к опыту друзей за матчи сезона;\n • дополнительные еженедельные испытания.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • экипировка Затворника Джоунси и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 7 инструментов;\n • 1 питомец;\n • 4 дельтаплана;\n • 6 украшений на спину;\n • 5 воздушных следов;\n • 13 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 20 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 9: 8월 1일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 록스 진화형 의상\n • 센티널 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 60% 보너스 시즌 친구 매치 XP\n • 추가 주간 도전\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 벙커 존시 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 수확 도구 7개\n • 애완동물 1마리\n • 글라이더 4개\n • 등 장신구 6개\n • 트레일 5개\n • 스프레이 13개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 20개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第九賽季:現在起至8月1日\n\n立即獲得這些價值逾3500V幣的物品。\n • 草莓飛行員可進化服裝\n • 裝甲雄雞服裝\n • 50%額外賽季匹配經驗\n • 60%額外賽季好友匹配經驗\n • 額外每週挑戰\n\n通過遊玩提升英雄季卡戰階,解鎖百餘獎勵(通常需要75到150個小時的遊玩時間)。\n • 地堡鐘斯和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 7個採集工具\n • 1個寵物\n • 4個滑翔傘\n • 6個背部裝飾\n • 5個滑翔軌跡\n • 13個塗鴉\n • 3個音軌\n • 1個玩具\n • 20張載入介面\n • 以及更多獎勵!\n希望更快得到所有獎勵嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada 9: de hoje até 1.º de agosto\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Progressivo Rox\n • Traje Progressivo Sentinela\n • 50% de Bônus de EXP da Temporada em Partidas\n • 60% de Bônus de EXP da Temporada em Partidas com Amigos\n • Desafios Semanais Extras\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Jonesy — Bunker e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 7 Ferramentas de Coleta\n • 1 Mascote\n • 4 Asas-deltas\n • 6 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 13 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 20 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Bunker Jonesy and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 7 Harvesting Tools\n • 1 Pet\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione 9, da ora fino a 1° agosto\n\nOttieni subito questi oggetti dal valore di oltre 3500 V-buck!\n • Costume progressivo Rox\n • Costume progressivo Sentinella\n • Bonus del 50% dei PE partite stagionali\n • Bonus del 60% dei PE partite amico stagionali\n • Sfide settimanali extra\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Jonesy Bunker e altri 4 costumi\n • 1300 V-buck\n • 7 emote\n • 6 coperture\n • 7 strumenti raccolta\n • 1 piccolo amico\n • 4 deltaplani\n • 6 dorsi decorativi\n • 5 scie\n • 13 spray\n • 3 brani musicali\n • 1 giocattolo\n • 20 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison 9 : jusqu'au 1er août\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue évolutive Rox\n • Tenue Sentinelle\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 10% pour des amis\n • Des défis hebdomadaires supplémentaires\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Jonesy du bunker plus 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 7 outils de collecte\n • 1 compagnon\n • 4 planeurs\n • 6 accessoires de dos\n • 5 traînées de condensation\n • 13 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 20 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第九赛季:现在起至8月1日\n\n立即获得这些价值逾3500V币的物品。\n • 草莓飞行员可进化服装\n • 装甲雄鸡服装\n • 50%额外赛季匹配经验\n • 60%额外赛季好友匹配经验\n • 额外每周挑战\n\n通过游玩提升英雄季卡战阶,解锁百余奖励(通常需要75到150个小时的游玩时间)。\n • 地堡琼斯和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 7个采集工具\n • 1个宠物\n • 4个滑翔伞\n • 6个背部装饰\n • 5个滑翔轨迹\n • 13个涂鸦\n • 3个音轨\n • 1个玩具\n • 20张载入界面\n • 以及更多奖励!\n希望更快得到所有奖励吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada 9: desde ahora hasta el 1 de agosto.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje progresivo de Rox\n • Traje de Centinela\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 60 % de PE de partida amistosa de temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • Jonesy del búnker y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 7 herramientas de recolección\n • 1 mascota\n • 4 alas delta\n • 6 accesorios mochileros\n • 5 estelas\n • 13 grafitis\n • 3 temas musicales\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season 9 Now through August 1.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • Rox Progressive Outfit\n • Sentinel Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n • Extra Weekly Challenges\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Bunker Jonesy and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 7 Harvesting Tools\n • 1 Pet\n • 4 Gliders\n • 6 Back Blings\n • 5 Contrails\n • 13 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 20 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズン9: 8月1日まで\n\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\n• ロックスプログレッシブコスチューム\n • センチネルコスチューム\n • シーズンマッチXPの50%ボーナス\n • シーズンフレンドマッチXPの60%ボーナス\n • 追加のウィークリーチャレンジ\n\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • バンカージョンジーおよびその他コスチュームx4\n • 1,300 V-Bucks\n • エモートx7\n • ラップx6\n • 収集ツールx7\n • ペットx1\n • グライダーx4\n • バックアクセサリーx6\n • コントレイルx5\n • スプレーx13\n • ミュージックトラックx3\n • おもちゃx1\n • ロード画面x20\n •他にも色々!\nもっと早く報酬を全部集めたい? V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon 9: od teraz do 1 sierpnia.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 3500 V-dolców:\n • Strój progresywny: Roxi\n • Strój progresywny: K0gut\n • Sezonowa premia +50% PD za grę\n • Sezonowa premia +60% PD za grę ze znajomymi\n • Dostęp do dodatkowych wyzwań tygodnia\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Jonesy z Bunkra i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 1 pupil\n • 7 zbieraków\n • 4 lotnie\n • 6 plecaków\n • 5 smug\n • 13 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • 20 ekranów ładowania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Temporada 9: ahora y hasta el 1 de agosto.\n\nObtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo progresivo Rox\n • Atuendo Centinela\n • 50 % de bonificación de PE para partidas de la temporada\n • 60 % de bonificación de PE para partidas con amigos en la temporada\n • Desafíos semanales adicionales\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 100 horas de juego).\n • Atuendo Jonesy del búnker y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 7 herramientas de recolección\n • 1 mascota\n • 4 planeadores\n • 6 mochilas retro\n • 5 estelas\n • 13 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 20 pantallas de carga\n • ¡Y muchísimo más!\n¿Quieres todo más rápido? ¡Usa las monedas V para comprar niveles cuando quieras!",
+ "tr": "9. Sezon: Şu andan 1 Ağustos’a kadar \n\n3.500 V-Papel’in üzerinde değeri olan bu içerikleri hemen kap.\n • İlerlemeli Pembeli Savaşçı Kıyafeti\n • Savaş Kuşu Kıyafeti\n • %50 Bonus Sezonluk Maç TP’si\n • Arkadaşların için %60 Bonus Sezonluk Maç TP’si\n • İlave Haftalık Görevler\n\nBattle Royale oynayarak Savaş Bileti’nin aşamasını yükselt ve 100’den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Sığınak Kaçkını Jonesy ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 7 Toplama Aleti\n • 1 Sadık Dost\n • 4 Planör\n • 6 Sırt Süsü\n • 5 Dalış İzi\n • 13 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 20 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season9_BattlePass.DA_BR_Season9_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "33E185A84ED7B64F2856E69AADFD092C",
+ "devName": "BR.Season9.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 받으세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zdobądź super nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödülleri kap!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ },
+ {
+ "name": "BRSeason10",
+ "catalogEntries": [
+ {
+ "offerId": "2E43CCD24C3BE8F5ABBDF28E233B9350",
+ "devName": "BR.Season10.BattlePass.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 950,
+ "dynamicRegularPrice": -1,
+ "finalPrice": 950,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 950
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "refundable": false,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2E43CCD24C3BE8F5ABBDF28E233B9350",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [
+ {
+ "key": "Preroll",
+ "value": "False"
+ }
+ ],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 1,
+ "title": {
+ "de": "Battle Pass",
+ "ru": "Боевой пропуск",
+ "ko": "배틀패스",
+ "zh-hant": "英雄季卡",
+ "pt-br": "Passe de Batalha",
+ "en": "Battle Pass",
+ "it": "Pass battaglia",
+ "fr": "Passe de combat",
+ "zh-cn": "英雄季卡",
+ "es": "Pase de batalla",
+ "ar": "Battle Pass",
+ "ja": "バトルパス",
+ "pl": "Karnet bojowy",
+ "es-419": "Pase de batalla",
+ "tr": "Savaş Bileti"
+ },
+ "shortDescription": {
+ "de": "Saison X",
+ "ru": "Десятый сезон",
+ "ko": "시즌 X",
+ "zh-hant": "第十賽季",
+ "pt-br": "Temporada X",
+ "en": "Season X",
+ "it": "Stagione X",
+ "fr": "Saison X",
+ "zh-cn": "第X赛季",
+ "es": "Temporada X",
+ "ar": "Season X",
+ "ja": "シーズンX",
+ "pl": "Sezon X",
+ "es-419": "Temporada X",
+ "tr": "X. Sezon"
+ },
+ "description": {
+ "de": "Saison X – Ab sofort bis einschließlich 6. Oktober.\n\nErhalte sofort diese Gegenstände im Wert von über 3.500 V-Bucks.\n • X-Meister (Outfit)\n • Catalyst (Outfit)\n • +50 % Saison-Match-EP\n • +60 % Saison-Match-EP für Freunde\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 100 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • Ultimaritter und 4 weitere Outfits\n • 1.300 V-Bucks\n • 7 Emotes\n • 6 Lackierungen\n • 6 Erntewerkzeuge\n • 1 Gefährte\n • 7 Hängegleiter\n • 7 Rücken-Accessoires\n • 5 Kondensstreifen\n • 17 Spraymotive\n • 3 Musikstücke\n • 1 Spielzeug\n • 27 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Десятый сезон: до 6 октября\n\nСразу же получите предметы стоимостью более 3500 В-баксов!\n • Экипировка Повелителя шипов;\n • экипировка Тануки;\n • +50% к опыту за матчи сезона;\n • +60% к опыту друзей за матчи сезона.\n \nИграйте, повышайте уровень боевого пропуска — вас ждут более 100 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • Экипировка Несокрушимого рыцаря и ещё 4 костюма;\n • 1300 В-баксов;\n • 7 эмоций;\n • 6 обёрток;\n • 6 инструментов;\n • 1 питомец;\n • 7 дельтапланов;\n • 7 украшений на спину;\n • 5 воздушных следов;\n • 17 граффити;\n • 3 музыкальные композиции;\n • 1 игрушка;\n • 27 экранов загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 X: 10월 6일 종료\n\n3,500 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 엑스로드 진화형 의상\n • 카탈리스트 진화형 의상\n • 50% 보너스 시즌 매치 XP\n • 60% 보너스 시즌 친구 매치 XP\n\n게임을 플레이하고 배틀패스 티어를 올려서 100개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 최후의 기사 외 의상 4개\n • 1,300 V-Bucks\n • 이모트 7개\n • 외관 6개\n • 수확 도구 6개\n • 애완동물 1마리\n • 글라이더 7개\n • 등 장신구 6개\n • 트레일 5개\n • 스프레이 17개\n • 음악 트랙 3개\n • 장난감 1개\n • 로딩 화면 27개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第十賽季:從現在開始至10月6日。\n\n立即獲得以下價值逾3500V幣的物品。\n • 廢土領主-X服裝\n • 靈狸服裝\n • 50%額外賽季匹配經驗\n • 60%額外賽季好友匹配經驗\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 終極騎士和4個額外服裝\n • 1300V幣\n • 7個姿勢\n • 6個皮膚\n • 6個採集工具\n • 一個寵物\n • 7個滑翔傘\n • 7個背部裝飾\n • 5滑翔軌跡\n • 17個塗鴉\n • 3個音軌\n • 一個玩具\n • 27個載入介面\n • 以及更多獎勵!\nWant it all faster? You can useV幣 to buy tiers any time!",
+ "pt-br": "Temporada X: de hoje até 6 de outubro.\n\nReceba instantaneamente estes itens avaliados em mais de 3.500 V-Bucks.\n • Traje Lorde X\n • Traje Transcendental\n • 50% de Bônus de EXP da Temporada em Partidas\n • 60% de Bônus de EXP da Temporada em Partidas com Amigos\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 100 recompensas (leva em média de 75 a 150 horas de jogo).\n • Cavaleiro Supremo e mais 4 Trajes\n • 1.300 V-Bucks\n • 7 Gestos\n • 6 Envelopamentos\n • 6 Ferramentas de Coleta\n • 1 Mascote\n • 7 Asas-deltas\n • 7 Acessórios para as Costas\n • 5 Rastros de Fumaça\n • 17 Sprays\n • 3 Faixas Musicais\n • 1 Brinquedo\n • 27 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season X Now through October 6.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Ultima Knight and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 6 Harvesting Tools\n • 1 Pet\n • 7 Gliders\n • 7 Back Blings\n • 5 Contrails\n • 17 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 27 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione X, da ora fino al 6 ottobre\n\nOttieni subito questi oggetti dal valore di oltre 3.500 V-buck!\n • Costume Lord-X\n • Costume Catalizzatore\n • Bonus 50% PE partite stagionali\n • Bonus 60% PE amici partite stagionali\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 100 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • Cavaliere Ultima e 4 costumi in più\n • 1.300 V-Buck\n • 7 emote\n • 6 coperture\n • 6 strumenti raccolta\n • 1 piccolo amico\n • 7 deltaplani\n • 7 dorsi decorativi\n • 5 scie\n • 17 spray\n • 3 brani musicali\n • 1 giocattolo\n • 27 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison X : jusqu'au 6 octobre.\n\nRecevez immédiatement ces objets d'une valeur supérieure à 3500 V-bucks.\n • Tenue Maître occulte\n • Tenue Déclic\n • Bonus d'EXP de saison de 50%\n • Bonus d'EXP de saison de 60% pour des amis\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 100 récompenses (nécessitant de 75 à 150 heures de jeu).\n • Chevalier ultime et 4 autres tenues\n • 1300 V-bucks\n • 7 emotes\n • 6 revêtements\n • 6 outils de collecte\n • 1 compagnon\n • 7 planeurs\n • 7 accessoires de dos\n • 5 traînées de condensation\n • 17 aérosols\n • 3 pistes musicales\n • 1 jouet\n • 27 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第X赛季:从现在开始至10月6日。\n\n立即获得以下价值逾3500V币的物品。\n • 废土领主-X服装\n • 灵狸服装\n • 50%额外赛季匹配经验\n • 60%额外赛季好友匹配经验\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 终极骑士和4个额外服装\n • 1300V币\n • 7个姿势\n • 6个皮肤\n • 6个采集工具\n • 一个宠物\n • 7个滑翔伞\n • 7个背部装饰\n • 5滑翔轨迹\n • 17个涂鸦\n • 3个音轨\n • 一个玩具\n • 27个载入界面\n • 以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada X: desde ahora hasta el 6 de octubre.\n\nConsigue instantáneamente estos objetos valorados en más de 3500 paVos.\n • Traje de Señor X\n • Traje de Catalizadora\n • Bonificación del 50 % de PE por partida de temporada\n • Bonificación del 60 % de PE de partida amistosa de temporada\n\\Juega para subir de nivel tu pase de batalla y desbloquea más de 100 recompensas (suele llevar entre 75 y 150 horas de juego).\n • Caballero Ultima y 4 trajes más\n • 1300 paVos\n • 7 gestos\n • 6 envoltorios\n • 6 herramientas de recolección\n • 1 mascota\n • 7 alas delta\n • 7 accesorios mochileros\n • 5 estelas\n • 17 grafitis\n • 3 temas musicales\n • 1 juguete\n • 27 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season X Now through October 6.\n\nInstantly get these items valued at over 3,500 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • 50% Bonus Season Match XP\n • 60% Bonus Season Friend Match XP\n\nPlay to level up your Battle Pass, unlocking over 100 rewards (typically takes 75 to 150 hours of play).\n • Ultima Knight and 4 more Outfits\n • 1,300 V-Bucks\n • 7 Emotes\n • 6 Wraps\n • 6 Harvesting Tools\n • 1 Pet\n • 7 Gliders\n • 7 Back Blings\n • 5 Contrails\n • 17 Sprays\n • 3 Music Tracks\n • 1 Toy\n • 27 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズンX: 10月6日まで。\r\n\r\n3,500 V-Bucks以上の価値があるアイテムを今すぐ手に入れましょう。\r\n • コスチューム「Xロード」\r\n • コスチューム「カタリスト」\r\n • シーズンマッチXPの50%ボーナス\r\n • シーズンフレンドマッチXPの60%ボーナス\r\n\r\nプレイしてバトルパスのレベルを上げると、100以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\r\n • 「アルティマナイト」及びさらなるコスチュームx4\r\n • 1,300 V-Bucks\r\n • エモートx7\r\n • ラップx6\r\n • 収集ツールx6\r\n • ペットx1\r\n • グライダーx7\r\n • バックアクセサリーx7\r\n • コントレイルx5\r\n • スプレーx17\r\n • ミュージックトラックx3\r\n • おもちゃx1\r\n • ロード画面x27\r\n • 他にも盛りだくさん!\r\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Season X: od teraz do 6 października.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 3500 V-dolców.\n • Strój X-Lord\n • Strój Katalizator\n • Sezonowa premia 50% PD za grę\n • Sezonowa premia 60% PD za grę ze znajomym\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 100 nagród (ich zebranie zajmuje zwykle od 75 do 150 godz. gry).\n • Rycerz Ultima i 4 inne stroje\n • 1300 V-dolców\n • 7 emotek\n • 6 malowań\n • 6 zbieraków\n • 1 pupil\n • 7 lotni\n • 7 plecaków\n • 5 smug\n • 17 graffiti\n • 3 tła muzyczne\n • 1 zabawka\n • 27 ekranów wczytywania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Desde la temporada X hasta el 6 de octubre.\n\\Obtén al instante estos objetos que cuestan más de 3500 monedas V.\n • Atuendo Señor X\n • Atuendo Catalizadora\n • 50 % de bonificación de PE para partidas de la temporada\n • 60 % de bonificación de PE para partidas con amigos en la temporada\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 100 recompensas (esto lleva entre 75 y 150 horas de juego).\n • Caballero Ultima y 4 atuendos más\n • 1300 monedas V\n • 7 gestos\n • 6 papeles\n • 6 herramientas de recolección\n • 1 mascota\n • 7 planeadores\n • 7 mochilas retro\n • 5 estelas\n • 17 aerosoles\n • 3 pistas de música\n • 1 juguete\n • 27 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "X. Sezon: Şu andan 6 Ekim'e kadar.\n\n3.500 V-Papel'in üzerinde değeri olan bu içerikleri hemen kap.\n • X Lordu Kıyafeti\n • Düz Kontak Kıyafeti\n • %50 Bonus Sezonluk Maç TP'si\n • Arkadaşların için %60 Bonus Sezonluk Maç TP'si\n\nBattle Royale oynayarak Savaş Bileti'nin aşamasını yükselt ve 100'den fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • Kızıl Şövalye ve 4 Kıyafet daha\n • 1.300 V-Papel\n • 7 İfade\n • 6 Kaplama\n • 6 Toplama Aleti\n • 1 Sadık Dost\n • 7 Planör\n • 7 Sırt Süsü\n • 5 Dalış İzi\n • 17 Sprey\n • 3 Müzik Parçası\n • 1 Oyuncak\n • 27 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season10_BattlePass.DA_BR_Season10_BattlePass",
+ "itemGrants": []
+ },
+ {
+ "offerId": "259920BC42F0AAC7C8672D856C9B622C",
+ "devName": "BR.Season10.BattleBundle.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 4700,
+ "dynamicRegularPrice": -1,
+ "finalPrice": 2800,
+ "saleType": "PercentOff",
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 2800
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "refundable": false,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [
+ {
+ "requirementType": "DenyOnFulfillment",
+ "requiredId": "2E43CCD24C3BE8F5ABBDF28E233B9350",
+ "minQuantity": 1
+ }
+ ],
+ "metaInfo": [
+ {
+ "key": "Preroll",
+ "value": "False"
+ }
+ ],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Paket",
+ "ru": "Боевой комплект",
+ "ko": "배틀번들",
+ "zh-hant": "戰鬥套組",
+ "pt-br": "Pacotão de Batalha",
+ "en": "Battle Bundle",
+ "it": "Bundle battaglia",
+ "fr": "Pack de combat",
+ "zh-cn": "战斗套组",
+ "es": "Lote de batalla",
+ "ar": "Battle Bundle",
+ "ja": "バトルバンドル",
+ "pl": "Zestaw bojowy",
+ "es-419": "Paquete de batalla",
+ "tr": "Savaş Paketi"
+ },
+ "shortDescription": {
+ "de": "Battle Pass + 25 Stufen!",
+ "ru": "Боевой пропуск + 25 уровней!",
+ "ko": "배틀패스 + 25티어!",
+ "zh-hant": "英雄季卡增加25戰階!",
+ "pt-br": "Passe de Batalha + 25 categorias!",
+ "en": "Battle Pass + 25 tiers!",
+ "it": "Pass battaglia + 25 livelli!",
+ "fr": "Passe de combat + 25 paliers !",
+ "zh-cn": "英雄季卡增加25战阶!",
+ "es": "¡Pase de batalla y 25 niveles!",
+ "ar": "Battle Pass + 25 tiers!",
+ "ja": "バトルパス+25ティア!",
+ "pl": "Karnet bojowy + 25 stopni!",
+ "es-419": "¡Pase de batalla + 25 niveles!",
+ "tr": "Savaş Bileti + 25 aşama!"
+ },
+ "description": {
+ "de": "Saison X – Ab sofort bis einschließlich 6. Oktober.\n\nErhalte sofort diese Gegenstände im Wert von über 10.000 V-Bucks.\n • X-Meister (Outfit)\n • Catalyst (Outfit)\n • Tilted-Teknique (Outfit)\n • Rostkiste (Hängegleiter)\n • Emote-Tarnung (Lackierung)\n • Rissblitze (Kondensstreifen)\n • 300 V-Bucks\n • The Final Showdown (Musikstück)\n • +70 % Saison-Match-EP\n • +80 % Saison-Match-EP für Freunde\n • und noch mehr!\n\nSpiele weiter und stufe deinen Battle Pass auf, um über 75 Belohnungen freizuschalten (im Normalfall werden dafür 75 bis 150 Spielstunden benötigt).\n • 4 weitere Outfits\n • 1.000 V-Bucks\n • 6 Emotes\n • 4 Lackierungen\n • 5 Erntewerkzeuge\n • 1 Gefährte\n • 6 Hängegleiter\n • 7 Rücken-Accessoires\n • 3 Kondensstreifen\n • 13 Spraymotive\n • 2 Musikstücke\n • 1 Spielzeug\n • 23 Ladebildschirme\n • und noch eine ganze Menge mehr!\nDas dauert dir zu lange? Du kannst dir mit V-Bucks jederzeit Stufen kaufen!",
+ "ru": "Десятый сезон: до 6 октября\n\nСразу же получите предметы стоимостью более 10 000 В-баксов!\n • Экипировка Повелителя шипов;\n • экипировка Тануки;\n • экипировка Мисс Будущее;\n • дельтаплан «Драндулет»;\n • обёртка «Танцы»;\n • воздушный след «Сияние разлома»;\n • 300 В-баксов;\n • музыкальная композиция «Решающая битва»;\n • +70% к опыту за матчи сезона;\n • +80% к опыту друзей за матчи сезона;\n • и многое другое.\n\nИграйте, повышайте уровень боевого пропуска — и вас ждут более 75 наград. Обычно, чтобы открыть все награды, требуется 75–150 часов игры.\n • Ещё 4 костюма;\n • 1000 В-баксов;\n • 6 эмоций;\n • 4 обёртки;\n • 5 инструментов;\n • 1 питомец;\n • 6 дельтапланов;\n • 7 украшений на спину;\n • 3 воздушных следа;\n • 13 граффити;\n • 2 музыкальные композиции;\n • 1 игрушка;\n • 23 экрана загрузки\n и это ещё не всё!\nНе хотите ждать? Уровни можно быстро получить за В-баксы!",
+ "ko": "시즌 X: 10월 6일 종료\n\n10,000 V-Bucks 이상의 가치가 있는 여러 아이템을 즉시 받아가세요.\n • 엑스로드 의상\n • 카탈리스트 의상\n • 틸티드 테크니크 아티스트 의상\n • 고철통 글라이더\n • 이모트 위장 패턴 외관\n • 균열 번갯불 스카이다이빙 트레일\n • 300 V-Bucks\n • 마지막 결전 음악 트랙\n • 70% 보너스 시즌 매치 XP\n • 80% 보너스 시즌 친구 매치 XP\n • 그 외 더 많은 혜택!\n\n게임을 플레이하고 배틀패스 티어를 올려서 75개 이상의 보상을 획득해보세요(보통 75-150시간 소요).\n • 추가 의상 4개\n • 1,000 V-Bucks\n • 이모트 6개\n • 외관 4개\n • 수확 도구 5개\n • 애완동물 1마리\n • 글라이더 6개\n • 등 장신구 7개\n • 트레일 3개\n • 스프레이 13개\n • 음악 트랙 2개\n • 장난감 1개\n • 로딩 화면 23개\n • 그 외 많은 혜택!\n더 빨리 보상을 얻고 싶으신가요? V-Bucks를 사용해서 언제든지 티어를 구매할 수 있습니다!",
+ "zh-hant": "第十賽季:從現在開始至10月6日。\n\n立即獲得以下價值逾10000V幣的物品。\n • 廢土領主-X服裝\n • 靈狸服裝\n • 斜塔塗鴉大師服裝\n • 垃圾鏟鬥滑翔傘\n • 姿勢迷彩 皮膚\n • 裂隙閃電滑翔軌跡\n • 300V幣\n • 最終決戰 音軌\n • 70%額外賽季匹配經驗\n • 80%額外賽季好友匹配經驗\n • 以及更多獎勵!\n\n通過遊玩提升英雄季卡戰階,解鎖至少75個獎勵(通常需要75到150個小時的遊玩時間)。\n • 4個額外服裝\n • 1000V幣\n • 6個姿勢\n • 4個皮膚\n • 5個採集工具\n • 1個寵物\n • 6個滑翔傘\n • 7個背部裝飾\n • 3個滑翔軌跡\n • 13個塗鴉\n • 2個音軌\n • 1個玩具\n • 23個載入介面\n • 以及更多獎勵!\n希望更快嗎?你可以隨時使用V幣購買戰階!",
+ "pt-br": "Temporada X: de hoje até 6 de outubro.\n\nReceba instantaneamente estes itens avaliados em mais de 10.000 V-Bucks.\n • Traje Lorde X\n • Traje Transcendental\n • Traje Téknica Torta\n • Asa-delta Carcaça de Ferro-velho\n • Envelopamento Camuflagem de Gesto\n • Rastro de Fumaça Relâmpago de Fenda\n • 300 V-Bucks\n • Faixa MusicalO Confronto Final\n • 70% de Bônus de EXP da Temporada em Partidas\n • 80% de Bônus de EXP da Temporada em Partidas com Amigos\n • e mais!\n\nJogue para subir o nível do seu Passe de Batalha, desbloqueando mais de 75 recompensas (leva em média de 75 a 150 horas de jogo).\n • Mais 4 Trajes\n • 1.000 V-Bucks\n • 6 Gestos\n • 4 Envelopamentos\n • 5 Ferramentas de Coleta\n • 1 Mascote\n • 6 Asas-deltas\n • 7 Acessórios para as Costas\n • 3 Rastros de Fumaça\n • 13 Sprays\n • 2 Faixas Musicais\n • 1 Brinquedo\n • 23 Telas de Carregamento\n • e muito mais!\nQuer obter tudo mais rápido? Você pode comprar categorias com V-Bucks a qualquer hora!",
+ "en": "Season X Now through October 6.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • Tilted Teknique Outfit\n • Junk Bucket Glider\n • Emote Camo Wrap\n • Rift Lightning Contrails\n • 300 V-Bucks\n • The Final Showdown Music Track\n • 70% Bonus Season Match XP\n • 80% Bonus Season Friend Match XP\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 5 Harvesting Tools\n • 1 Pet\n • 6 Gliders\n • 7 Back Blings\n • 3 Contrails\n • 13 Sprays\n • 2 Music Tracks\n • 1 Toy\n • 23 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "it": "Stagione X, da ora fino al 6 ottobre\n\nOttieni subito questi oggetti dal valore di oltre 10.000 V-buck!\n • Costume Lord-X\n • Costume Catalizzatore\n • Costume PinnacoTeknica\n • Deltaplano Secchio di ciarpame\n • Copertura Mimetica emote\n • Scia Fulmine della fenditura\n • 300 V-buck\n • Brano musicale Il Duello finale\n • Bonus 70% PE partite stagionali\n • Bonus 80% PE amici partite stagionali\n • E altro ancora!\n\nGioca per aumentare il livello del tuo Pass battaglia, sbloccando più di 75 ricompense (per un totale indicativo di 75-150 ore di gioco).\n • 4 costumi in più\n • 1.000 V-Buck\n • 6 emote\n • 4 coperture\n • 5 strumenti raccolta\n • 1 piccolo amico\n • 6 deltaplani\n • 7 dorsi decorativi\n • 3 scie\n • 13 spray\n • 2 brani musicali\n • 1 giocattolo\n • 23 schermate di caricamento\n • E altro ancora!\nVuoi tutto e subito? Puoi acquistare livelli usando V-buck in qualsiasi momento!",
+ "fr": "Saison X : jusqu'au 6 octobre.\n\nRecevez immédiatement ces objets d'une valeur supérieure à 10 000 V-bucks.\n • Tenue Maître occulte\n • Tenue Déclic\n • Tenue Graffeuse de Tilted\n • Planeur Ferrailleur\n • Revêtement Camouflage emote\n • Traînée de condensation Faille fulgurante\n • 300 V-bucks\n • Musique Bataille finale \n • Bonus d'EXP de saison de 70%\n • Bonus d'EXP de saison de 80% pour des amis\n • Et plus !\n\nJouez pour augmenter le niveau de votre Passe de combat et déverrouiller plus de 75 récompenses (nécessitant de 75 à 150 heures de jeu).\n • 4 autres tenues\n • 1000 V-bucks\n • 6 emotes\n • 4 revêtements\n • 5 outils de collecte\n • 1 compagnon\n • 6 planeurs\n • 7 accessoires de dos\n • 3 traînées de condensation\n • 13 aérosols\n • 2 musiques\n • 1 jouet\n • 23 écrans de chargement\n • Et plus !\nEnvie d'aller plus vite ? Utilisez vos V-bucks pour acheter des niveaux à tout moment !",
+ "zh-cn": "第X赛季:从现在开始至10月6日。\n\n立即获得以下价值逾10000V币的物品。\n • 废土领主-X服装\n • 灵狸服装\n • 斜塔涂鸦大师服装\n • 垃圾铲斗滑翔伞\n • 尬舞迷彩 皮肤\n • 裂隙闪电滑翔轨迹\n • 300V币\n • 最终决战 音轨\n • 70%额外赛季匹配经验\n • 80%额外赛季好友匹配经验\n • 以及更多奖励!\n\n通过游玩提升英雄季卡战阶,解锁至少75个奖励(通常需要75到150个小时的游玩时间)。\n • 4个额外服装\n • 1000V币\n • 6个姿势\n • 4个皮肤\n • 5个采集工具\n • 1个宠物\n • 6个滑翔伞\n • 7个背部装饰\n • 3个滑翔轨迹\n • 13个涂鸦\n • 2个音轨\n • 1个玩具\n • 23个载入界面\n • 以及更多奖励!\n希望更快吗?你可以随时使用V币购买战阶!",
+ "es": "Temporada X: desde ahora hasta el 6 de octubre.\n\nConsigue instantáneamente estos objetos valorados en más de 10 000 paVos.\n • Traje de Señor X\n • Traje de Catalizadora\n • Traje de Neotéknica\n • Ala delta Cubo de chatarra\n • Envoltorio Gesto Cami\n • Estela Relámpago de la grieta\n • 300 paVos\n • Tema musical El enfrentamiento final\n • Bonificación del 70 % de PE por partida de temporada\n • Bonificación del 80 % de PE de partida amistosa de temporada\n • ¡Y mucho más!\n\nJuega para subir de nivel tu pase de batalla y desbloquea más de 75 recompensas (suele llevar entre 75 y 150 horas de juego).\n • 4 trajes más\n • 1000 paVos\n • 6 gestos\n • 4 envoltorios\n • 5 herramientas de recolección\n • 1 mascota\n • 6 alas delta\n • 7 accesorios mochileros\\ • 3 estelas\n • 13 grafitis\n • 2 temas musicales\n • 1 juguete\n • 23 pantallas de carga\n • ¡Y muchísimo más!\n¿Lo quieres más rápido? ¡Puedes usar paVos para comprar niveles siempre que quieras!",
+ "ar": "Season X Now through October 6.\n\nInstantly get these items valued at over 10,000 V-Bucks.\n • X-Lord Outfit\n • Catalyst Outfit\n • Tilted Teknique Outfit\n • Junk Bucket Glider\n • Emote Camo Wrap\n • Rift Lightning Contrails\n • 300 V-Bucks\n • The Final Showdown Music Track\n • 70% Bonus Season Match XP\n • 80% Bonus Season Friend Match XP\n • and more!\n\nPlay to level up your Battle Pass, unlocking over 75 rewards (typically takes 75 to 150 hours of play).\n • 4 more Outfits\n • 1,000 V-Bucks\n • 6 Emotes\n • 4 Wraps\n • 5 Harvesting Tools\n • 1 Pet\n • 6 Gliders\n • 7 Back Blings\n • 3 Contrails\n • 13 Sprays\n • 2 Music Tracks\n • 1 Toy\n • 23 Loading Screens\n • and so much more!\nWant it all faster? You can use V-Bucks to buy tiers any time!",
+ "ja": "シーズンX: 10月6日まで。\n\n10,000 V-Bucks以上の価値がある以下のアイテムをすぐに入手できます。\n • コスチューム「Xロード」\n • コスチューム「カタリスト」\n • コスチューム「ティルテッドテクニーク」\n • グライダー「 ジャンクバケット」\n • ラップ「エモートカモ」\n • コントレイル「リフトライトニング」\n • 300 V-Bucks\n • ミュージックトラック「最終決戦」\n • シーズンマッチXPの70%ボーナス\n • シーズンフレンドマッチXPの80%ボーナス\n • 他にも盛りだくさん!\n\nプレイしてバトルパスのレベルを上げると、75個以上の報酬をアンロックできます(通常、プレイにかかる時間は75~150時間程度)。\n • さらなるコスチュームx4\n • 1,000 V-Bucks\n • エモートx6\n • ラップx4\n • 収集ツールx5\n • ペットx1\n • グライダーx6\n • バックアクセサリーx7\n • コントレイルx3\n • スプレーx13\n \n • 2 ミュージックトラックx2\n • おもちゃx1\n • ロード画面x23 • 他にも盛りだくさん!\nもっと早く報酬を全部集めたいという方は、V-Bucksでいつでもティアを購入できます!",
+ "pl": "Sezon X: od teraz do 6 października.\n\nZgarnij od razu poniższe przedmioty o wartości ponad 10 000 V-dolców.\n • Strój X-Lord\n • Strój Katalizator\n • Strój Wykrzywiona Teknique\n • Lotnia Złomolot\n • Malowanie Kamuflaż emotkowy\n • Smuga Błyskawica szczeliny\n • 300 V-dolców\n • Tło muzyczne Ostatnie Starcie\n • Sezonowa premia 70% PD za grę\n • Sezonowa premia 80% PD za grę ze znajomym\n • I nie tylko!\n\nGraj, aby awansować karnet bojowy i zdobyć ponad 75 nagród (ich zebranie zajmuje zwykle od 75 do 150 godzin gry).\n • 4 inne stroje\n • 1000 V-dolców\n • 6 emotek\n • 4 malowania\n • 5 zbieraków\n • 1 pupil\n • 6 lotni\n • 7 plecaków\n • 3 smugi\n • 13 graffiti\n • 2 tła muzyczne\n • 1 zabawka\n • 23 ekrany wczytywania\n • I dużo więcej!\nChcesz rozwijać się szybciej? W każdej chwili możesz kupić stopnie za V-dolce!",
+ "es-419": "Desde la temporada X hasta el 6 de octubre.\n\nObtén al instante estos objetos que cuestan más de 10 000 monedas V.\n • Atuendo Señor X\n • Atuendo Catalizadora\n • Atuendo Neotéknica\n • Planeador Montón de chatarra\n • Papel Camuflaje de gestos \n • Estela Relámpago de la grieta \n • 300 monedas V\n • Pista de música El enfrentamiento final \n • 70% de bonificación de PE para partidas de la temporada\n • 80% de bonificación de PE para partidas con amigos en la temporada\n • ¡Y mucho más!\n\nJuega para subir de nivel el pase de batalla y desbloquear más de 75 recompensas (esto lleva entre 75 y 150 horas de juego).\n • 4 atuendos más\n • 1000 monedas V\n • 6 gestos\n • 4 papeles\n • 5 herramientas de recolección\n • 1 mascota\n • 6 planeadores\n • 7 mochilas retro\n • 3 estelas\n • 13 aerosoles\n • 2 pistas de música\n • 1 juguete\n • 23 pantallas de carga\n • ¡Y mucho más!\n¿Lo quieres todo más rápido? ¡Puedes usar las monedas V para comprar niveles cuando quieras!",
+ "tr": "X. Sezon: Şu andan 6 Ekim'e kadar.\n\n10.000 V-Papel'in üzerinde değeri olan bu içerikleri hemen kap.\n • X Lordu Kıyafeti\n • Düz Kontak Kıyafeti\n • Serseri Grafitici Kıyafeti\n • Eski Toprak Planörü\n • İfadeli Kamuflaj Kaplaması\n • Yırtık Yıldırımı Dalış İzi\n • 300 V-Papel\n • Nihai Hesaplaşma Müzik Parçası\n • %70 Bonus Sezonluk Maç TP'si\n • Arkadaşların için %80 Bonus Sezonluk Maç TP'si\n • ve daha fazlası!\n\nBattle Royale oynayarak Savaş Bileti'nin aşamasını yükselt ve 75'ten fazla ödülü aç (genelde 75 ila 150 saat oynama gerektirir).\n • 4 Kıyafet daha\n • 1.000 V-Papel\n • 6 İfade\n • 4 Kaplama\n • 5 Toplama Aleti\n • 1 Sadık Dost\n • 6 Planör\n • 7 Sırt Süsü\n • 3 Dalış İzi\n • 13 Sprey\n • 2 Müzik Parçası\n • 1 Oyuncak\n • 23 Yükleme Ekranı\n • ve çok daha fazlası!\nHepsini daha hızlı mı almak istiyorsun? V-Papel karşılığında istediğin zaman aşama açabilirsin!"
+ },
+ "displayAssetPath": "/Game/Catalog/DisplayAssets/DA_BR_Season10_BattlePassWithLevels.DA_BR_Season10_BattlePassWithLevels",
+ "itemGrants": []
+ },
+ {
+ "offerId": "AF1B7AC14A5F6A9ED255B88902120757",
+ "devName": "BR.Season10.SingleTier.01",
+ "offerType": "StaticPrice",
+ "prices": [
+ {
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": 150,
+ "dynamicRegularPrice": -1,
+ "finalPrice": 150,
+ "saleExpiration": "9999-12-31T23:59:59.999Z",
+ "basePrice": 150
+ }
+ ],
+ "categories": [],
+ "dailyLimit": -1,
+ "weeklyLimit": -1,
+ "monthlyLimit": -1,
+ "refundable": false,
+ "appStoreId": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ],
+ "requirements": [],
+ "metaInfo": [
+ {
+ "key": "Preroll",
+ "value": "False"
+ }
+ ],
+ "catalogGroup": "",
+ "catalogGroupPriority": 0,
+ "sortPriority": 0,
+ "title": {
+ "de": "Battle Pass-Stufe",
+ "ru": "Уровень боевого пропуска",
+ "ko": "배틀패스 티어",
+ "zh-hant": "英雄季卡戰階",
+ "pt-br": "Categoria de Passe de Batalha",
+ "en": "Battle Pass Tier",
+ "it": "Livello Pass battaglia",
+ "fr": "Palier du Passe de combat",
+ "zh-cn": "英雄季卡战阶",
+ "es": "Nivel del pase de batalla",
+ "ar": "Battle Pass Tier",
+ "ja": "バトルパスティア",
+ "pl": "Stopień karnetu bojowego",
+ "es-419": "Nivel de pase de batalla",
+ "tr": "Savaş Bileti Aşaması"
+ },
+ "shortDescription": "",
+ "description": {
+ "de": "Hol dir jetzt tolle Belohnungen!",
+ "ru": "Получите отличные награды!",
+ "ko": "지금 푸짐한 보상을 받아보세요!",
+ "zh-hant": "現在獲得豐厚獎勵!",
+ "pt-br": "Ganhe recompensas ótimas agora!",
+ "en": "Get great rewards now!",
+ "it": "Ricevi subito magnifiche ricompense!",
+ "fr": "Obtenez de grandes récompenses !",
+ "zh-cn": "现在获得丰厚奖励!",
+ "es": "¡Consigue recompensas increíbles!",
+ "ar": "Get great rewards now!",
+ "ja": "ステキな報酬を今すぐゲット!",
+ "pl": "Zgarnij świetne nagrody już teraz!",
+ "es-419": "¡Consigue grandes recompensas ahora!",
+ "tr": "Harika ödülleri kap!"
+ },
+ "displayAssetPath": "",
+ "itemGrants": []
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/responses/contentpages.json b/responses/contentpages.json
new file mode 100644
index 0000000..4be946c
--- /dev/null
+++ b/responses/contentpages.json
@@ -0,0 +1,6047 @@
+{
+ "_title": "Fortnite Game",
+ "_activeDate": "2017-08-30T03:20:48.050Z",
+ "lastModified": "2019-11-01T17:33:35.346Z",
+ "_locale": "en-US",
+ "loginmessage": {
+ "_title": "LoginMessage",
+ "loginmessage": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "_type": "CommonUI Simple Message Base",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin"
+ }
+ },
+ "_activeDate": "2017-07-19T13:14:04.490Z",
+ "lastModified": "2018-03-15T07:10:22.222Z",
+ "_locale": "en-US"
+ },
+ "survivalmessage": {
+ "_title": "survivalmessage",
+ "overrideablemessage": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "_type": "CommonUI Simple Message Base",
+ "title": "The Survive the Storm event is now live!",
+ "body": "Take the pledge:\nSelect a target survival time of 3 or 7 nights.\n\nSend Feedback:\nSurvive the Storm is still in development. We’d love to hear what you think."
+ }
+ },
+ "_activeDate": "2017-08-25T20:35:56.304Z",
+ "lastModified": "2017-12-12T17:14:26.597Z",
+ "_locale": "en-US"
+ },
+ "athenamessage": {
+ "_title": "athenamessage",
+ "overrideablemessage": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "image": "https://cdn2.unrealengine.com/Fortnite/RUS-Axe-1921x1082-fb41e51e9a280b9752b42e2b94b31e34d5758870.png",
+ "_type": "CommonUI Simple Message Base",
+ "title": "Test",
+ "body": "Test"
+ }
+ },
+ "_activeDate": "2017-08-30T03:08:31.687Z",
+ "lastModified": "2017-11-10T15:38:47.250Z",
+ "_locale": "en-US"
+ },
+ "subgameselectdata": {
+ "saveTheWorldUnowned": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "image": "",
+ "hidden": false,
+ "messagetype": "normal",
+ "_type": "CommonUI Simple Message Base",
+ "title": {
+ "de": "Koop-PvE",
+ "ru": "Сюжетная PvE-кампания",
+ "ko": "팀과 함께 플레이하는 PvE",
+ "en": "Co-op PvE",
+ "it": "PvE co-op",
+ "fr": "JcE coopératif",
+ "es": "JcE cooperativo",
+ "ar": "Co-op PvE",
+ "ja": "協力PvE",
+ "pl": "Kooperacyjny tryb PvE",
+ "es-419": "JcE cooperativo",
+ "tr": "Oyuncularla Birlikte PvE"
+ },
+ "body": {
+ "de": "PVE-Modus, in dem du den Sturm kooperativ bekämpfst!",
+ "ru": "Совместное сражение с Бурей!",
+ "ko": "배틀로얄을 플레이하려면 상단의 \"배틀로얄\" 버튼을 클릭하세요.\n\n팀과 함께하는 PvE 모드, 폭풍과 싸우는 어드벤처!",
+ "en": "Cooperative PvE storm-fighting adventure!",
+ "it": "Avventura tempestosa cooperativa PvE!",
+ "fr": "Une aventure en JcE coopératif pour combattre la tempête !",
+ "es": "¡Aventura cooperativa JcE de lucha contra la tormenta!",
+ "ar": "Cooperative PvE storm-fighting adventure!",
+ "ja": "PvE協力プレイでストームに立ち向かえ!",
+ "pl": "Kooperacyjne zmagania PvE z burzą i pustakami!",
+ "es-419": "¡Aventura de lucha contra la tormenta en un JcE cooperativo!",
+ "tr": "Diğer oyuncularla birlikte PvE fırtınayla savaşma macerası!"
+ },
+ "spotlight": false
+ }
+ },
+ "_title": "subgameselectdata",
+ "battleRoyale": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "image": "",
+ "hidden": false,
+ "messagetype": "normal",
+ "_type": "CommonUI Simple Message Base",
+ "title": {
+ "de": "100-Spieler-PvP",
+ "ru": "PvP-режим на 100 игроков",
+ "ko": "100명의 플레이어와 함께하는 PvP",
+ "en": "100 Player PvP",
+ "it": "PvP a 100 giocatori",
+ "fr": "JcJ à 100 joueurs",
+ "es": "JcJ de 100 jugadores",
+ "ar": "100 Player PvP",
+ "ja": "100人参加のPvP",
+ "pl": "PvP dla 100 graczy",
+ "es-419": "JcJ de 100 jugadores",
+ "tr": "100 Oyunculu PvP"
+ },
+ "body": {
+ "de": "Battle Royale, 100-Spieler-PvP.\n\nFortschritte im PvE haben keinen Einfluss auf Battle Royale.",
+ "ru": "PvP-режим на 100 игроков «Королевская битва».\n\nПрогресс в кампании не затрагивает «Королевскую битву».",
+ "ko": "100명의 플레이어와 함께하는 PvP 모드, 배틀로얄.\n\nPvE 모드의 진행 상황은 배틀로얄 플레이에 영향을 주지 않습니다.",
+ "en": "100 Player PvP Battle Royale.\n\nPvE progress does not affect Battle Royale.",
+ "it": "Battaglia reale PvP a 100 giocatori.\n\nI progressi in PvE non sono trasferiti nella Battaglia reale.",
+ "fr": "Un Battle Royale à 100 en JcJ.\n\nLa progression du mode JcE n'affecte pas Battle Royale.",
+ "es": "Battle Royale JcJ de 100 jugadores.\n\nEl progreso JcE no afecta a Battle Royale.",
+ "ar": "100 Player PvP Battle Royale.\n\nPvE progress does not affect Battle Royale.",
+ "ja": "100人参加のPvPバトルロイヤル。\n\nPvEモードの進行状況はバトルロイヤルに影響しません。",
+ "pl": "Battle Royale: PvP dla 100 graczy\n\nPostępy w kampanii nie wpływają na grę w Battle Royale.",
+ "es-419": "Batalla campal JcJ de 100 jugadores.\n\nEl progreso de JcE no afecta Batalla campal.",
+ "tr": "100 Oyunculu PvP Battle Royale. PvE ilerlemesi Battle Royale'i etkilemez."
+ },
+ "spotlight": false
+ }
+ },
+ "creative": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "image": "",
+ "hidden": false,
+ "messagetype": "normal",
+ "_type": "CommonUI Simple Message Base",
+ "title": {
+ "de": "Neue vorgestellte Inseln!",
+ "ru": "Новые рекомендованные острова!",
+ "ko": "새로운 추천 섬!",
+ "en": "New Featured Islands!",
+ "it": "Nuove isole in evidenza!",
+ "fr": "Nouvelles îles à la Une !",
+ "es": "¡Nuevas islas destacadas!",
+ "ar": "New Featured Islands!",
+ "ja": "新しいおすすめの島!",
+ "pl": "Nowe wyróżnione wyspy!",
+ "es-419": "¡Nuevas islas destacadas!",
+ "tr": "Yeni Öne Çıkan Adalar!"
+ },
+ "body": {
+ "de": "Deine Insel. Deine Freunde. Deine Regeln. \n\nEntdecke neue Arten, Fortnite zu spielen. Zocke von der Community erstellte Spiele mit Freunden und erschaffe deine Trauminsel.",
+ "ru": "Ваш остров. Ваши друзья. Ваши правила. \n\nПробуйте новые развлечения в Fortnite: играйте с друзьями в игры, созданные участниками сообщества, и стройте что угодно на собственном острове.",
+ "ko": "내가 만든 게임, 내가 세운 규칙, 이제 나만의 섬에서 즐긴다! \n포트나이트 게임을 완전히 새로운 방식으로 플레이해 보세요. 커뮤니티가 만든 게임을 친구들과 플레이해 보고, 여러분의 꿈의 섬을 만들어보세요.",
+ "en": "Your Island. Your Friends. Your Rules.\n\nDiscover new ways to play Fortnite, play community made games with friends and build your dream island.",
+ "it": "La tua isola. I tuoi amici. Le tue regole. \n\nScopri nuovi modi per giocare a Fortnite, divertiti insieme ai tuoi amici con i giochi creati dalla community e costruisci la tua isola da sogno.",
+ "fr": "Votre île. Vos amis. Vos règles.\n\nJouez à Fortnite autrement, éclatez-vous entre amis dans les jeux créés par la communauté et construisez l'île de vos rêves.",
+ "es": "Vuestra isla. Vuestros amigos. Vuestras reglas. \n\nDescubre nuevas formas de jugar a Fortnite, participa con tus amigos en juegos diseñados por la comunidad y construye la isla de tus sueños.",
+ "ar": "Your Island. Your Friends. Your Rules.\n\nDiscover new ways to play Fortnite, play community made games with friends and build your dream island.",
+ "ja": "コミュニティによって作られた島で遊んだり、夢に描いた自分に島を創り、フォートナイトの新しい楽しみ方を発掘しよう。",
+ "pl": "Twoja wyspa. Twoi znajomi. Twoje zasady. \n\nPoznajcie nowe sposoby na zabawę w Fortnite, zagrajcie ze znajomymi w gry stworzone przez innych graczy i zbudujcie wyspę swoich marzeń.",
+ "es-419": "Tu isla. Tus amigos. Tus reglas. \n\nDescubre nuevas maneras de jugar Fortnite: juega con tus amigos a juegos diseñados por la comunidad y construye la isla de tus sueños.",
+ "tr": "Fortnite’ı oynamanın yepyeni yollarını keşfet, topluluğun yaptığı oyunlarda arkadaşlarınla eğlen ve hayalindeki adayı inşa et."
+ },
+ "spotlight": false
+ }
+ },
+ "saveTheWorld": {
+ "_type": "CommonUI Simple Message",
+ "message": {
+ "image": "",
+ "hidden": false,
+ "messagetype": "normal",
+ "_type": "CommonUI Simple Message Base",
+ "title": {
+ "de": "Koop-PvE",
+ "ru": "Сюжетная PvE-кампания",
+ "ko": "팀과 함께 플레이하는 PvE",
+ "en": "Co-op PvE",
+ "it": "PvE co-op",
+ "fr": "JcE coopératif",
+ "es": "JcE cooperativo",
+ "ar": "Co-op PvE",
+ "ja": "協力PvE",
+ "pl": "Kooperacyjny tryb PvE",
+ "es-419": "JcE cooperativo",
+ "tr": "Oyuncularla Birlikte PvE"
+ },
+ "body": {
+ "de": "PVE-Modus, in dem du den Sturm kooperativ bekämpfst!",
+ "ru": "Совместное сражение с Бурей!",
+ "ko": "배틀로얄을 플레이하려면 상단의 \"배틀로얄\" 버튼을 클릭하세요.\n\n팀과 함께하는 PvE 모드, 폭풍과 싸우는 어드벤처!",
+ "en": "Cooperative PvE storm-fighting adventure!",
+ "it": "Avventura tempestosa cooperativa PvE!",
+ "fr": "Une aventure en JcE coopératif pour combattre la tempête !",
+ "es": "¡Aventura cooperativa JcE de lucha contra la tormenta!",
+ "ar": "Cooperative PvE storm-fighting adventure!",
+ "ja": "PvE協力プレイでストームに立ち向かえ!",
+ "pl": "Kooperacyjne zmagania PvE z burzą i pustakami!",
+ "es-419": "¡Aventura de lucha contra la tormenta en un JcE cooperativo!",
+ "tr": "Diğer oyuncularla birlikte PvE fırtınayla savaşma macerası!"
+ },
+ "spotlight": false
+ }
+ },
+ "_activeDate": "2017-10-11T18:37:23.145Z",
+ "lastModified": "2019-05-06T12:59:15.974Z",
+ "_locale": "en-US"
+ },
+ "savetheworldnews": {
+ "news": {
+ "_type": "Battle Royale News",
+ "messages": [
+ {
+ "image": "https://cdn.discordapp.com/attachments/927739901540188200/930882355818823720/1_of9OCSRWoAoS3_lNVKqM2g.png",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "adspace": "DISCORD!",
+ "title": "Reload Backend",
+ "body": "https://discord.gg/DAMETTEREILDISCORDIDRELOAD",
+ "spotlight": false
+ },
+ {
+ "image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "adspace": "ENJOY!",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin",
+ "spotlight": false
+ }
+ ]
+ },
+ "_title": "SaveTheWorldNews",
+ "_noIndex": false,
+ "alwaysShow": false,
+ "_activeDate": "2018-08-06T18:25:46.770Z",
+ "lastModified": "2019-10-30T20:17:48.789Z",
+ "_locale": "en-US"
+ },
+ "battlepassaboutmessages": {
+ "news": {
+ "_type": "Battle Royale News",
+ "messages": [
+ {
+ "layout": "Right Image",
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_HowDoesItWork-1024x1024-faa688dad8111f0a944c351dd7b11e4bff3562aa.png",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "title": "HOW DOES IT WORK?",
+ "body": "Play to level up your Battle Pass. Earn XP from a variety of in-game activities like searching chests, eliminating opponents, completing challenges, and more! Level up to unlock over 100 rewards including 1500 V-Bucks!. You can purchase the Battle Pass any time during the season for 950 V-Bucks and retroactively unlock any rewards up to your current level.",
+ "spotlight": false
+ },
+ {
+ "layout": "Left Image",
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_WhatsInside-(1)-1024x1024-68356adb3844b46ada633ace2d168af74b446f35.png",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "title": "WHAT’S INSIDE?",
+ "body": "When you buy the Battle Pass, you’ll instantly receive two exclusive outfits - Turk and Journey! You can earn more exclusive rewards including Emotes, Outfits, Wraps, Pickaxes, Loading Screens and more. You’ll receive a reward each time you level up and for the first time, you can keep leveling up beyond level 100!",
+ "spotlight": false
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battle-pass-about/Season_8/11BR_Launch_Upsell_Badges-1024x1024-94b54a7e241b5747d83095feb1e6fc330c49689f.png",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "title": "New This Season: Medals! ",
+ "body": "Battle Pass progression has been entirely reworked this Season. Advance your Battle Pass by completing challenges and earning in-game Medals! Earn daily medals and fill out your punch card to maximize your XP.",
+ "spotlight": false
+ }
+ ]
+ },
+ "_title": "BattlePassAboutMessages",
+ "_noIndex": false,
+ "_activeDate": "2018-06-20T18:15:07.002Z",
+ "lastModified": "2019-10-14T20:42:20.253Z",
+ "_locale": "en-US"
+ },
+ "playlistinformation": {
+ "frontend_matchmaking_header_style": "None",
+ "_title": "playlistinformation",
+ "frontend_matchmaking_header_text": "",
+ "playlist_info": {
+ "_type": "Playlist Information",
+ "playlists": [
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_2v2_GunFright_LTM-1024x512-f3b0f0157e8652a23db8abc23814d97893179e20.jpg",
+ "playlist_name": "Playlist_Creative_Hyena_G",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo",
+ "description": "Code BluDrive \r\n\r\nIt's 2 vs 2 in a battle of champions, which duo will come out on top? \r\n\r\nAt the beginning of each round, all players will be granted the same random kit. The duo that has the most wins after 5 rounds are completed will be crowned the victors! \r\n\r\nCreated By: BluDrive"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg",
+ "playlist_name": "Playlist_DADBRO_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg",
+ "playlist_name": "Playlist_DADBRO_Squads_12",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/11BR_LTM_ModeTile-1024x512-aae4d5b5eb1ea4eeb31f852c8b98516681bfe769.jpg",
+ "playlist_name": "Playlist_DADBRO_Squads_8",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Red-1024x512-2e1c5e38b652093029befb6a86a44db844474af8.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_Random2",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo",
+ "description": "A solo queue, FFA simulation of the end-game scenario in Battle Royale with a quick moving zone. Randomized spawns and inventory items make each round unique. Stick around after the first game. there are multiple rounds in each session. Zone Wars is a collection of games made by the community. The four maps included in this playlist are: Desert created by JotaPeGame. Code: jotapegame Downhill River created by Enigma. Code: enigma Vortex created by Zeroyahero. Code: zeroyahero Colosseum created by Jesgran. Code: jesgran",
+ "display_name": "SOLO FFA"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Blue-1024x512-0f76af6296545de1b2d9da766e76475418bc5940.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_Random",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo",
+ "description": "A party queue, FFA simulation of the end-game scenario in Battle Royale with a quick moving zone. Randomized spawns and inventory items make each round unique. Stick around after the first game. there are multiple rounds in each session. Zone Wars is a collection of games made by the community. The four maps included in this playlist are: Desert created by JotaPeGame. Code: jotapegame Downhill River created by Enigma. Code: enigma Vortex created by Zeroyahero. Code: zeroyahero Colosseum created by Jesgran. Code: jesgran",
+ "display_name": "PARTY FFA"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/FORT_Tile_Tutorial-1024x512-72a618fa185a0bbc26ab6a290bc0a45cf460c576.png",
+ "playlist_name": "Playlist_Tutorial_1",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile-1024x512-a2741f113a7178ca15d71d281dcc2b614ff90754.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_A",
+ "violator": "PARTY FFA",
+ "_type": "FortPlaylistInfo",
+ "description": "Code jesgran Zone Wars - Arena A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. Become the ultimate gladiator in this Colosseum style island. An open style island demands quick building. Created by Jesgran.",
+ "display_name": "Colosseum"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Red-1024x512-2e1c5e38b652093029befb6a86a44db844474af8.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_D",
+ "violator": "SOLO FFA",
+ "_type": "FortPlaylistInfo",
+ "description": "Code jotapegame Desert Zone Wars 4.1 \r\n\r\nA solo, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. \r\n\r\nMake your way through a small desert town to the final circle. A diverse set of weapons and mobility allows for unique gameplay and lots of replayability. \r\n\r\nCreated by JotaPeGame.",
+ "display_name": "Desert"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Blue-1024x512-0f76af6296545de1b2d9da766e76475418bc5940.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_DH",
+ "violator": "PARTY FFA",
+ "_type": "FortPlaylistInfo",
+ "description": "Code enigma S10 Enigmas Downhill River Zonewars X A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. Stay out of the storm as you move downhill through a river in this original style Zone Wars island. Community launch pads and a consistent Storm path allows for familiarity after a few rounds. Created by Enigma.",
+ "display_name": "Downhill River"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_ZoneWars_In-Game_ModeTile_Black-1024x512-23ba95e82931361ce535a643fdac54e120254374.jpg",
+ "playlist_name": "Playlist_Creative_ZebraWallet_V",
+ "violator": "PARTY FFA",
+ "_type": "FortPlaylistInfo",
+ "description": "Code zeroyahero Vortex Zone Wars A party, FFA simulation of the end-game scenario in Battle Royale with a quick-moving zone. Eliminate the competition as you avoid the Storm. Randomized spawns and inventory items make each round unique. Stick around after the first game. There are multiple rounds in each session. This island puts a unique twist on the Zone Wars game with mountainous terrain to traverse. The elevation change from zone to zone can be quite drastic! Created by Zeroyahero",
+ "display_name": "Vortex"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_TheCombine_ModeTile-1024x512-3aa8ebdfe1df7d9995e824a781eacdb954ee9615.jpg",
+ "playlist_name": "Playlist_Crucible_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR_LTM-Tile_Playground-1024x512-53db8a4b5fb41251af279eaf923bc00ecbc17792.jpg",
+ "playlist_name": "Playlist_Creative_PlayOnly_40",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10CM_LTM_KnockTown_Playlist-1024x512-72e32b88b332b4d3ee3ee5255eff9522b660485c.jpg",
+ "playlist_name": "Playlist_Creative_KaleTofu",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg",
+ "playlist_name": "Playlist_Bounty_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg",
+ "playlist_name": "Playlist_Bounty_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_Bounty_LTM_ModeTile-1024x512-57ae30f0c598acda4be4975930ad30e210debb61.jpg",
+ "playlist_name": "Playlist_Bounty_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_WorldCup_FeatIsland_WorldRun_ModeTile-1024x512-34d66c90603f4e64ebd56054b889c4ec163abea5.jpg",
+ "playlist_name": "Playlist_Creative_Squad_Battle_16_B",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_SneakySilencers-1024x512-1669e2eeddca63b61e9b94cc19c3ec502fd33f29.jpg",
+ "playlist_name": "Playlist_Sneaky_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_WorldCup_FeatIsland_JunkyardJuke_ModeTile-1024x512-7a2585ce248f1efa438674c368b37116dc5514de.jpg",
+ "playlist_name": "Playlist_Creative_Squad_Battle_16_A",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo",
+ "description": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/09CM_WorldCup_FeatIsland_SkyStation_ModeTile-1024x512-a5424f9ac27626a73646c9fd158901c4c363ec0c.jpg",
+ "playlist_name": "Playlist_Creative_Squad_Battle_32_A",
+ "violator": "COMMUNITY CREATION",
+ "_type": "FortPlaylistInfo",
+ "description": "Created by Team Evolve. Featured in the Fortnite World Cup Creative Finals. Battle other squads to capture zones and score points! Any player can capture a zone and score points for your team. Use impulse grenades to blast other teams out of the capture zones. Players can now earn XP after each game and the top three teams will earn bonus XP."
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg",
+ "playlist_name": "Playlist_Low_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_HeavyMetal_ModeTile-1024x512-4db8223707fb313220eef577dafde5c14106e49d.jpg",
+ "playlist_name": "Playlist_Heavy_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09CM_In-Game_PropHunt_ModeTile-1024x512-1510311027a93a720b42ed22e711c7e478931adb.jpg",
+ "playlist_name": "Playlist_Creative_PuppyHugs",
+ "violator": "PLAYER MADE!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg",
+ "playlist_name": "Playlist_Unvaulted_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/EN_CM09_BeachAssaultCreativeLTM_ContestWinner_ModeTile-1024x512-9cdeb2e0ea37179a37d3384cf73c9949d2d19546.jpg",
+ "playlist_name": "Playlist_Creative_BeachAssault",
+ "violator": "PLAYER MADE",
+ "_type": "FortPlaylistInfo",
+ "display_name": "BEACH ASSAULT BY PRUDIZ"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Barebones-1024x512-4a29337febb04e9043d57c9e61afe849f8a9e9c7.jpg",
+ "playlist_name": "Playlist_Hard_Solo",
+ "_type": "FortPlaylistInfo",
+ "description": "This mode has the map, compass, storm timer and many other elements of the Heads Up Display turned off."
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BlueWeapons_ModeTile-1024x512-0c38f1bc3b991943e3f6650bf7acfbcdd8739b1e.jpg",
+ "playlist_name": "Playlist_Blue_Squads",
+ "_type": "FortPlaylistInfo",
+ "description": "",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png",
+ "playlist_name": "Playlist_SolidGold_Squads",
+ "_type": "FortPlaylistInfo",
+ "description": "",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_PurpleReign_ModeTile-1024x512-c5a7e2bd3f32b83f17e4fa28817312ab6210133c.jpg",
+ "playlist_name": "Playlist_Purple_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_FullAuto_ModeTile-1024x512-d1532221d738ba3aed434512b7c670e72b89f474.jpg",
+ "playlist_name": "Playlist_Auto_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_HeavyMetal_ModeTile-1024x512-4db8223707fb313220eef577dafde5c14106e49d.jpg",
+ "playlist_name": "Playlist_Heavy_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_GunGame_ModeTile-1024x512-409bcc8860d5bd4342f61b9ce0e9f39da7e05ddf.jpg",
+ "playlist_name": "Playlist_Gungame_Reverse",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_Surfin_ModeTile-1024x512-ebff23e30b121cfe3eecf173949c055325522090.jpg",
+ "playlist_name": "Playlist_Race_12",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_DeaglesandHeadshots_ModeTile-1024x512-4d969f5a9126ba71b7ee77088fd22df5b4c7caba.jpg",
+ "playlist_name": "Playlist_Beagles_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LeaveNoneBehind_ModeTile-1024x512-bfe65d02a5d42577d22c133d25ad9c9fb62a35a0.jpg",
+ "playlist_name": "Playlist_Behind_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LoadoutSwap_ModeTile-1024x512-f73c146f8ccc7998aab14f8c1957f0ad01faa933.jpg",
+ "playlist_name": "Playlist_Swap_Squads_Respawn",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_TankBattle_ModeTile-1024x512-48554aae511d9c5a7ac1a5d4fd54e0f5a37bd66d.jpg",
+ "playlist_name": "Playlist_Tank_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_StrategicStructures_ModeTile-1024x512-4f6f448375284fef60fe2a2c15f292115ebec558.jpg",
+ "playlist_name": "Playlist_Strategic_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BuildersParadise_ModeTile-1024x512-730a5ffe51c8f0420b91529d1fc05e081aa2071c.jpg",
+ "playlist_name": "Playlist_Paradise_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_PowerUp_ModeTile-1024x512-7e1824071133f9eac4ca44c701605923893c85bf.jpg",
+ "playlist_name": "Playlist_Pow_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_BuilttoLast_ModeTile-1024x512-cf95f4701f41c608ae8590fe588a5a0ea25ed68a.jpg",
+ "playlist_name": "Playlist_Care_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_Tag_ModeTile-1024x512-d4471981ccdc8d9f444d1f416b3f4458612da006.jpg",
+ "playlist_name": "Playlist_Tag_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_WaterBalloons_ModeTile-1024x512-ea418e1a4fb6ce21d5f01f2ac18ae60e41e9ef74.jpg",
+ "playlist_name": "Playlist_Bison_Respawn_Squads",
+ "_type": "FortPlaylistInfo",
+ "description": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_WaterBalloons_ModeTile-1024x512-ea418e1a4fb6ce21d5f01f2ac18ae60e41e9ef74.jpg",
+ "playlist_name": "Playlist_Bison_Respawn",
+ "_type": "FortPlaylistInfo",
+ "description": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_SiphonRumble_ModeTile-1024x512-02ad3c97e4cdc7172f6ea59140b89b004f95886a.jpg",
+ "playlist_name": "Playlist_Respawn_20_Sif",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/14DaysofSummer/09BR_14DoS_LTM_LavaRumble_ModeTile-1024x512-29cc6ad680519d8f792bf1fa4053cf9191f84b6e.jpg",
+ "playlist_name": "Playlist_Respawn_20_Lava",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_TDM-1024x512-878ba9f92deb153ec85f2bcbce925e185344290e.jpg",
+ "playlist_name": "Playlist_Respawn_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_LTM_HordeRush_Mode_Tile-1024x512-a844840eb58db868b6abfbe18fc8a8f483e18c60.jpg",
+ "playlist_name": "Playlist_Mash_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_LTM_DowntownDrop_Screenshot_ModeTile-1024x512-d8ce0a16ae59e2a2f501813ddf540a00e60098b5.jpg",
+ "playlist_name": "Playlist_Creative_Vigilante",
+ "violator": "PLAYER MADE!",
+ "_type": "FortPlaylistInfo",
+ "description": "Created by NotNellaf & Tollmolia in collaboration with Jordan Brand. \r\n\r\nShow off your moves in the Downtown Drop LTM. Launch off massive jumps, grind down city streets and collect coins to win! \r\n\r\nProve you deserve the title of G.O.A.T."
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg",
+ "playlist_name": "Playlist_Wax_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg",
+ "playlist_name": "Playlist_Wax_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/09BR_Social_LTM_WicksBounty_Announce_PlaylistTile-1024x512-df3870c355530a7591c7a3fa453c15686c862989.jpg",
+ "playlist_name": "Playlist_Wax_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg",
+ "playlist_name": "Playlist_Music_Highest ",
+ "violator": "LIVE EVENT!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg",
+ "playlist_name": "Playlist_Music_Higher",
+ "violator": "LIVE EVENT!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/10BR_In-Game_Farewell_ModeTile-1024x512-3c6326529cb23dbe465594a4266f2054ba52e4ad.jpg",
+ "playlist_name": "Playlist_Music_High",
+ "violator": "LIVE EVENT!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg",
+ "playlist_name": "Playlist_Music_Med",
+ "violator": "LIVE EVENT!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/v94/09BR_RobotFight_ModeTile-1024x512-2a5383ab45d733d276100a14092da01c5db66fb7.jpg",
+ "playlist_name": "Playlist_Music_Low",
+ "violator": "LIVE EVENT!",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_Endgame_InGame_Mode-Tile-1024x512-03bb0dc121ae8b2dcd27b8b386670737093d0c83.jpg",
+ "playlist_name": "Playlist_Ashton_Sm",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/EN_08BR_DeepFried_Mode_Tile-1024x512-227979fa27053f858066a1a47d68b55f792fded1.jpg",
+ "playlist_name": "Playlist_Barrier_16_B_Lava",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg",
+ "playlist_name": "Playlist_Goose_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg",
+ "playlist_name": "Playlist_Goose_Duos_24",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_AirRoyale_Mode-Tile-1024x512-e071f542b7e0ce2cfc34c208e14604815b76439c.jpg",
+ "playlist_name": "Playlist_Goose_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/Xm1p8oo.jpg",
+ "playlist_name": "Playlist_PlaygroundV2",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/Xm1p8oo.jpg",
+ "playlist_name": "Playlist_Playground",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg",
+ "playlist_name": "Playlist_Fill_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg",
+ "playlist_name": "Playlist_Fill_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_FloorIsLava_ModeTile-1024x512-f1af4cd98c7ff0ce4058f4e3b65a853641d0a35e.jpg",
+ "playlist_name": "Playlist_Fill_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg",
+ "playlist_name": "Playlist_Green_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg",
+ "playlist_name": "Playlist_Green_Squad",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_LTM_SolidGreen_ModeTile_Squads-1024x512-f0d931472907d54ffaa52ef81f78bf9d5fcfaa2d.jpg",
+ "playlist_name": "Playlist_Green_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg",
+ "playlist_name": "Playlist_Slide_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg",
+ "playlist_name": "Playlist_Classic_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg",
+ "playlist_name": "Playlist_Hover",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg",
+ "playlist_name": "Playlist_Hover_64",
+ "violator": "Large Team Mode",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_Drifting50s_Powder-1024x512-5fb24cfd4d83e4cd3a3589b126313beba9cc69a7.jpg",
+ "playlist_name": "Playlist_Hover_48",
+ "violator": "Large Team Mode",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg",
+ "playlist_name": "Playlist_Sword_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg",
+ "playlist_name": "Playlist_Sword_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_InfinityBlade_v2-1024x512-475608c25c288f7d5c884eeebc47fb565f6f5803.jpg",
+ "playlist_name": "Playlist_Sword_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg",
+ "playlist_name": "Playlist_Love_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg",
+ "playlist_name": "Playlist_Love_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_LoveShot_v2-1024x512-cd7b917157be2472bebc3db3b125e9b20174c748.jpg",
+ "playlist_name": "Playlist_Love_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg",
+ "playlist_name": "Playlist_Toss_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg",
+ "playlist_name": "Playlist_Toss_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_LTM_CatchSquads-1024x512-7289222d56b08ef8de20c7187af2670496dca3df.jpg",
+ "playlist_name": "Playlist_Toss_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_NFL_TeamRumble-1024x512-6facfc07214965dc2211d703904607a30c68d08a.jpg",
+ "playlist_name": "Playlist_Omaha",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Squads-1024x512-cf4323aa9c2cfd027484cf4da14544128e3d4c7e.jpg",
+ "playlist_name": "Playlist_Deimos_Squad_Winter",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Duos_-1024x512-84315aac8d1fcfb840deba46c4dafda8e9005b2a.jpg",
+ "playlist_name": "Playlist_Deimos_Duo_Winter",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_ModeTile_WinterDeimos_Solo-1024x512-5c759fe60ec85988f35c729b5fb6a7993d8dbb58.jpg",
+ "playlist_name": "Playlist_Deimos_Solo_Winter",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg",
+ "playlist_name": "Playlist_Low_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg",
+ "playlist_name": "Playlist_Ground_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_WildWest-1024x512-42779242a5a73d654332d9d0afe0983f9d8401d0.jpg",
+ "playlist_name": "Playlist_WW_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg",
+ "playlist_name": "Playlist_Slide_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg",
+ "playlist_name": "Playlist_Ground_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_GroundGame-1024x512-37a4d1d335b4c9427bdc672db0f335f4df813874.jpg",
+ "playlist_name": "Ground_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_OneShot-1024x512-9914c2c88b21f72f9628681e0cbcd20bb7311a3f.jpg",
+ "playlist_name": "Playlist_Low_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives50s-1024x512-3a8d44af3c2718b5aaaaebbd4627258a657bf0bf.jpg",
+ "playlist_name": "Playlist_50v50HE",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg",
+ "playlist_name": "Playlist_HighExplosives_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg",
+ "playlist_name": "Playlist_HighExplosives_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HighExplosives-1024x512-4afc4219531db710e56f3b038e7cd84ca2be7675.jpg",
+ "playlist_name": "Playlist_HighExplosives_Squads / Event 24",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_WildWest-1024x512-42779242a5a73d654332d9d0afe0983f9d8401d0.jpg",
+ "playlist_name": "Playlist_WW_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_SneakySilencers-1024x512-1669e2eeddca63b61e9b94cc19c3ec502fd33f29.jpg",
+ "playlist_name": "Playlist_Sneaky_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_FoodFight16-1024x512-309538a1b961b5ab0c22417ab34170cc302bbab8.jpg",
+ "playlist_name": "Playlist_Barrier_16",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_CloseEncounters50s-1024x512-03dcc058e1bec3e853b3ee20594128805223b5a3.jpg",
+ "playlist_name": "Playlist_Close_50",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_HolidayDisco-1024x512-684bd4b41613e59d895a477389515a8b4878da6a.jpg",
+ "playlist_name": "Playlist_Disco_32_Alt",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Slide-1024x512-189625349e80dc81e225691aa952ffd280996058.jpg",
+ "playlist_name": "Playlist_Slide_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Barebones-1024x512-4a29337febb04e9043d57c9e61afe849f8a9e9c7.jpg",
+ "playlist_name": "Playlist_Hard_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Siphon-1024x512-66cb27084be50387682989b50a01dbc9e42f5a5d.jpg",
+ "playlist_name": "Playlist_Vamp_Squad",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR07_14-DoF_Social-1024x512-5fa7dd4752d1f0cc1a101f09cb170d0f5b2a31cf.jpg",
+ "playlist_name": "Playlist_33",
+ "violator": "",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR_LTM_Unvaulted-1024x512-d3cbe3c4a756190279af4ce98773d6599f7aab4f.jpg",
+ "playlist_name": "Playlist_Unvaulted_Squads",
+ "violator": "",
+ "_type": "FortPlaylistInfo",
+ "description": "",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_TDM-1024x512-878ba9f92deb153ec85f2bcbce925e185344290e.jpg",
+ "playlist_name": "Playlist_Respawn_24",
+ "_type": "FortPlaylistInfo",
+ "description": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_ModeTile_LTM_WildWest-1024x512-f67d9d1dd2ca0b290c92b1380240429f0f257a10.jpg",
+ "playlist_name": "Playlist_WW_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_FoodFight-1024x512-5e1540a0a2ba0a1f663d32c60cfec3a360278672.png",
+ "playlist_name": "Playlist_Barrier_12",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_In-GamePlaylist_TeamTerror-1024x512-310430bdaf1b1dd0ecb4d3b180bb6409b7ff6e27.jpg",
+ "playlist_name": "playlist_deimos_50",
+ "_type": "FortPlaylistInfo",
+ "description": "",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_-Solo-1024x512-7e7fe76e48beb3a06da0592cb26e412265986e4d.jpg",
+ "playlist_name": "Playlist_Deimos_Solo",
+ "violator": "",
+ "_type": "FortPlaylistInfo",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_Squads-1024x512-783a0812f6acf1f5931c8015e6ad13c0b76c5a9c.jpg",
+ "playlist_name": "Playlist_Deimos_Squad",
+ "violator": "",
+ "_type": "FortPlaylistInfo",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_Fortnitemares_In-GamePlaylist_1024x512_Duos-1024x512-1eadb7cfab62c9eb5c90c65577c676d5d0bb15c2.jpg",
+ "playlist_name": "Playlist_Deimos_Duo",
+ "violator": "",
+ "_type": "FortPlaylistInfo",
+ "display_name": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_LTM_DiscoDomination-1024x512-c79f07de78d8283656fcf4d1ee757f880911d775.jpg",
+ "playlist_name": "Playlist_Disco_32",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR06_LobbyTile_LTM_DiscoDomination-1024x512-c79f07de78d8283656fcf4d1ee757f880911d775.jpg",
+ "playlist_name": "Playlist_Disco",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg",
+ "playlist_name": "Playlist_Soaring_Squads",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg",
+ "playlist_name": "Playlist_Soaring_Duos",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg",
+ "playlist_name": "Playlist_Soaring_Solo",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg",
+ "playlist_name": "Playlist_Bling_Squads",
+ "violator": "",
+ "special_border": "HighStakes",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg",
+ "playlist_name": "Playlist_Bling_Duos",
+ "violator": "",
+ "special_border": "HighStakes",
+ "_type": "FortPlaylistInfo",
+ "description": ""
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/08BR_HighStakes_ModeTile-1024x512-741e576e8ae2e30c256ff3508011760ace890711.jpg",
+ "playlist_name": "Playlist_Bling_Solo",
+ "violator": "",
+ "special_border": "HighStakes",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png",
+ "playlist_name": "Playlist_50v50SAU",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg",
+ "playlist_name": "Playlist_Score_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg",
+ "playlist_name": "Playlist_Score_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM_ScoreRoyale-1024x512-b608aaf7840cdf6b7a702c5cbe1848a2247516d6.jpg",
+ "playlist_name": "Playlist_Score_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_Soaring50s-1024x512-80762dcc260cc959c11dac2ca2f6ae176eb63ef3.jpg",
+ "playlist_name": "Playlist_Soaring_50s",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg",
+ "playlist_name": "Playlist_Steady_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg",
+ "playlist_name": "Playlist_Steady_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LobbyTile_LTM-Steady-Storm-1024x512-f38e603ed9c80b6210a25c4737d3d8b675b8d28e.jpg",
+ "playlist_name": "Playlist_Steady_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png",
+ "playlist_name": "Playlist_FlyExplosives_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png",
+ "playlist_name": "Playlist_FlyExplosives_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR05_LTM_FlyExplosives-1024x512-6283e3392b3aa44794dac64423b22606f8773503.png",
+ "playlist_name": "Playlist_FlyExplosives_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_Tile_FinalFight-1024x576-5af82788940faeef422ad204aaa241e36e7c9c56.jpg",
+ "playlist_name": "Playlist_Final_12",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "",
+ "playlist_name": "Playlist_Creative_PlayOnly",
+ "special_border": "None",
+ "_type": "FortPlaylistInfo",
+ "display_subname": "-"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg",
+ "playlist_name": "Playlist_Taxes_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg",
+ "playlist_name": "Playlist_Taxes_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistimages/BR_LTM-Tile_Tactics-Showdown-1024x512-a84753f49eb70d8751a99b4db83cdb5eb8290166.jpg",
+ "playlist_name": "Playlist_Taxes_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/LTM_Tile_FinalFight-1024x576-5af82788940faeef422ad204aaa241e36e7c9c56.jpg",
+ "playlist_name": "Playlist_Final_20",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg",
+ "playlist_name": "Playlist_Snipers_Squads",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg",
+ "playlist_name": "Playlist_Snipers_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SniperShootout-1024x512-bcaf8004961e4e374d0603813f840f4b575d230b.jpg",
+ "playlist_name": "Playlist_Snipers_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_BlitzShowdown-1024x512-7eccbc505214ac522cc5dde7b3ceaa3a5f99e754.png",
+ "playlist_name": "Playlist_Comp_Blitz_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_5x20-1024x512-451b402db5751c25a1e7616930c5ae37d8b20710.png",
+ "playlist_name": "Playlist_5x20",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png",
+ "playlist_name": "Playlist_Blitz_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png",
+ "playlist_name": "Playlist_Blitz_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_Blitz-1024x512-98c63417095442c210177ee9b5f3463d0003cd5a.png",
+ "playlist_name": "Playlist_Blitz_Squad",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg",
+ "playlist_name": "Playlist_Close_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg",
+ "playlist_name": "Playlist_Close_Squad",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_CloseEncounters-1024x512-e617b7603adb59353ba81ed392174859c0c6807b.jpg",
+ "playlist_name": "Playlist_Close_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlisttiles/BR04_LTM_SoloShowdown-1024x512-0f522b0881adebfe241c6527f03c9140f70b88a7.png",
+ "playlist_name": "Playlist_Comp_Solo",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png",
+ "playlist_name": "Playlist_SolidGold_Solo",
+ "violator": "",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/playlistinformation/BR04_LTM_SolidGold-1024x512-36e202c36d3ef3bd151a97c060401d33ac6f549a.png",
+ "playlist_name": "Playlist_SolidGold_Duos",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/r5Nyhn2.jpg",
+ "playlist_name": "Playlist_50v50",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "",
+ "playlist_name": "Playlist_Carmine",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/zr4Fnnp.jpg",
+ "playlist_name": "Playlist_DefaultSolo",
+ "hidden": false,
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/99n3n0m.jpg",
+ "playlist_name": "Playlist_DefaultDuo",
+ "hidden": true,
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "playlist_name": "Playlist_Trios",
+ "hidden": true,
+ "_type": "FortPlaylistInfo"
+ },
+ {
+ "image": "https://i.imgur.com/YA4ssMv.jpg",
+ "playlist_name": "Playlist_DefaultSquad",
+ "hidden": true,
+ "special_border": "None",
+ "_type": "FortPlaylistInfo"
+ }
+ ]
+ },
+ "_noIndex": false,
+ "_activeDate": "2018-04-25T15:05:39.956Z",
+ "lastModified": "2019-10-29T14:05:17.030Z",
+ "_locale": "en-US"
+ },
+ "tournamentinformation": {
+ "tournament_info": {
+ "tournaments": [
+ {
+ "title_color": "FFFFFF",
+ "loading_screen_image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "background_text_color": "1B1B1B",
+ "background_right_color": "DD091A",
+ "poster_back_image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "_type": "Tournament Display Info",
+ "pin_earned_text": "lawin is the winner!",
+ "tournament_display_id": "s11_switchcup",
+ "highlight_color": "FFFFFF",
+ "schedule_info": "November 2nd & 3rd: 2pm - 5pm JST",
+ "primary_color": "FFFFFF",
+ "flavor_description": "cool",
+ "poster_front_image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "short_format_title": "Event Sessions",
+ "title_line_2": "boomer",
+ "title_line_1": "Solo",
+ "shadow_color": "1B1B1B",
+ "details_description": "ok",
+ "background_left_color": "F81B2D",
+ "long_format_title": "nice",
+ "poster_fade_color": "DD091A",
+ "secondary_color": "1B1B1B",
+ "playlist_tile_image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "base_color": "FFFFFF"
+ }
+ ],
+ "_type": "Tournaments Info"
+ },
+ "_title": "tournamentinformation",
+ "_noIndex": false,
+ "_activeDate": "2018-11-13T22:32:47.734Z",
+ "lastModified": "2019-11-01T17:33:35.346Z",
+ "_locale": "en-US"
+ },
+ "emergencynotice": {
+ "news": {
+ "_type": "Battle Royale News",
+ "messages": [
+ {
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin",
+ "spotlight": true
+ }
+ ]
+ },
+ "_title": "emergencynotice",
+ "_noIndex": false,
+ "alwaysShow": false,
+ "_activeDate": "2018-08-06T19:00:26.217Z",
+ "lastModified": "2019-10-29T22:32:52.686Z",
+ "_locale": "en-US"
+ },
+ "emergencynoticev2": {
+ "jcr:isCheckedOut": true,
+ "_title": "emergencynoticev2",
+ "_noIndex": false,
+ "jcr:baseVersion": "a7ca237317f1e771e921e2-7f15-4485-b2e2-553b809fa363",
+ "emergencynotices": {
+ "_type": "Emergency Notices",
+ "emergencynotices": [
+ {
+ "gamemodes": [],
+ "hidden": false,
+ "_type": "CommonUI Emergency Notice Base",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin"
+ }
+ ]
+ },
+ "_activeDate": "2018-08-06T19:00:26.217Z",
+ "lastModified": "2021-12-01T15:55:56.012Z",
+ "_locale": "en-US"
+ },
+ "koreancafe": {
+ "_title": "KoreanCafe",
+ "cafe_info": {
+ "cafes": [
+ {
+ "korean_cafe": "PCB.Partner.Neowiz",
+ "korean_cafe_description": "ON",
+ "_type": "PCB Info",
+ "korean_cafe_header": "PC CAFE BENEFITS"
+ },
+ {
+ "korean_cafe": "PCB.Partner.Other",
+ "korean_cafe_description": "ON",
+ "_type": "PCB Info",
+ "korean_cafe_header": "PC CAFE BENEFITS"
+ }
+ ],
+ "_type": "PCBs"
+ },
+ "_activeDate": "2018-10-25T18:35:49.659Z",
+ "lastModified": "2018-11-07T06:37:42.201Z",
+ "_locale": "en-US"
+ },
+ "creativeAds": {
+ "ad_info": {
+ "ads": [],
+ "_type": "Creative Ad Info"
+ },
+ "_title": "creative-ads",
+ "_activeDate": "2018-11-09T20:00:42.300Z",
+ "lastModified": "2019-09-25T15:55:44.830Z",
+ "_locale": "en-US"
+ },
+ "playersurvey": {
+ "s": {
+ "s": [
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Not Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how motivated you feel to complete the Chapter 2 - Season 1 Battle Pass",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Not Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how motivated you feel to complete the Missions and Challenges> in Chapter 2 - Season 1",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Not Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Motivated",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how motivated you feel to complete the Medal Punchcard> in Chapter 2 - Season 1",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "sg": [
+ "a"
+ ],
+ "t": "We want your feedback!",
+ "id": "191015BattlePassMotivation",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Low",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very High",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate the value> of the Chapter 2 - Season 1 Battle Pass",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Low",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very High",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate the quality> of the content in the Chapter 2 - Season 1 Battle Pass",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Low",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very High",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate the variety> of the content in the Chapter 2 - Season 1 Battle Pass",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "sg": [
+ "a"
+ ],
+ "t": "We want your feedback!",
+ "id": "191015BattlePassSentiment",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about carrying knocked players> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "sg": [
+ "a"
+ ],
+ "t": "We want your feedback!",
+ "id": "190924_ITEMC_Carrying_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about swimming> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "sg": [
+ "a"
+ ],
+ "t": "We want your feedback!",
+ "id": "190924_ITEMC_Swimming_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about fishing> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "sg": [
+ "a"
+ ],
+ "t": "We want your feedback!",
+ "id": "190924_ITEMC_Fishing_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Slurpy Swamp> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Slurpy Swamp_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Holly Hedges> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Holly Hedges_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Salty Springs> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Salty Springs_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Steamy Stacks> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Steamy Stacks_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Dirty Docks> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Dirty Docks_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Misty Meadows> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Misty Meadows_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Frenzy Farm> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Frenzy Farm_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Pleasant Park> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Pleasant Park_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Retail Row> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Retail Row_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Lazy Lake> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Lazy Lake_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Weeping Woods> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Weeping Woods_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Craggy Cliffs> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Craggy Cliffs_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Sweaty Sands> point of interest in Fortnite Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_POIC_Sweaty Sands_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Hideouts> (Haystacks, Dumpsters, etc) in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_ITEMC_Hideouts_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Fishing Rod> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_ITEMC_Fishing Rod_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Upgrade Bench> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_ITEMC_Upgrade Bench_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Bandage Bazooka> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_ITEMC_Bandage Bazooka_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Motorboat> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190924_ITEMC_Motorboat_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Submachine Gun> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Submachine Gun_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Bolt-Action Sniper Rifle> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Bolt-Action Sniper Rifle_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Pump Shotgun> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Pump Shotgun_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Burst Assault Rifle> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Burst Assault Rifle_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Damage Trap> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Damage Trap_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Small Shield Potion> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Small Shield Potion_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Shield Potion> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Shield Potion_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Medkit> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Medkit_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Grenade> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Grenade_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Bandage> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Bandage_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Tactical Shotgun> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Tactical Shotgun_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Pistol> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Pistol_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Rocket Launcher> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Rocket Launcher_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, how do you feel about the Assault Rifle> in Fortnite: Battle Royale?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190619_ITEMC_Assault Rifle_FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_FirstGame"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your experience in the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190612Game1-HeartbeatNegativePositve-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Creative_Heartbeats_2000_30d"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your experience in the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "pc"
+ ],
+ "id": "190417HeartbeatNegativePositve-FNC",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Creative_Heartbeats_2000_30d"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Mostly Creating",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Mostly Playing",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "How did you spend your time in the last game?",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "pc"
+ ],
+ "id": "190405_TimeSpent_FNC",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Overall, do you feel the addition of the Reboot Van to the game is:",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190405RebootVan-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": true,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_Statless"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Much Too Slow",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Much Too Fast",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate the pace of the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308Pace-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message",
+ "m": ""
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Much Easier",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Much Harder",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Recently do you feel the game is Much Easier (1), the Same (3), or Much Harder (5)",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308OverallDifficulty-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": true,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Building>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Combat>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Moving>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "c"
+ ],
+ "id": "190308Controls-StW",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": true,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_Statless"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Building>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Combat>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the controls for Moving>",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308Controls-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "StW_Probabilities_1000_30dCD"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how you feel about Building in Fortnite Save the World",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the Building controls",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "c"
+ ],
+ "id": "190308Building-StW",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how you feel about Building in Fortnite Battle Royale",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ },
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Difficult",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Easy",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate how difficult or easy it is to use the Building controls",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308Building-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "StW_Probabilities_1000_30dCD"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your experience in the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "c"
+ ],
+ "id": "190308HeartbeatNegativePositve-StW",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "StW_Probabilities_1000_30dCD"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Dissatisfied",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Satisfied",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your satisfaction with the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "c"
+ ],
+ "id": "190308HeartbeatSatisfaction-StW",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Dissatisfied",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Satisfied",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your satisfaction with the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308HeartbeatSatisfaction-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ },
+ {
+ "rt": false,
+ "pr": {
+ "t": "",
+ "_type": "Player Survey - Message"
+ },
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "hidden": false,
+ "e": false,
+ "_type": "Player Survey - Survey",
+ "cm": {
+ "_type": "Player Survey - Message"
+ },
+ "q": [
+ {
+ "mc": {
+ "s": "rating",
+ "c": [
+ {
+ "t": "Very Negative",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ },
+ {
+ "t": "Very Positive",
+ "_type": "Player Survey - Multiple Choice Question Choice"
+ }
+ ],
+ "t": "Please rate your experience in the last game",
+ "_type": "Player Survey - Multiple Choice Question"
+ },
+ "_type": "Player Survey - Question Container"
+ }
+ ],
+ "r": "rm",
+ "t": "We want your feedback!",
+ "sg": [
+ "a"
+ ],
+ "id": "190308HeartbeatNegativePositve-FNBR",
+ "po": {
+ "_type": "Player Survey - Message"
+ }
+ }
+ ],
+ "cg": [
+ {
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Creative_Heartbeats_2000_Platform"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 30,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Creative_Heartbeats_2000_30d"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.015667324,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Android"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.00226297,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "IOS"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000181053,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000979775,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Switch"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000772231,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000375674,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Creative_Heartbeats_2000_Platform"
+ },
+ {
+ "c": [
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 14,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Probabilities_1000_OldPlayers"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_Statless"
+ },
+ {
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "ss": {
+ "s": "bl",
+ "t": 9,
+ "_type": "Player Survey - Condition - BR Season Stat",
+ "o": "e"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "ab": {
+ "t": true,
+ "_type": "Player Survey - Condition - BR Battle Pass Owned"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "BPOwnerHeartbeats"
+ },
+ {
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "_type": "Player Survey - Condition Container",
+ "pi": {
+ "q": {
+ "t": "s",
+ "_type": "Player Survey - Gameplay Tag Query",
+ "n": [
+ "Athena.Location.POI.TheBlock"
+ ]
+ },
+ "_type": "Player Survey - Condition - BR POI"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "BlockVisitHeartbeats"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.06772773450728073,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.11253657438667566,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Switch"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.03493083694285315,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.060595043325455976,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.028816782894357674,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "IOS"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.11500862564692352,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Android"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_FirstGame_1000_Platform"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "as": {
+ "s": "MatchesPlayed",
+ "pt": [
+ "a"
+ ],
+ "t": 1,
+ "ag": "s",
+ "_type": "Player Survey - Condition - BR Match Stat",
+ "i": [
+ "gamepad",
+ "touch",
+ "keyboardmouse"
+ ],
+ "o": "e"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_FirstGame_1000_Platform"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 30,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_FirstGame"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.002751011,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.008374035,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.006566055,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "StW_Probabilities_1000_Platform"
+ },
+ {
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Heartbeats_SplitAt20"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 14,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Heartbeats_30dCD_SplitAt20"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "as": {
+ "s": "MatchesPlayed",
+ "pt": [
+ "a"
+ ],
+ "t": 1,
+ "ag": "s",
+ "_type": "Player Survey - Condition - BR Match Stat",
+ "i": [
+ "gamepad",
+ "touch",
+ "keyboardmouse"
+ ],
+ "o": "ge"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "as": {
+ "s": "MatchesPlayed",
+ "pt": [
+ "a"
+ ],
+ "t": 20,
+ "ag": "s",
+ "_type": "Player Survey - Condition - BR Match Stat",
+ "i": [
+ "gamepad",
+ "touch",
+ "keyboardmouse"
+ ],
+ "o": "l"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Probabilities_1000_NewPlayers"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "as": {
+ "s": "MatchesPlayed",
+ "pt": [
+ "a"
+ ],
+ "t": 20,
+ "ag": "s",
+ "_type": "Player Survey - Condition - BR Match Stat",
+ "i": [
+ "gamepad",
+ "touch",
+ "keyboardmouse"
+ ],
+ "o": "ge"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "FNBR_Probabilities_1000_OldPlayers"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Heartbeats_SplitAt20"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.007833662,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Android"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.001131485,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "IOS"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.0000905266885133352,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000489887477101219,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Switch"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000386115312824342,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000187837,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Probabilities_1000_OldPlayers"
+ },
+ {
+ "c": [
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.002188906,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.002041152,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.002933814,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Switch"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000678885,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.002164533,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "IOS"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.008357813,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Android"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Probabilities_1000_NewPlayers"
+ },
+ {
+ "c": [
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 30,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "_type": "Player Survey - Condition Container",
+ "o": {
+ "c": [
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.007833662,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Android"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.001131485,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "IOS"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.0000905266885133352,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "PS4"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000489887477101219,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Switch"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000386115312824342,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "Windows",
+ "Mac"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ },
+ {
+ "a": {
+ "c": [
+ {
+ "rd": {
+ "p": 0.000187837,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container OA"
+ },
+ {
+ "_type": "Player Survey - Condition Container OA",
+ "pl": {
+ "p": [
+ "XboxOne"
+ ],
+ "_type": "Player Survey - Condition - Platform"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition - And"
+ },
+ "_type": "Player Survey - Condition Container O"
+ }
+ ],
+ "_type": "Player Survey - Condition - Or"
+ }
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "FNBR_Probabilities_1000_30dCD"
+ },
+ {
+ "c": [
+ {
+ "cg": {
+ "_type": "Player Survey - Condition - Condition Group",
+ "id": "StW_Probabilities_1000_Platform"
+ },
+ "_type": "Player Survey - Condition Container"
+ },
+ {
+ "mc": {
+ "s": {
+ "t": "a",
+ "_type": "Player Survey - Metadata Survey ID"
+ },
+ "t": 30,
+ "_type": "Player Survey - Condition - Most Recently Completed",
+ "o": "g"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "StW_Probabilities_1000_30dCD"
+ },
+ {
+ "c": [
+ {
+ "rd": {
+ "p": 0.5,
+ "_type": "Player Survey - Condition - Random"
+ },
+ "_type": "Player Survey - Condition Container"
+ }
+ ],
+ "_type": "Player Survey - Condition Group",
+ "id": "Percent50"
+ }
+ ],
+ "e": true,
+ "_type": "Player Survey - Survey Root"
+ },
+ "_title": "playersurvey",
+ "_noIndex": false,
+ "_activeDate": "2019-10-15T07:50:00.000Z",
+ "lastModified": "2019-10-15T22:00:24.726Z",
+ "_locale": "en-US"
+ },
+ "creativeFeatures": {
+ "ad_info": {
+ "_type": "Creative Ad Info"
+ },
+ "_title": "Creative Features",
+ "_activeDate": "2019-03-27T14:47:20.426Z",
+ "lastModified": "2019-06-20T22:06:24.590Z",
+ "_locale": "en-US"
+ },
+ "specialoffervideo": {
+ "_activeDate": "2021-08-14T23:58:00.000Z",
+ "_locale": "pl",
+ "_noIndex": false,
+ "_title": "specialoffervideo",
+ "bSpecialOfferEnabled": false,
+ "jcr:baseVersion": "a7ca237317f1e78e4627c4-c68f-4a12-9480-066c92dd14e5",
+ "jcr:isCheckedOut": true,
+ "lastModified": "2021-07-12T16:08:40.485Z",
+ "specialoffervideo": {
+ "_type": "SpecialOfferVideoConfig",
+ "bCheckAutoPlay": true,
+ "bStreamingEnabled": true,
+ "videoString": "",
+ "videoUID": ""
+ }
+ },
+ "subgameinfo": {
+ "battleroyale": {
+ "image": "",
+ "color": "1164c1",
+ "_type": "Subgame Info",
+ "description": {
+ "de": "100 Spieler PvP",
+ "ru": "PVP-режим на 100 игроков",
+ "ko": "100인 플레이어 PvP",
+ "en": "100 Player PvP",
+ "it": "PvP a 100 giocatori",
+ "fr": "JcJ à 100 joueurs",
+ "es": "JcJ de 100 jugadores",
+ "ar": "100 لاعب ضد لاعب",
+ "ja": "プレイヤー100人によるPvP",
+ "pl": "PvP dla 100 graczy",
+ "es-419": "JcJ de 100 jugadores",
+ "tr": "100 Oyunculu PVP"
+ },
+ "subgame": "battleroyale",
+ "standardMessageLine2": "",
+ "title": {
+ "de": "Battle Royale",
+ "ru": "Battle Royale",
+ "ko": "Battle Royale",
+ "en": "Battle Royale",
+ "it": "Battaglia reale",
+ "fr": "Battle Royale",
+ "es": "Battle Royale",
+ "ar": "Battle Royale",
+ "ja": "Battle Royale",
+ "pl": "Battle Royale",
+ "es-419": "Batalla campal",
+ "tr": "Battle Royale"
+ },
+ "standardMessageLine1": ""
+ },
+ "savetheworld": {
+ "image": "",
+ "color": "7615E9FF",
+ "specialMessage": "",
+ "_type": "Subgame Info",
+ "description": {
+ "de": "Kooperatives PvE-Abenteuer!",
+ "ru": "Совместное сражение с Бурей!",
+ "ko": "협동 PvE 어드벤처!",
+ "en": "Cooperative PvE Adventure",
+ "it": "Avventura cooperativa PvE!",
+ "fr": "Aventure en JcE coopératif !",
+ "es": "¡Aventura cooperativa JcE!",
+ "ar": "مشروع تعاوني للاعب ضد البيئة!",
+ "ja": "協力プレイが楽しめるPvE!",
+ "pl": "Kooperacyjne zmagania PvE z pustakami!",
+ "es-419": "¡Aventura de JcE cooperativa!",
+ "tr": "Diğer oyuncularla birlikte PvE macerası!"
+ },
+ "subgame": "savetheworld",
+ "title": {
+ "de": "Rette die Welt",
+ "ru": "Сражениес Бурей",
+ "ko": "세이브 더 월드",
+ "en": "Save The World",
+ "it": "Salva il mondo",
+ "fr": "Sauver le monde",
+ "es": "Salvar elmundo",
+ "ar": "Save The World",
+ "ja": "世界を救え",
+ "pl": "Ratowanie Świata",
+ "es-419": "Salva el mundo",
+ "tr": "Dünyayı Kurtar"
+ }
+ },
+ "_title": "SubgameInfo",
+ "_noIndex": false,
+ "creative": {
+ "image": "",
+ "color": "13BDA1FF",
+ "_type": "Subgame Info",
+ "description": {
+ "de": "Deine Inseln. Deine Freunde. Deine Regeln.",
+ "ru": "Ваши острова. Ваши друзья. Ваши правила.",
+ "ko": "나의 섬. 나의 친구. 나의 규칙.",
+ "en": "Your Islands. Your Friends. Your Rules.",
+ "it": "Le tue isole. I tuoi amici. Le tue regole.",
+ "fr": "Vos îles, vos amis, vos règles.",
+ "es": "Tus islas. Tus amigos. Tus reglas.",
+ "ar": "جزرك. أصدقاؤك. قواعدك.",
+ "ja": "自分の島。自分のフレンド。自分のルール。",
+ "pl": "Twoje wyspa, twoi znajomi, twoje zasady.",
+ "es-419": "Tus islas. Tus amigos. Tus reglas.",
+ "tr": "Senin Adaların. Senin Dostların. Senin Kuralların."
+ },
+ "subgame": "creative",
+ "title": {
+ "de": "Kreativmodus",
+ "ru": "Творческийрежим",
+ "ko": "포크리",
+ "en": "Creative",
+ "it": "Modalità creativa",
+ "fr": "Mode Créatif",
+ "es": "Modo Creativo",
+ "ar": "Creative",
+ "ja": "クリエイティブ",
+ "pl": "Tryb kreatywny",
+ "es-419": "Modo Creativo",
+ "tr": "Kreatif"
+ },
+ "standardMessageLine1": ""
+ },
+ "_activeDate": "2019-05-02T16:48:47.429Z",
+ "lastModified": "2019-10-29T12:44:06.577Z",
+ "_locale": "en-US"
+ },
+ "lobby": {
+ "backgroundimage": "https://cdn.discordapp.com/attachments/927739901540188200/930883349831118878/Fortnite_fortnite-game_lobby_T_Lobby_SeasonX-2048x1024-24e02780ed533da8001016f4e6fb14dd15e2f860.png",
+ "stage": "seasonx",
+ "_title": "lobby",
+ "_activeDate": "2019-05-31T21:24:39.892Z",
+ "lastModified": "2019-07-31T21:24:17.119Z",
+ "_locale": "en-US"
+ },
+ "battleroyalenews": {
+ "news": {
+ "platform_messages": [
+ {
+ "hidden": false,
+ "_type": "CommonUI Simple Message Platform",
+ "message": {
+ "image": "https://cdn2.unrealengine.com/Fortnite/fortnite-game/battleroyalenews/v11/v1101/11BR_EpicGamesAndroidLauncherAssets_MOTD-1024x512-18dd3ddb2b4297abde65e0d898244181f4581326.jpg",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "subgame": "br",
+ "title": "Epic Games app",
+ "body": "The Fortnite Installer on Android is now the Epic Games app!\nUse it to download Fortnite on Android and check out all that's new in #FortniteChapter2",
+ "spotlight": false
+ },
+ "platform": "android"
+ }
+ ],
+ "_type": "Battle Royale News",
+ "messages": [
+ {
+ "image": "https://cdn.discordapp.com/attachments/1252374830225948672/1263993256136675378/IMG_1736.png?ex=669c40f4&is=669aef74&hm=5ded3e4588c05a56f271e0a07f7631317a3ebd72eae7497c4de5ee712a4db6dd&",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "adspace": "Reload Backend",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin",
+ "spotlight": false
+ }
+ ]
+ },
+ "_title": "battleroyalenews",
+ "header": "",
+ "style": "SpecialEvent",
+ "_noIndex": false,
+ "alwaysShow": false,
+ "_activeDate": "2018-08-17T16:00:00.000Z",
+ "lastModified": "2019-10-31T20:29:39.334Z",
+ "_locale": "en-US"
+ },
+ "dynamicbackgrounds": {
+ "backgrounds": {
+ "backgrounds": [
+ {
+ "stage": "fortnitemares",
+ "_type": "DynamicBackground",
+ "key": "lobby"
+ },
+ {
+ "stage": "fortnitemares",
+ "_type": "DynamicBackground",
+ "key": "vault"
+ }
+ ],
+ "_type": "DynamicBackgroundList"
+ },
+ "_title": "dynamicbackgrounds",
+ "_noIndex": false,
+ "_activeDate": "2019-08-21T15:59:59.342Z",
+ "lastModified": "2019-10-29T13:07:27.936Z",
+ "_locale": "en-US"
+ },
+ "creativenews": {
+ "news": {
+ "_type": "Battle Royale News",
+ "messages": [
+ {
+ "image": "https://cdn.discordapp.com/attachments/927739901540188200/930882355818823720/1_of9OCSRWoAoS3_lNVKqM2g.png",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "adspace": "DISCORD!",
+ "title": "Join my discord server!",
+ "body": "https://discord.gg/KJ8UaHZ",
+ "spotlight": false
+ },
+ {
+ "image": "https://cdn.discordapp.com/attachments/927739901540188200/930882658546876506/lawin.jpg",
+ "hidden": false,
+ "_type": "CommonUI Simple Message Base",
+ "adspace": "ENJOY!",
+ "title": "Reload Backend",
+ "body": "Created by Burlone, This is a modded backend, all main backend credits to lawin!",
+ "spotlight": false
+ }
+ ]
+ },
+ "_title": "Creativenews",
+ "header": "",
+ "style": "None",
+ "_noIndex": false,
+ "alwaysShow": false,
+ "_activeDate": "2018-08-17T16:00:00.000Z",
+ "lastModified": "2019-10-31T20:35:52.569Z",
+ "_locale": "en-US"
+ },
+ "_suggestedPrefetch": []
+}
\ No newline at end of file
diff --git a/responses/keychain.json b/responses/keychain.json
new file mode 100644
index 0000000..dc558ce
--- /dev/null
+++ b/responses/keychain.json
@@ -0,0 +1,1399 @@
+[
+ "46159C748694298198A52DC07476FDA3:4CLHOBqSrmS1RkG/SxZYi8Rc0zCmAKxXIBMMUHDl2ag=",
+ "8DA867A3B1F0E3A0985B0AB812C3582A:vS8S10ETj2TxdtD57p/iNINbMj4mfumCT6q3eV/jhdU=",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:BID_737_Alchemy_1WW0D",
+ "024641850664615E97BE1533A4F3365E:Ut4/ICU0gseFN8MGgYyUTmWidRtj9yeo/NNBp4y/7hs=",
+ "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:Backpack_Sahara",
+ "688022C4193EA6D9DF1EDC7F6CF826DA:lOR338TzQ75G7R81RCKTdjYmYCjhSKJIB+ScPYanNow=",
+ "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:Glider_ID_140_ShatterFly",
+ "1F5D9EEE331B5E84D6A7AEFF4E80768E:2X6Gzwp+PQOeejP7HwJp98aO9pTVDnX/t5pe5Wa4WyE=",
+ "5776BD1A9BFC4EEEB7DD1FCA71B9C39C:jkYOI3VSLqXBCMYyxpfl/soGCBdplmqs8C2AOg1pcGU=",
+ "7C04002177805455CCA13E61F418D117:cacqp05gISCHgiULNDksrFNlUbhz6NxeW7pEr+xp2FQ=",
+ "8F6ACF5D43BC4BC272D72EBC072BDB4F:rsT5K8O82gjB/BWAR7zl6cBstk0xxiu/E0AK/RQNUjE=:CID_246_Athena_Commando_F_Grave",
+ "4A8216304A1A18CB9583BC8CFF99EE26:QF3nHCFt1vhELoU4q1VKTmpxnk20c2iAiBEBzlbzQAY=:CID_184_Athena_Commando_M_DurrburgerWorker",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_949_Athena_Commando_M_Football20Referee_C_SMMEY",
+ "F2A5D91602A7C130FA1FB30A050E98A2:MrhEh24cVikkhJJUX/LBAaNtgYV20VBiR5oaMDJ2nA8=:BID_946_Galactic_S1CVQ",
+ "D02365ADD1205D3E408F2C1EDF520907:5i+l9/nrhlI0lPse1r/qCqq2T4L4fq/K/a+p7D9PFiE=:EID_Camouflage",
+ "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_508_DonutDish",
+ "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:BID_A_003_Ultralight",
+ "D85DFC0115FC3C75A6AD9C5D15B0DBF4:KFp5kuqdJIex+SS95mCy4nETnpzlaY8UHe8X7BSjGxY=:Wrap_080_Blackout1",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:EID_BasketballDribble_E6OJV",
+ "DB982042FC23E63A912CF079BB11B4D7:XxSdF8FvU6TPmMg2ZFLcxPXFyom3s5IcDpSFz8rcdfQ=:EID_Devotion",
+ "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage",
+ "3AD37E40514304F7789E17FEBF4E4C68:4wGt9TLz7/cukkDMtB7Y8HZvi0fXNDMLsdCs6k98OM8=:EID_FastCheetah",
+ "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:Pickaxe_ID_178_SpeedyMidnight",
+ "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:EID_Noble",
+ "A92DE306E5174C82739D774151D7B661:RF9sTh7l2tp+ypCb/Lp3WeMfBExvk2LSUbim04xsCJo=",
+ "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Pickaxe_WinterHunterFNCS",
+ "8335E3DF8B0DFBCB0C05EFB5FF1B8A81:shx/UPd2PJpGZtpddRmoS7RosbEO0MlsaNb+9aaQR9g=:Pickaxe_ID_204_Miner",
+ "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:CID_478_Athena_Commando_F_WorldCup",
+ "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=:MusicPack_178_S24FNCSDrops",
+ "8A6DABC9AF8B5FE521D365DB605D0AE0:T721SqBTncYsd8Gej01RnLX6sEaCgJoILnRauHaJz+g=:BID_284_NeonLines",
+ "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=",
+ "B9E8BA33F3FF6F9DB4CA35F51437B433:6gLG1UQHcMeCErfTl6ZNA78CzF2boBxzxfF1GPqnPSE=:EID_Iconic",
+ "73997D156EB0408D62DFD6C98F37F153:sCkek0K/q2DJt8RTMG09RpU0wnr+JWtslnn8Zds4qEM=",
+ "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:Wrap_508_ApexWild",
+ "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:EID_TeamRobot",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:LSID_325_RiftTourMKTG1_18M49",
+ "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:LSID_479_Astral",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassGreen",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:BID_945_SleekGlasses_GKUD9",
+ "5A33986E8C23E664BD8A70D41697A93F:nFqFG2z7mnQhf4Q3iR6zQ2eWykiuwy0af+ga9QWnU6o=",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Pickaxe_ID_788_LyricalMale",
+ "0FA46244428655D55790A980B59745AD:fEzJj2anX6D4HyOhaXyNar9oFa+L2/ob/RIXLnxWc7Y=:CID_328_Athena_Commando_F_Tennis",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:MusicPack_030_BlackMonday_X91ZH",
+ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:EID_KeplerFemale_C98JD",
+ "F73156B85666DAE88D9359504D1F7C85:bOvve/ewsWhDoK6S3QIpVI7QwUel31Vv5aS4tvdUVaY=",
+ "6DD6F574BA76BD6B68E14FF19181F2B6:Z/OnCtvolWJSaChHeIIVFXB8fptk8QBW8JQD1Gk2w+Y=:EID_Shaka",
+ "D47524F6F863DCCBB2455472F0FEFE2C:cRoiHZin2Lnv6yQ4Zt2WoIpQc1ZjLbfl1Ogid24ydZM=:CID_A_416_Athena_Commando_M_Armadillo",
+ "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:CID_392_Athena_Commando_F_BountyBunny",
+ "18657B021FD5011618877BD5D709EB51:6tLEm1BTY8+Go2kUChsjNEQkZJcsN31oLw3AorwxptQ=:Pickaxe_SlowBurn",
+ "AEE3BAAED938060FA62CF46437980785:AB2FJfGGyKH35KJnl2p6t/85sZYO5gSgbS+ilBA2mX4=:EID_HeavyRoarDance",
+ "6CED8B5F648ED1ACCC8F1194901775AF:qjfCT39FVniEjPj+CvZu5Qz8XHHtdnH8kCsV3P1OaJw=:BID_252_EvilBunny",
+ "6CFF02B6F01FBC306D428E8EE2CA6232:1BaXCMF6dJeORZditLbWRLFKVlvYZerZdvifZuvNTfk=",
+ "20366C09DB19030DD8169A4D7560FCC1:Bt750bLY8a84ai95EQ3JWESQj5jz5Bf5LItpADksD5o=",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisGooseberry",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Wrap_Comp26",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:BID_988_Rumble",
+ "80B01346D82C75E9165D30C8D4670D67:vUSIr4/Ld2SstnhJMcWOWEbtPeQ0EOY5g1XV9OWFBW0=",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:Pickaxe_ID_734_SlitherMale_762K0",
+ "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:EID_AshtonBoardwalk",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_081_Athena_Commando_M_Hardwood_B_JRP29",
+ "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:BID_744_CavernMale_CF6JE",
+ "25E4BA752FB1328DA3E5EDB5FFAA47C3:Mrh9sFIpmcD6xhM2zQjHjqzV5QuJBXS29x0fS5IFcFk=:BID_789_CavernArmored",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo4_PXPE0",
+ "C779C5126616BE8EA5FF851D2FF1FF34:uK97yLbZmBvrWhlMlQmYfVWq2l4mRy/CEm5H/zczFDI=",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:EID_Sleek_S20CU",
+ "7313591AB9F0A7E46AB016065DE8F65A:NAL0bLW1p+ceLF4lhxfm1vQPaMlv8eNPP6tTizTZEN0=:CID_398_Athena_Commando_M_TreasureHunterFashion",
+ "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Glider_ID_357_JourneyFemale",
+ "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Backpack_BrainMatter",
+ "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:BID_180_IceMaiden",
+ "6BE73A630C01192C39807CEDA006C77C:3MYDxjacnNgSQwxc68DknO3e6TKXSw4tG5TVdSxGdFE=:Pickaxe_ID_327_GalileoKayak_50NFG",
+ "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=",
+ "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Pickaxe_IonVial",
+ "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_542_TyphoonFemale1H_CTEVQ",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:Glider_ID_153_Banner",
+ "E242355FF51310B9E4D8C595E9933F91:vLuGAIIz3ZtzLhJV0Qqka3VuhSZ7nB/URRMCoSRKrbM=",
+ "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:Pickaxe_ID_589_CavernMale_9U0A8",
+ "001B8CDAE8386ACB5DFE26FA59C10B40:XA9kqeHyWLK/xsRzYLCkooN/dBRNTyjy5sw9Jv+8nRs=",
+ "8AE56A5795250C959CD4357AF32DA563:GL9+gTLkh5vnyzImLDdxGYFksrHsmmJSUfZB9mP9fdM=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Wrap_Pencil",
+ "1F8BD07EA3FA0CE93BFD036C920C9ED7:DNcMmwEsO2+A+UA3HgNtZ9wPqXVYlaUrnoRVFd9meIE=:EID_Destiny",
+ "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:Pickaxe_ID_800_UltralightFemale",
+ "C624A3D18A8A2494288EE915D11518B7:/q+bDo9akBx2JId6QvLQW1YoN4jBEEn+QdzBXjB3OpQ=",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:BID_937_KeenMale_YT098",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_395_TextileBlack_DBVU2",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_953_Gimmick_1I059",
+ "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:EID_InspireSpell",
+ "4C8D53A32D85124D08A3DCE6D3474A30:gam5sVciLPzKr+wmWOoctLo5HFqBvBLKKcxh6ZV1kn0=:Pickaxe_ID_532_WombatFemale_CWE2D",
+ "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Pickaxe_FolkEvening",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=",
+ "AC22C5B2B654FE15BDCC8B664D033140:zE2ddgoXrJ7X0UEkphUtys0CeoTzIDpAZ58beqOkx4M=:CID_A_232_Athena_Commando_F_CritterStreak_YILHR",
+ "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_747_ZestMale_3KAEG",
+ "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:Glider_ID_131_SpeedyMidnight",
+ "BDB9B53603F92D55B57E8DB38FCEB570:gPrhs5YAEFh9OzYY0tSw8MPRFr/aS0cdRLp41tjsU3Y=:EID_Goodbye",
+ "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=",
+ "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=",
+ "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:Pickaxe_ID_382_Donut1H",
+ "C2216794035D5FC95DCC07FA72E1EC86:4CS9WyhB+tpbl/w4bd+9cnjWZTf0NCO8zl1/6TmIQeM=:EID_HNYGoodRiddance",
+ "C0AD693BD109852AFC71C988E5C3589A:oTfNfTILozJvyHrE98zPpUgw4m7MTS9na29b0CswpNc=",
+ "8AB2A1D47937F30D49879F4043164045:Mwur5341qGGuZkJb6aGqo7oPYGS5RIaLu3lgf5n6eRg=",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:EID_FootballTD_U2HZI",
+ "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:Glider_ID_142_AshtonSaltLake",
+ "0C2DFF3432352A23684E05B0794DFFC7:FG55cmgdBnszsr5pS0aBC44NVl7OyI+AuOXxALyaNKA=",
+ "2D24182706636A7BD3E96AD37605BAD6:jEZJE+EAU7VDo6p6Y84e4+p3AHxYBWin144H4MhzaSQ=:Pickaxe_ID_427_Seaweed1H_CZ9HA",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_060_WayfareMale",
+ "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:EID_Tar_S9YVE",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_299_Athena_Commando_M_Slither_B_1X28D",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClassSecond_E",
+ "2FE8DBD09F14AAF7D195AA73B9613792:KwIehLEKaCSJb5X/WcQ9IULKkz3G3M9f9Z5Jgi9hYUU=:Pickaxe_ID_297_FlowerSkeletonFemale1H",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClassSecond_D",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClassSecond_C",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClassSecond_B",
+ "8B9DC1A32A4081596F0AE60926CF6846:4O/n/4TAJpnQ3BvcadiKLHRNSmZQQbr+15RSrDHnrQ4=",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Pickaxe_ID_554_SkirmishMale_ML78Q",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_353_Athena_Commando_F_TreyCozy_E_JRL60",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:EID_Grasshopper_8D51K",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:EID_Spiral",
+ "8FA260F3D15A59A4DC39757B8F982367:PEuC6Ghrm1DcKuMp2b4jCeRDWU6NV0uoo0squwgIJ0k=:EID_Delirious",
+ "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:BID_954_Rover_0FV73",
+ "ED088B11311A599D6225CE85545F019A:1NMRh4JMXRL9XW8Kb6zo4/F10dwLJC1+kPm6D6DudCE=:Pickaxe_ID_653_LavishMale1H_SWKJB",
+ "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:Glider_ID_206_Donut",
+ "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:LSID_428_Lyrical",
+ "163D68B009421CA82956BDD63659F7C0:SAE6Yruow/8IPkoOuzYEnjJFyvBuwLNI11z9/5EfyL0=:EID_TwistWasp_T2I4J",
+ "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:BID_A_067_AstralFemale",
+ "74AF07F9A2908BB2C32C9B07BC998560:V0Oqo/JGdPq3K1fX3JQRzwjCQMK7bV4QoyqQQFsIf0k=:BID_302_Hairy",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:BID_361_BlackMondayFemale_R0P2N",
+ "5869B4D27CF6766E4047DB0636CB6D72:bFnq5n5S+PRZZFp/dGhAmy63liDVz7wufMqMm65B0FE=",
+ "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:EID_LogarithmWhoa_T3PF9",
+ "D8FDE5644FE474C7C3D476AA18426FEB:orzs/Wp9XxE5vpybtd0tOxX6hrMyZZheFZusAw1c+6A=:BID_126_DarkBomber",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_635_York_Male",
+ "E36F7DC3B2ECE987FC956C3CF7E71F21:+Y1iPDRR7adeEjebuo6DzBiHkgK0c4ZOwgmrnYYx43w=",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_BraveBuild",
+ "28CBBF705C9DB5A88BEC70DAA005E02E:FvtzBBvDkyj8PRLW76169bMFvg65VojYrSmkjUAi4Bc=:Pickaxe_ID_259_CupidFemale1H",
+ "210726DF9DCD78AD95B4D407D5D9157B:cXzvTrgNBBmsa8jR8E4q9NFBasv/zdQSSPQmnKznkJE=:EID_SecurityGuard",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_236_Athena_Commando_M_Grasshopper_C_47TZ8",
+ "87F01091E4DA4FE3FFC9AD92A20A8DCE:p+5QvlQEV5QW2QQrIWrDnnthhNN9V0wXK+Zdmiw71u0=",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_001_Athena_Commando_F_GlobalFB_HDL2W",
+ "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:BID_877_BistroAstronaut_LWL45",
+ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:BID_704_KeplerFemale_C0L25",
+ "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:BID_928_OrbitTeal_R54N6",
+ "7DA161D7F5AB6AF6582AE0A40C803E35:LSL2m9TCTyHRII5NJx3KmYr/Zfohz2nWUbRUKPqAkOU=",
+ "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:BID_229_LuckyRiderMale",
+ "80FC6D214CD513415CB0A54044683293:fXY1Xojrg1HpH6ZF0xNrhF9XZKS15GmaBidF9kSAbME=",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:BID_289_Banner",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_996_Athena_Commando_M_GlobalFB_B_RVED4",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Backpack_InstantGravel",
+ "EBA3BC7F0023BE91CE5EFB7E1BC001A8:MdKbawNIe4qCuGaB4q7+4cy8keyDnJnxZLa7HLC0W4A=:EID_Feral",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Character_RelayStickBounty",
+ "C5188047D9661347FC4483CCB04ACD4C:TlesZ5LgoEoJqkJaz7N2QB43zNWIJdOpx8rOpsbGC48=",
+ "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Pickaxe_ID_668_ClashVMale1H_5TA18",
+ "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Glider_ID_317_VertigoMale_E3F81",
+ "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Pickaxe_ID_230_Drift1H",
+ "9078B5331B187C32C649D4B1E5530EEC:l1U0jw2fdShRIHGNl1NYmG8YDAJEUSIfhI46nJgSt30=",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_911_Athena_Commando_F_York_B",
+ "1655272875DB718493BB6B09032657D7:xQLpNTDeYJCcQOUQS2ICyfByvhPU3nC5cfJRbPSugdY=:EID_Survivorsault_NJ7WC",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:EID_RelayStick_Plume",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Pickaxe_ID_675_TextilePupMale_96JZF",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Pear",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_691_RelishMale_FVCA7",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:LoadingScreen_Sunburst_KeyArt",
+ "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:Glider_ID_109_StreetGoth",
+ "9E7468047D1781BCB546D5AE215B5073:EYWQj4jWQQnEZ6i1eKfW47bvGqK0ZNt7KFzQO1P6FU8=:Sparks_Drum_TimeSquare",
+ "ECC8CCC7C241C9B739143FE703D69DDA:AvNIyTB6kImt6X7YtGzzIBC3mPIZNXcMn8B9U2B/dx0=:EID_Hoist",
+ "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_387_DonutCup",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:LSID_294_Alchemy_09U3R",
+ "2E03F4DA95202509D578A5960D35A8A3:UrLxBerp5zeoMJHaXjYqAevNSNP2Jce8sG2zqnvO+NQ=:EID_OilPaint",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:Pickaxe_ID_690_RelishFemale_DC74M",
+ "7F0F5EB44D49E7563DD5A196121D49E1:CBIvm8gTJLCz6sD05GKbQo6u/Nk4Poni/7wlp724KWc=:BID_146_AnimalJacketsFemale",
+ "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:Glider_ID_327_NucleusMale_55HFK",
+ "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:BID_665_Jupiter_XD7AK",
+ "B76B4F80113A2C0EBD320FC79DE5F441:Kyys3PlFyTng4GWryKbiN1BQ2eIaJK7dI/ZMNn5LRYE=:EID_Interstellar",
+ "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:Pickaxe_ID_183_BaseballBat2018",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClass_B",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_003_Athena_Commando_F_GlobalFB_C_J4H5J",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClass_C",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClass_D",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClass_E",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:Pickaxe_ID_696_Grasshopper_Male_24OGH",
+ "56FE93367C8B62ADE2A8A1653077C98B:OevQYyBvnT5vwQhOJhu74k5TNwE6pe4gu6okYYBepGc=:BID_989_CroissantMale",
+ "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:Pickaxe_ID_508_HistorianMale_6BQSW",
+ "738C0E8B5DAB633906DC77FE4C4E48F9:qr1ZfbWRp+uqwBMvEhY1XBj7Sr7SxRsWHN7jqYPaZfU=",
+ "A92DE306E5174C82739D774151D7B661:RF9sTh7l2tp+ypCb/Lp3WeMfBExvk2LSUbim04xsCJo=:LSID_374_GuavaKey_IY0H9",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassStandAlone",
+ "1BEED2926C38652D7287878CB2724D6D:njsOPcs6lEFCruh/YjfHTdcoUJRtIh2hnzHwdkAYQFA=:EID_Viral",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:EID_Wayfare",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=",
+ "3E89561331A72D226FBF962DA29DBB82:qzWv2zubDSSrpTt3tKc4ZsReqR3QBKjhU1cGzVe7KH4=:CID_387_Athena_Commando_F_Golf",
+ "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_300_Athena_Commando_M_Slither_C_IJ94B",
+ "C73DB27E321E8B5D3747E2209CED62F2:sL+26G+2SaePYEPgaTi+UwMkAr9RfmVl3QK3fsLfd30=:Pickaxe_CraftGlue",
+ "78FA1DF9C04F25EC129AA57492626563:AZT1/Asa4CuxdTtvLrw9nlEcxfOuoTnLbSLztfs7QQ4=",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:BID_653_Football20_1BS75",
+ "276E65E4041C467319534B14EAEA338A:Ib7KJMP8Q9if+P6x2bYZ0dC538B4LL3J1TcIy3rBlHk=",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_242_Athena_Commando_F_Grasshopper_D_EIQ7X",
+ "96FD474CBA52137DC5ABF658BE17C792:ZLWvbUR7Xow1GUNjC9Mxg7DHVoJAnBr4b9gSzmyFcxU=:BID_862_BigBucksBattleship_1JA5G",
+ "BB26302A83A2B42228EF6A731E598360:q6GH+OJutjEXL5wKuJnbLKAan9V/AXRxIkqg6WgSzUU=:Wrap_084_4thofJuly",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Mango",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Glider_ID_349_GimmickMale_MC92O",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_239_Athena_Commando_F_Grasshopper_H6LB7",
+ "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=",
+ "7F0F5EB44D49E7563DD5A196121D49E1:CBIvm8gTJLCz6sD05GKbQo6u/Nk4Poni/7wlp724KWc=:CID_265_Athena_Commando_F_AnimalJackets",
+ "0A43BFE2D06B46248FC6598C0371D5EC:+U/nWLs0mNQue0yVc9tTaRF+2qrvzdKZyxUR+MzTvMc=:Glider_ID_347_PeachMale",
+ "545BD59335CA43AC4481A621226B4E81:4lYAxO0wSzKarpiMl4b+bWQOjDkXdJKactoCetH65WY=",
+ "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=",
+ "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:BID_176_NautilusMale",
+ "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:Glider_ID_257_Historian_VS0BJ",
+ "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:BID_837_Dragonfruit_0IZM3",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_942_Athena_Commando_F_Football20_YQUPK",
+ "32F8552040D83320E998654666873931:izPPgPIvrxfBXPaI/LJzO5lxOZtzjOXQJBuk9kPdKe0=:BID_338_StarWalker",
+ "7F863227B67DD0D99A7A4BBEE0682666:29bfvaQcZUswF3vrHMntLKfmknWKDf65FCbxbJghisg=",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassPink",
+ "57D2C065461284F546C48C971A44C6D0:EOfb/g0hZdMhd5biYOZR69B/mqPU7X+sgQQrp2gQ/s0=:BID_178_Angel",
+ "AC86B4636DC6A3B6D2DF6DA8B5632796:VHknYzsodjamhC3oVkulL7sMpsRkw9ZcCcSguv9bZSM=",
+ "E4873B9E0B86905E8654D93E9279743E:4xhNKoSupk5mLXYkktaWYWM3NIl1s1iSdmfVIwy9Me0=",
+ "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:BID_979_CactusRockerFemale_IF1QA",
+ "514364A06F8C12C3398C5F63D909EF7D:D8/bj3etFg8eJOVZ26L+pMrsdlTusbgvR2CL4WqKl3E=",
+ "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Glider_ID_367_AlfredoMale",
+ "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:BID_A_064_ApexWild_RedMale",
+ "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Character_DualParadox",
+ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:Pickaxe_ID_735_FoeMale_2T3KB",
+ "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:EID_Alfredo",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_306_Athena_Commando_F_Slither_D_I6D2O",
+ "769BE2DF780774E9A97E451EFB71A763:yJu5g5LuK4O/vlTfqxzKhMNFtPNu8AfHz7/KzEOIHXY=",
+ "A9AFB4A346420DB1399A2FB2065528F5:Zjzo+CaLNmCygplzQo2wUL4LT33DEiL6qZWE2R0EYMg=",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_720_RustyBoltMale_UZ5E5",
+ "3F21B0363A2CF6D94F7D789118D73595:Eq7VViwD0CoHAE0Y2grOZ/FZ5xGPjC8g78EpaH0385w=",
+ "1AABA3FE6C5410551302A08A3787F5AA:o7Dsys2BQuUgASRBM63wL29ULpkCEp5Q5JNgzvoKl1w=",
+ "919FDAB2FDB531820404333B27DC7B06:W9Csp0y6agsgcQXlRGvYUpPGPImNdFfBsZ8yQoUEdGg=:BID_296_Sarong",
+ "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:BID_283_StormSoldier",
+ "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:BID_299_BriteBomberSummer",
+ "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Wrap_ShinyStar",
+ "2FF619685EC983B800018ECBFF377ABB:Dn5ZlXEhBAhXP0RbkDskEQwOK4RUKTwAIls6cvVOr0g=:EID_SpeedRun",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_303_Athena_Commando_F_Slither_D0YX9",
+ "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:LSID_432_SCRN_Ultralight",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_446_Athena_Commando_M_BannerA",
+ "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Pickaxe_ID_777_CactusRockerFemale",
+ "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:CID_421_Athena_Commando_M_MaskedWarrior",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Backpack_RedOasis",
+ "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:EID_BasilStrong",
+ "3E89561331A72D226FBF962DA29DBB82:qzWv2zubDSSrpTt3tKc4ZsReqR3QBKjhU1cGzVe7KH4=:Pickaxe_ID_190_GolfClub",
+ "726DD9BDA97CE92DFF162668027518BE:/QdzaWcoVhInSz0Oa0qk+NV3XxRt9WlXwcAu766Y6aY=",
+ "AF3080C00CB8CB301C167B00E9671CD4:wLmQDoGeYBN8Og/IMDoGxuuQNy7M+RQkKtajSZiOebE=:BID_710_SmallFry_GDE1J",
+ "AF3080C00CB8CB301C167B00E9671CD4:wLmQDoGeYBN8Og/IMDoGxuuQNy7M+RQkKtajSZiOebE=:Pickaxe_ID_558_SmallFryMale_YBD34",
+ "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:Glider_ID_238_Soy_RWO5D",
+ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:Glider_ID_276_Kepler_BEUUP",
+ "C811FB0357FAC2A923E8DE46507A2D92:IjM7BWHvhr+4YcndrbmbTh96802H/CWrs364yB1Mg7w=",
+ "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:BID_745_BuffCatComic_AB1AX",
+ "0242DBD83576CC7E4A6F228D02216147:Yfycn3jciR/FCYQx42W2GMzMp3pA3rgbL6WnVmJStxQ=:EID_Tonal_51QI9",
+ "B0894F58B3D7DEA37D3432AB32B78EB4:gKD8R847p9z0mbZ/euClocy1Z9Gg1daZjk/gDqc34a4=:BID_950_Solstice_APTB0",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Wrap_466_CactusDancer_A",
+ "F1149C7FD94E0FDD1D3F42659E99D52D:mO7GpfM8ZBOjTIwAjtvwDL2s7yhIi0lK9ICP4B03elI=:EID_Metronome",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Apple",
+ "9E7468047D1781BCB546D5AE215B5073:EYWQj4jWQQnEZ6i1eKfW47bvGqK0ZNt7KFzQO1P6FU8=:Sparks_Guitar_TimeSquare",
+ "DFE6C0504C061EEF0E77A43EE3B613E6:ympNAeN/2VbM7CJbFyVv2stK9oBU4htW//P5CMAMIu8=",
+ "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:BID_A_002_IndigoMale",
+ "C97E930BC95DC795F4416A7B93E3B9CC:KxRPbXqD3ytwLLbZMbZmn+G+gjwOUljg/7HPjj8xP0o=",
+ "713D64294CD1C40F60DEEB805E3A2D87:CJOOHtEX7q4CELcZ96oZjrmSZd7pyJ2fMaFX912GDl8=:BID_193_TeriyakiFishMale",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_085_Athena_Commando_F_Hardwood_K7ZZ1",
+ "599668A98461E4D89196E0189C32C4D2:8MqQjC52vWK/VwX4SfYC1wu9eiUTXdqq/xWODcW9dQ4=:CID_468_Athena_Commando_F_TennisWhite",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_088_Athena_Commando_F_Hardwood_D_WPHX2",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Wrap_SunBurst",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Backbling_Schedule",
+ "F533FEDB46B06F324383349BDBC825D1:Z7b6780R78xFbYRbQehW/VZVDftI02RqvKe7XIYiOBc=:BID_184_SnowFairyFemale",
+ "B66EED5CA4F4ED75170872E30B9B0E23:rHT8/uzcZZ0ENxU9dxKpr+cdAajZ5L5U0geHt6NoZhI=:Pickaxe_ID_420_CandyAppleSour_JXBZA",
+ "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:BID_A_034_ChiselMale",
+ "5B26536B2ACB973C651C0D1A285C0E37:n4j7xWZ1HfwSGb9ixE7YMFyRsTjl3gjJVDZJj7Wy4rs=:CID_397_Athena_Commando_F_TreasureHunterFashion",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_083_Athena_Commando_M_Hardwood_D_7S0PN",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_084_Athena_Commando_M_Hardwood_E_II9YS",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:BID_A_031_EnsembleFemale",
+ "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:Glider_ID_151_StormSoldier",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:EID_Textile_3O8QG",
+ "95EE98AB79EAA4E2871EFA0E4BA9CD7E:LJCJ2kW7AQoni1spB+sLcir3NXBEE7zOC0JGKKhn0ZY=:EID_Butter_1R26Q",
+ "B0ACC6254D42350D124727B035C9CE55:ZDFVEa7yau61hc1ba5xNGtYdZ+yif7XgE79BBWIlPJ0=:CID_299_Athena_Commando_M_SnowNinja",
+ "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:LSID_287_BuffCatComic_JBE9O",
+ "F71D60AE5231E90CEA7F53D90DC4F007:ver8B06IS0up7tNYy03zkhCl+CrTl3czgmXPYYONcM8=",
+ "9286B7920158C7D54CF5E6E01EA9266F:NMUdgZEcMNkbtpUJVfIHo8YgwMSNqIqbYFrNyK87Glk=:EID_Ordinary",
+ "7852B2522C39A15D1933661727D2D795:T4Nv2SmLOJrEymfXuD4o2cirnHSImxd/7y3u/q9S8ho=",
+ "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:Pickaxe_ID_252_MascotMilitiaTomato",
+ "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=",
+ "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:BID_689_TyphoonRobot_SMLZ7",
+ "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:Pickaxe_ID_131_Nautilus",
+ "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=:EID_Haste1_T98Z9",
+ "32F8552040D83320E998654666873931:izPPgPIvrxfBXPaI/LJzO5lxOZtzjOXQJBuk9kPdKe0=:Pickaxe_ID_253_StarWalker",
+ "5581F333809DD14FA591F17B6C071687:/gEEJhUVQMVyFP7JR0jT4RM99Wj7hnIp2ZitAVdwAYc=",
+ "45261C72DCA170BBF0BDB129B9FC0BAF:5db2NWibvzXoFGVIbg//HklLwxuGUFWO7tKGPStOM2U=:EID_SecretSplit_7FOGY",
+ "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:LSID_421_SCRN_JourneyMentor",
+ "A7FAF0883F9147F93079F3A40413A83C:+wNde9ex5o3zvdjqgJUGhqcxmecYiQW3W1QuO00NUbc=",
+ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=",
+ "E4C183B0EF31ADF061F175068046568E:AF+fNwseLnjCsPKzbFkYDkZE4gyYfGEaifyJjdsMjp0=",
+ "276D93712D1C6092C442D170B8956002:1TvCuSDu3VMY50mtOZcxQbN5AuHOE9v+omoAz4p7hpw=:EID_Exquisite",
+ "65000C27C3BC5B9B904A0D20050D6B36:JFwQi7tWgJDr+E4GzYU/rgasjjk+1BKRB/N88e7rVvI=",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Backpack_GalaxyLevel",
+ "99B0F5AFB03FFA1BC3B8AFF75267CAD2:d4GffGn7ENqL9SpO5wnhKZzqzpr8S/4LQS2P+QD2wy4=",
+ "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:EID_Sahara",
+ "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:EID_Vivid_I434X",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_938_Athena_Commando_M_Football20_B_I18W6",
+ "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Backpack_SpeedDialBattle",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:EID_Majesty_49JWY",
+ "17F31F416B1B0A73F14F0A7973DDBD76:+hUk8/wD736u5sylQPXcKKREoo5vSPaWPG+3xxT5nFM=:Pickaxe_ID_157_Dumpling",
+ "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:Pickaxe_ID_462_Soy_4CW52",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:LoadingScreen_TigerRoot",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:LSID_328_Quarrel_K4C12",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Glider_ID_316_TextileMale_3S90R",
+ "02421097082555483CA9524F79EF7687:e9wZT5/2KHmpbw6KjR8u4uo3iG00O92+PAZMbk09a3w=:BID_545_RenegadeRaiderFire",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuildSuper",
+ "2981826DE79FF29E18E71842E259C429:8ZvDzw8wgo2ogkeqTm4pYe6fh7ghrOxdZXEwkpaPGOU=",
+ "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:EID_AshtonSaltLake",
+ "02743CF33556232CE2CDE4BAAE108E2B:fEeB1cPrmwILnnMkELOaIMVfGJXixlOZSzby0xhKPHk=",
+ "B1B800E199A6D4649287C11AE89F67CA:3udFXffIw3c7eM5hljF5mJQA36FbW2PeF8Gx1TcD1vc=:Pickaxe_ID_201_Swashbuckler",
+ "F2E3A44428F24B0E4F481938A8E3D8EE:Vgb58eI7kGPp+Ecr8lhE2RMoKeCLFG0sWAEugWV295A=:LSID_305_Downpour_CHB8O",
+ "D0707546203A02CE99300D9F13D18EF7:fNZJ7mGTDauIUjs13TDKcb0dXoFo77oArVEGU/nuM08=:EID_Fantasy",
+ "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=",
+ "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceSteel",
+ "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=",
+ "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:EID_Astral",
+ "8AE930B0D623C1C2B3926C52ECF6250B:uwtZv87e9DU/Z1ZvYB7Pv4TdRQ4/ZRT9nYJCwYSmlbI=",
+ "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Pickaxe_ID_215_Pug",
+ "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:Pickaxe_ID_808_NobleMale",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_235_Athena_Commando_M_Grasshopper_B_RHQUY",
+ "6838E4BB35C0449D4F66F7E92A960D1F:KOKH3JA+OMliB+f17Pd8OFEtooaCZjehz3CvfqaSbtU=",
+ "389F29133F5BF2F060F614459FB40A33:QJeT6Tn8kANHABraLv3bT4U+4DU9axx8n7AjG97WvbE=:EID_PrivateJet",
+ "681CB2E1E19D79D2FF4B67F5B42777F8:I40wNxVWn0cEVK0JlL+G+g9YdcsHNZvDQnsCtSyZzzc=:EID_Meander",
+ "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=:EID_LimaBean",
+ "AC74E15ED1B7D4C09EE43D611C96282F:AE5miomI93bx4PzortiojpqTb928k7cf1PqC6YPjvz4=:EID_Prance",
+ "CCFB247DE6ED8DB4856E039A5AE681B8:Z8ixoqcCEiFqUH1qec+yUNQTP1+D1xQjYw6FDpUQa9c=:EID_RhymeLock_5B2Y3",
+ "B7E28BEF6DBEF8710E68B66900B42430:sHtuRWXH9yrWnwjLhWISF+7+FWXyahhu96R9nTbjlSw=:EID_BankNotes",
+ "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:Pickaxe_ID_744_SleekGlassesMale_ID69U",
+ "7EE5B905919FC30BA533A9B72266C37D:kAD28wIO613FRtg5cfGz+jb0Ofed2l3NonVGSmeqCAU=",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Glider_StallionSmoke",
+ "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyBlink",
+ "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Character_IonVial",
+ "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:Pickaxe_ID_479_LunchBox1H",
+ "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinVest",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_428_GalileoFerry_28UZ3",
+ "907E8D93213A838738E26D30AE3A5DCB:Is1Z/2TjgM6jWr9R/zd1E4bjKhDnWmae7rjW+UIU5Yc=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Lime",
+ "FA393ED7DFD20657B9C8659CB0295F64:G5wmtVhL0E8/+gpxHPK3HGJJ5RvfoWyeYrLJ3Awm9f4=",
+ "5F65B98450A9DB7EAD3BD81AFC3B9247:YA6EKCKE+TIHonXuvS4D3sEGCXfyaDTCsWBM10VADL4=:EID_Affection",
+ "3DFEA395156D835B86EB22801411ED08:cG8Q2VOqa9d+9J4QEvdBWe5hjbIayC4HtRp7svIWZ9g=",
+ "4F365EB12B55EB9A6BDD99DFC3D02E61:JFApzAook6DV1rLMngEwoo0pprP17X6gjpNc79NQ43A=",
+ "6A2047910081947B9A5DCF542A9AEBE5:V/jMTWL+zbqeIlKCE9+SM3+X69aYbt/cN0+G1D0GBQU=",
+ "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Wrap_460_CactusRocker_92JZ7",
+ "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:Pickaxe_ID_114_BadassCowboyCowSkull",
+ "A6130F4077B928D41D298463C61C0F34:oW3GkVlIb8uiNl0CzqrwVZeGfnEujp2O3O3tnw2zFOs=:Wrap_094_Watermelon",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:Pickaxe_ID_745_SleekMale_ECRL0",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:BID_A_030_EnsembleMaskMale",
+ "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:BID_177_NautilusFemale",
+ "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:LSID_273_Tar_ITJ9S",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=",
+ "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:Pickaxe_ID_203_AshtonSaltLake",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Glider_ID_186_GalileoFerry_48L4V",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_429_GalileoRocket_ZD0AF",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Glider_ID_305_QuarrelMale_ZTHTQ",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:BID_955_Trey_18FU6",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_909_Athena_Commando_M_York_E",
+ "14AADCCB14231F83A0FF5E13EEF676AD:E3AdIm3VavVg7FwK7HBEFr6e3sE52IUL6rZjGFm9QCo=:EID_Nimble",
+ "510BE1093533EDED92752C0B90A80895:vaI8rYMUPwx+M61tvfJ0pf+dMK/96pnzKOQluAPmjU0=:CID_424_Athena_Commando_M_Vigilante",
+ "4C3B1FC20956AE8C3C29A85446D013F4:dVksVi55yMPvgmuA2rjvlyDlySrQOK8wmH3aa69wtZo=:EID_Ultralight",
+ "45261C72DCA170BBF0BDB129B9FC0BAF:5db2NWibvzXoFGVIbg//HklLwxuGUFWO7tKGPStOM2U=:EID_SecretSlash_UJT33",
+ "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Pickaxe_ID_198_BountyBunny",
+ "B4BE2A5487426AFF06CB7089EA9B75BE:w7Hbt5PsQ4MDg9EjvOU8WdtL/BrWxZNp9NM2UrHSjRg=",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_848_WayfareFemale",
+ "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:BID_329_WildWestFemale",
+ "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:LoadingScreen_Stallion",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=",
+ "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:Glider_ID_155_Jellyfish",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:BID_801_MajestyTaco_FFH31",
+ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:Glider_ID_341_FoeMale_P8JE8",
+ "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:BID_311_Multibot",
+ "9B4BD31E84E9FBD35CF3A63A1FD4B57A:OAG5UzEWtlrNZE+mjpZbHFtFs61OdIrgsdeiQYbUZsM=:EID_Trajectory",
+ "18657B021FD5011618877BD5D709EB51:6tLEm1BTY8+Go2kUChsjNEQkZJcsN31oLw3AorwxptQ=:Backpack_SlowBurn",
+ "2A12750AF48FB5468105F255DC537CC1:lKjAansupIjoXjT3/0vH9XeOzVp9S+fBGtyP90Gve60=",
+ "2F426D86C7E7EDE779E8D62108AB49F4:zVh0R7wazvQUgucmS9AYYNnN2g+oFYv8ZMlhD3WnH0U=:EID_Hurrah",
+ "591DF838AC4B3A6350E40E026B26D5C0:MBvGoHxJQBTxCm2V82s2yHqRWPsYdFyj8xKUhFsUkyE=:CID_745_Athena_Commando_M_RavenQuill",
+ "7E9FAC0F2BFC4AE3A2ED4C87D1A57DBF:xaR/8qp7kFAbILx9i6ANnoam0rZ/tP8Xy3yysuqt8BA=:Pickaxe_ID_231_Flamingo2",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Wrap_CoyoteTrail",
+ "1D02A6E14FDF53655E818CEF9E57B1BF:ekG/6DFEYOaCYi5hruGoY/o1KzC/O5+9hJbdMyti8Gk=",
+ "9E7468047D1781BCB546D5AE215B5073:EYWQj4jWQQnEZ6i1eKfW47bvGqK0ZNt7KFzQO1P6FU8=:Character_TimeSquare",
+ "3FCDA1185C56B6A5FDC57AF760566A51:9I7HsUJTcd0EMjpuwQmyno0jbrJon+nZePI6IuQBmtk=:BID_983_ScrawlDino_AD541",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Raspberry",
+ "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Glider_ID_157_Drift",
+ "1234642F4676A00CE54CA7B32D78AF0C:Nd8vhYp296C+C0TqSIGxu0nBYOFGQ5xBNK5MFjHS8IA=:Glider_ID_115_SnowNinja",
+ "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:Pickaxe_ID_465_BackspinMale1H_R40E7",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisJackfruit",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:Backpack_ChessBoard",
+ "A31042B93988941EE77BC1E2DA6AA05E:pDUufUGsOVTv3LuXoq56xwz8HRnzlrHTvTLWbzBaPcU=",
+ "715D5B8D89F01C804C2ED33648157A6C:GbMcQmdpv3ju/P36UQIlDFZ0Q5jr0he7O2oTJ702McY=:BID_446_Barefoot",
+ "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDialBattle",
+ "286270CA017B478C6FF6B5B815428F93:OUbNW00OmQLCd9iLA13soMU4wYtd0RTc+lEkoPdvF4U=",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:EID_Slither_DAXD6",
+ "7C13D9408B7434500647EEDFE55A63D9:vea6GIIHMHtDB/mVGTp1bTW3tfCM6tLlpI9LiP3bxTo=",
+ "053E7EE2FE8B6EB117A01D1E0AF82AD1:SDqBD0e/4fAyf3WCPqwUQD/gDhMWPtbdTZt5j/p3M2A=",
+ "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:EID_LogarithmKick_NJVD8",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Glider_ID_343_KeenMale_97P8M",
+ "F8E2B9191F948DBBEC6F6688BBA7DB41:0Rv3StsHC9OvC6UDR+L+CLgz63E+qGme+zw6sebd2uc=:EID_Swish",
+ "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:EID_Stallion",
+ "91BEC79063CD316E69E79215E0CE6437:uE56sTOQozw4kZfj70CQIEFqQOFORE1+mZhMhccG1z4=:EID_ModerateAmount_9LUN1",
+ "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:BID_201_WavyManMale",
+ "E6CB9B5FE721FB85529A6558D32987CA:aKSiHv73+80I2NZ8lFAbV7CRyRGO4LN9J7a6gjh51b4=",
+ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=",
+ "E0632A3499001FD204066071F9E44663:ye/jHjXfZ+2r2qhri+iiy3BBHoR59aQ1cpexo9dhWSU=:EID_Disconnect",
+ "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:Pickaxe_ID_664_DragonfruitMale1H_4BIXL",
+ "2BA50BEC5CD27BD07670D7A014FE98BC:u9XKnFIiDDHG2eDMvUJoGUlO+9ZAEVSGyh0V71bjCwg=:EID_Whisk",
+ "23280A6FC0902B6420BB82522AE16D2C:C7o6m2vJJY+XWKd0t1YLBPVLYCMgNbt10d/itx5Wjnc=:LSID_367_Paperbag_3WGO8",
+ "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:Pickaxe_ID_194_TheBomb",
+ "99F93AEDE16EDDD2D43F8FFFED3A4126:43GiNG6gw/2MctgKJG7QkA52E1HBAGcdxIY9f+7OGZc=:EID_Ringer",
+ "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:Pickaxe_ID_727_LateralFemale_D9XJG",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Backpack_FNCS26",
+ "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:EID_Indigo",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:EID_Lyrical",
+ "8D578CF915DB851F9BE73C937D3565E4:Xk8kUK9cut4tXr0VQjufZdoepp+TzGmlDA7fzYA1rAc=",
+ "17F31F416B1B0A73F14F0A7973DDBD76:+hUk8/wD736u5sylQPXcKKREoo5vSPaWPG+3xxT5nFM=:BID_207_DumplingMan",
+ "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=",
+ "682BB8BC5B0BBE6318CF2164E074E7E8:NA4nCwFqo95pvsqkLXWO2WDdLY+MQGcj97N6t881BQE=:EID_Socks_XA9HM",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_447_Athena_Commando_M_BannerB",
+ "B3A4B83DA3274522D4B9F117DCF9A0B3:y5n7vfr0uucr+psZzb2F3g45pWUsv3i3j/M6bl78Z9A=",
+ "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:CID_371_Athena_Commando_M_SpeedyMidnight",
+ "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=",
+ "B66A53100DFB8F33CD5D55E2F66FE10E:wz7DApgadJnBQyHgJCqTiXYQARH8NWpaIT8zSJiIJUg=",
+ "D01F7B7A687A459D3F28B8A3BD96E31D:siHFCRzefGjIJSV1g3Iw6At3HdCRf6ZbtgZyNVQXPq8=",
+ "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:Pickaxe_InspireSpell",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:Glider_ID_363_SnowfallFemale",
+ "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=",
+ "B1EB196DD39D0736E7E08F99B07D8B9A:1fDhBY8uhi++l6QQPL2YtxZgUv04OZoMGBrH+yN8yKM=:EID_JanuaryBop",
+ "6B0D17A04F83AAF1E4EC1D0D481D7B03:fgSAnECppKmZD1eolFEZOuOpUDPbt1MmvGroMQ0sPFU=:EID_CrabDance",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_941_Athena_Commando_M_Football20_E_KNWUY",
+ "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Spray_BasilStrong_Pickaxe",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Pickaxe_HeavyRoar",
+ "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:Pickaxe_ID_687_GiggleMale_YCQ4S",
+ "C5E60B749B12EE642D011809C151C105:3beN3XlxtcpmaTa1O6669UmAZ7HHs8UFOzUQSAOSWv4=:EID_SunMelt",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_457_Ensemble_Characters",
+ "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:AlfredoSet",
+ "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Backpack_PowerFarmer",
+ "B4585A36D49CF15E1E236775B8C659C1:Ced0+UTeTBbDhnHM9mLTk5qxlz3YZK6dEn1U+NTxOko=",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_997_Athena_Commando_M_GlobalFB_C_N6I4H",
+ "3AA9D1B5DCC39A932C9D6FC201C5F327:kCoO2Hxq4V1uHM9pIfqlMOFRTyGqSeW8MYEiFEen6mc=",
+ "8C4383893F90632D5516AD37E0CD5173:JUTInt9XDGH6gUbZ040d4ptJRsuhNppIKKIw+IiYo8k=:Glider_Headset",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_087_Athena_Commando_F_Hardwood_C_AOU16",
+ "280F643808DE5EAB39E77B23E2193CE9:lYbsbCLMwjFvdalNxsBUj+PZiJmtoa/wclz2sAOQxuM=",
+ "49034BA1606B1672C8B634D2C6186807:5ujMnF4IKuvumpfNcUA1yi1mXjy5zBGPg00TJkHlG04=",
+ "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:LSID_440_Noble",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_301_Athena_Commando_M_Slither_D_O7BM2",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Wrap_InstantGravel",
+ "58388BA7BD1643A85EFD49BF26EF5912:Aru327JJHsGKCD2YlQT+Ejy63//vly9ChTdKsfgL75o=",
+ "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=",
+ "1A10A7700C3780E2B1A03037D64E1EE5:IvQikWqraVuMzt8eP1B0cxW5Dcaiv7njo2QHFfZFmY8=:Trails_ID_081_MissingLink",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_850_TextileRamFemale_2R9WR",
+ "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:EID_ProVisitorProtest",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:BID_701_SkirmishMale_5LH4I",
+ "91181AD6BCB9443F7F6479DA8BA9B7A4:ckv0KEQuDpca5cP5JLUH8K1f+tVYvZptoMsGYR7fxDU=",
+ "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:BID_939_Uproar_8Q6E0",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_906_Athena_Commando_M_York_B",
+ "0F810ABB0DB8672A438B14169C048145:9vfFUEaEveznaEvyq+mhGagh3w98fRdZ5BpwQgNzMzg=:Glider_ID_133_BandageNinja",
+ "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:BID_271_AssassinSuitMale",
+ "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:EID_Rover_98BFX",
+ "A25DFB2C9EBAECE22F893DAA48A7138F:d5KZse0g/v9xySiDWLhNw3kCvlWXZKWMKUjDzW8/SIg=:Pickaxe_ID_435_TeriyakiAtlantisMale1H",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Wrap_495_Ensemble",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:Wrap_Chessboard",
+ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:BID_703_KeplerMale_ZTFJU",
+ "7ADE21079D27D9CA3931F676358A0F72:jWtbxcYHNph24P0SKVvPEuGDIdFpq+wZAEIlGXhSpj4=",
+ "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:Pickaxe_ID_538_GrilledCheeseMale_Z7YMW",
+ "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Wrap_048_Bunny2",
+ "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:EID_Zest_Q1K5V",
+ "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:EID_Uproar_496SC",
+ "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=",
+ "8D336ADD3E862004534F4D310F0A681F:Oh4kuy+66NB6gPNkix+oKng0QTO1Dju8k6SxT3HXxe0=",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Pickaxe_ID_693_SunriseCastle1H_5XE1U",
+ "EBB742679C34C9D4E056A5EAADF325B9:ousld0RIkeu9L9aTDwr9aNCIt+wOwB7KxGPY9BTfQ7s=",
+ "6ED300E6401C02B19FDF5F82D945C661:OVr0GWPGv86nzWikKzrw2SC4aS+4ApgKKLvQ7d0Nkn0=:CID_336_Athena_Commando_M_DragonMask",
+ "0A16F03E8DD9C4DAE4F04B2C5D6F829F:5o23YPFPMqv+KS4E4/ybDC25GkBt8ZU52xW7WF4tZbY=:EID_Bulletproof",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:Wrap_179_HolidayPJs",
+ "9E9072AA036FB1FF6B2AAD7BEFE7BF17:ORHgZOt4Zrtc8dLSx6jCsWZ3Z6AwPJiSiFAkZRMK3kM=:Pickaxe_ID_649_AntiquePalMale1H_GBT24",
+ "63B2E664F9DEE5B42299191174C3B3C3:U1GOSBqPUDAFq3pjEdJg8nHb321IH6571dkhF0nEMss=",
+ "4C8D53A32D85124D08A3DCE6D3474A30:gam5sVciLPzKr+wmWOoctLo5HFqBvBLKKcxh6ZV1kn0=:Pickaxe_ID_533_WombatMale_L7QPQ",
+ "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:BID_189_StreetGothMale",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_240_Athena_Commando_F_Grasshopper_B_9RSI1",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:BID_917_RustyBoltMale_1DGTV",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_953_Athena_Commando_F_Football20Referee_B_5SV7Q",
+ "9904FE82E1630F9BF753E5AA195B4E1E:ScugOdDnT2N47PETOZ8B3MoDlg9elYb+ePzsZGA3ryI=:BID_A_027_SpectacleWebMale",
+ "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:BID_826_RuckusMini_4EP8L",
+ "A6E44EB3DA45A5323BF1FEB33C6421F6:l9NQzTVH+MNDjQ8Z2gSvxDnNFyvECNwp61JOHFAWWvc=",
+ "FBAC0AD8C03AAB2DC3BC077597517179:5oj8B4R53plPxRictMN6QkQ741CibMbmzRJYIDIQ5iM=",
+ "A10B1E27AF53CDC331BF4797C97B6B9B:fy5fTzL7HXpOBRg49CHm/E8Iptd4X12eYNBAeSa5CY4=",
+ "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:EID_TourBus",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:EID_RustyBolt_ZMR13",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_945_Athena_Commando_F_Football20_D_G1UYT",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Glider_ID_333_RustyBolt_13IXR",
+ "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=",
+ "E5C19AD4D84758F8B943DA9A9D608712:qYxz7kOHjgf5SSa18F5bcIL1nLD0n6MD1vUE1+SwP08=:EID_Bargain_Y5KHN",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_443_Athena_Commando_F_BannerB",
+ "335BDA9AA7DA27137CB7F1DA56FA2E6B:GJEyHEl3Q+8h2k2Cbe5sfG1lNLmXHSts3n+0QYH4Kjg=",
+ "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:Wrap_496_Chisel",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_089_Athena_Commando_F_Hardwood_E_4TDWH",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:EID_SunBurstHeart",
+ "7A8E25F664219ED6CCF3AB1658D0E557:TV+yyWpI3iHJoaK3o1t6+/uhN/sFZ1OixoAx0n7MtjM=:Wrap_118_AstronautEvil",
+ "A6855B699FE10FE50301AFE1A4FA74CB:fKXFbKW6dUWHLSC8M4KLAg1elVXH+wYouFbpvvtiIcY=",
+ "E4143E437DE7481237AFAB40C59D96E6:a35NCp3zTY2AhSsZWy09BJaXJDU0LMJbiiP1u0dOl0Q=",
+ "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_388_DonutDish1H",
+ "099F6A310406E06EEE5B011F57E8ADC5:eN0n2GvhVfW8LKPVA+LvlegACOXLQLyOxt24wFERaio=:EID_OverUnder_K3T0G",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_345_Athena_Commando_M_TreyCozy_B_4EP38",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_238_Athena_Commando_M_Grasshopper_E_Q14K1",
+ "1C8FA86241B2E4D084F7548529629CF6:pmXOfd+NEXcLhZX5YqDLjHu8/yzZoo4dWPcCM8ccXoI=:Glider_ID_118_Squishy",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_442_Athena_Commando_F_BannerA",
+ "B7D9219AF6290146AAFF711E464C5849:iwGv47bJtl/Tm8oJGdnta9aDA86nY0IyjDmJWjQYdQo=:EID_TrophyCelebration",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_721_RustyBoltSliceMale_V3A4N",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:BID_977_SnowfallFemale_VRIU0",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_908_Athena_Commando_M_York_D",
+ "CCFB247DE6ED8DB4856E039A5AE681B8:Z8ixoqcCEiFqUH1qec+yUNQTP1+D1xQjYw6FDpUQa9c=",
+ "9E9072AA036FB1FF6B2AAD7BEFE7BF17:ORHgZOt4Zrtc8dLSx6jCsWZ3Z6AwPJiSiFAkZRMK3kM=:BID_827_AntiquePal_BL5ER",
+ "F7CAA8D040108722FFA35FAA63DFD63E:WNwYWakPoe/BGxI8+xsB446zHv4R9A1krz8SK2y8Pmc=:BID_164_SnowmanMale",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=",
+ "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:Glider_ID_336_OrbitTealMale_VCPM0",
+ "E45BD1CD4B6669367E57AFB5DC2B4478:EXfrtfslMES/Z2M/wWCEYeQoWzI1GTRaElXhaHBw8YM=:CID_229_Athena_Commando_F_DarkBomber",
+ "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:BID_643_Tapdance",
+ "5471C1F8E35769AD4220BA02258BC5EC:uQVQxaCRJdmeLB4Y37GxewfPtXo3XX4NZJmA9C0z98E=",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:BID_987_Rumble_Female",
+ "D47524F6F863DCCBB2455472F0FEFE2C:cRoiHZin2Lnv6yQ4Zt2WoIpQc1ZjLbfl1Ogid24ydZM=:CID_A_417_Athena_Commando_F_Armadillo",
+ "7FE6E196D4EF15F90CF5FCD812543E7C:hAr9lKRtiDVeJSn5j/kXuFTGiKYTIEHwhe6VzS5FnYs=",
+ "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=",
+ "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Pickaxe_ID_581_Alchemy_HKAS0",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:Pickaxe_ID_719_RustyBoltFemale_0VJ7J",
+ "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:CID_467_Athena_Commando_M_WeirdObjectsPolice",
+ "A93064DA8BDA456CADD2CD316BE64EE5:nziBPQTfuEl4IRK6pOaovQpqQC6nsMQZFTx+DEg62q4=:EID_Bunnyhop",
+ "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:EID_Loofah",
+ "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=:BID_906_GrandeurMale_4JIZO",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Glider_ID_304_BuffetFemale_AOF61",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:BID_990_LyricalMale",
+ "A25DFB2C9EBAECE22F893DAA48A7138F:d5KZse0g/v9xySiDWLhNw3kCvlWXZKWMKUjDzW8/SIg=:BID_566_TeriyakiAtlantis",
+ "B0030ECDA329A8B589D249F794EA90B3:BfF0FYJQJ71DMUBmClT0DppsOy+1Syn8fGu6qNtTgXE=:CID_A_094_Athena_Commando_F_Cavern_33LMC",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=:MusicPack_122_Sleek_3ST6M",
+ "110D116208C62834812C2EDF2F305E49:MwuF5zX7GpQCGL2w+CwkPmGzH3q05YUoLo5udhVMNPg=:BID_488_LuckyHero",
+ "40E9F547033360DFC0DD09743229B87C:x0/WK54ohwsadmVGHIisJNyHC8MqlU8bg2H+BsaEBtc=:EID_Kilo_VD0PK",
+ "2E539CD42E0594ED4D217ABE4E2B616F:9zdoLMrIZomTGmvDId1RMEGSfktV9gBGgcD2diSSMw4=:EID_NeverGonna",
+ "5AD8A96807B87D5E2D91EF7714A5432A:FHE540WbcHsqROMXt1E3RQIbKEguG+TVTdOr4IGSslo=:EID_Cottontail",
+ "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:Glider_ID_135_Baseball",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_394_TextileSilver_ZUH63",
+ "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:EID_GrilledCheese_N31C9",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_237_Athena_Commando_M_Grasshopper_D_5OEIK",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=",
+ "47668DCAEC0AE101E0402B6105A6DDF5:rSOpMue5liEBVSvy/0JZZGTPsP2QeA7Yw9GdicJHs7Y=:EID_Macaroon_45LHE",
+ "13F1DD5EC796B357B6085D50BBDA3C18:7NRW9FQONfoNEwOJARayC1upKkjg3obxAWICvcXfUWs=:BID_426_GalileoKayak_NS67T",
+ "E7C565B86445735863B8080B9BE651F7:7M3P/+is0y8muF7/0N2dJo96J3P/k991Vast/lb7Xec=",
+ "BE9040B1851D0A64B7F061CB66EA9203:5MNas9JBbj90Lqq6RcfyUEE3lZjfXZhiDzn/FCcLiSY=:EID_FlipIt",
+ "6DEBEC4266A3BC248F8A8FD4B76878BF:wjCAJ9VaThgTfbvUetCEWQFii5GmdfPwFCvxLv5ip/g=:EID_Eerie_8WGYK",
+ "D80CDC979BC760ECC941D3E40C7B6CD2:zTGtyTYXzGUyXItI6QOo4oRr3Bq50412adBrYt4Jm3c=:Character_BestDressedFNCS",
+ "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:BID_870_CritterManiac_8Y8KK",
+ "F2A5D91602A7C130FA1FB30A050E98A2:MrhEh24cVikkhJJUX/LBAaNtgYV20VBiR5oaMDJ2nA8=:Glider_ID_346_GalacticFemale_LXRL3",
+ "0AA41354BC261BF44EE59CBB903A1672:vSYFVpavcoosC319I0XmmzhcwCeJFhat5rcJYatQvks=:EID_Cadaver",
+ "6CED8B5F648ED1ACCC8F1194901775AF:qjfCT39FVniEjPj+CvZu5Qz8XHHtdnH8kCsV3P1OaJw=:Pickaxe_ID_196_EvilBunny",
+ "488F01C34A9A24115776EA801A6E7E1B:WB1TFXsB2Cywzb16hZ2HdBc8X1FsTVqzlDwhyJO8Pcc=:BID_687_GrilledCheese_C9FB6",
+ "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:CID_A_138_Athena_Commando_F_Foray_YQPB0",
+ "9DB808E8A3748C92F9B2836D97F12E43:8/7CEcgqMxbP0Njwt+FfkrpLL0re3J/cSvasQ9DuVAo=:Backpack_FNCS_S29",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Pickaxe_RelayStick",
+ "57C0A809F1C608D62307954035E3DFCD:FuMI1S1xM1U7UrdX4qZhPq77674JV+EV4HWsn59bmbE=",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Pickaxe_ID_553_SkirmishFemale_J2JXX",
+ "CB3D84444FF0E551D18939AA7226B17F:U4GIAd4fGYWy9tySw3iVb92+6ZX3rQ3FsiBCXMT4TSo=:Glider_ID_108_Krampus",
+ "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:Pickaxe_ID_406_HardcoreSportzFemale",
+ "6EA156BE3D18E1D649D7D4B3F8C0FACA:qAKD9oM8u4IvUcKbReHTMaLg7GtHLBcnmz8++vwwB6o=:LSID_372_Grandeur_UOK4E",
+ "A0C6985E7B2D24E0A3F68456F221258F:CI8iRftaQe7Ncch+18hxD3hcd0CFGOA9QvEszAAsFMs=",
+ "975414A2AAC78A3710C3A47A8E3B7A57:LQWa9K05LB13Fn7Brzi8R3vsMRmFcNyJaoAcmBFZNjg=",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Pickaxe_ID_328_GalileoRocket_SNC0L",
+ "4C838738CDC4946786DD7BE341AB05DD:eyjCm9OcFQSvVRVBZizNVyF+8kb9OlNFrvDy8d1QDfo=:Pickaxe_ID_197_HoppityHeist",
+ "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=:Pickaxe_BrainMatter",
+ "37EBEF32D39E164FC25A2C913454C2F2:ct+ozS+yI2X6H+Mq6fmTH3pKQ5Au5vvVMGz/9ESOva4=",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_995_Athena_Commando_M_GlobalFB_H5OIJ",
+ "B66EED5CA4F4ED75170872E30B9B0E23:rHT8/uzcZZ0ENxU9dxKpr+cdAajZ5L5U0geHt6NoZhI=:EID_Fireworks_WKX2W",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Pickaxe_TigerRootFame",
+ "6A3F6093DECACCD1F78CF802DE7AFF84:Skd0CfmqkmJAUqDFE6Qy/adL2MSN4IuAndXZ0SepEXw=",
+ "7E9FAC0F2BFC4AE3A2ED4C87D1A57DBF:xaR/8qp7kFAbILx9i6ANnoam0rZ/tP8Xy3yysuqt8BA=:CID_464_Athena_Commando_M_Flamingo",
+ "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:Pickaxe_ID_548_TarMale_8X3BY",
+ "F44BDB2A36AC4B617C7F6421713C656E:SgzCqior1619O71w2yToU+h1Qakb9PXHXYIQN/2UIgc=",
+ "C73DB27E321E8B5D3747E2209CED62F2:sL+26G+2SaePYEPgaTi+UwMkAr9RfmVl3QK3fsLfd30=:Pickaxe_EarthLane",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:BID_986_CactusDancerFemale",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:BID_991_LyricalFemale",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Sparks_Keytar_RelayStick",
+ "9AEA6E7C6885D6E9A1E71E1C1D660FE6:RMnbqblRiA6+JXyNmN/z1yqMbdKCkLnupMvsm1cpoSc=:EID_Resonant",
+ "56FE93367C8B62ADE2A8A1653077C98B:OevQYyBvnT5vwQhOJhu74k5TNwE6pe4gu6okYYBepGc=:Pickaxe_ID_784_CroissantMale",
+ "B4D5B451ED92972585CC2F14FBD89BEA:W5OvELdQtcX+ob61JryiUFRMmKWphagg20Z84qg4auc=",
+ "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:BID_295_Jellyfish",
+ "1CE4B8636E40B4AF8858511CE01A98E3:+vewfAbMTec/enBaWVzzCxiHw8WLTJvfAWzFmcOJT4Y=:EID_TheShow",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_086_Athena_Commando_F_Hardwood_B_B7ZQA",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Pickaxe_ID_821_EnsembleFemale",
+ "2CB7CC414F921DD774957AAF4AD5F8FE:vi2xluuUw+pFj/tqqfvh7cS9Qnr8gQPEGX0IHyjZVp4=:BID_185_GnomeMale",
+ "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyCharge",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Spray_GalaxyLevel",
+ "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Pickaxe_LastVoiceDive",
+ "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:MusicPack_084_BuffCatComic_5JC9Y",
+ "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:BID_171_Rhino",
+ "7AEE99564551FF8EE98E6887410AE8E2:Cumd3/0knsdwt4bl7zNQw8MKmmIuC/4wYVfVtQq5d2o=",
+ "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:BID_980_CactusRockerMale_7FLSJ",
+ "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:Glider_ID_241_BackspinMale_97LM4",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Pickaxe_ID_644_BuffetFemale_TOH8A",
+ "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:Pickaxe_ID_741_UproarFemale_NDHS3",
+ "59299ADA0CB5BE70955E952C119CAFA1:MgFBow48P8D6E6wpzAu6Wk04y5ZYsYlZ0V9FK3hIQBM=:EID_Alliteration",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:LSID_274_Skirmish_PJ9TZ",
+ "1B8A454D42FF2E63D828ABF3B4A303C1:mWm/IpMJQylR4iuTbfEyjjj3TvMNGvPpLNVd1RGrHHI=:MusicPack_139_BG",
+ "3AD37E40514304F7789E17FEBF4E4C68:4wGt9TLz7/cukkDMtB7Y8HZvi0fXNDMLsdCs6k98OM8=:Backpack_FastCheetah",
+ "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:Pickaxe_ID_841_ApexWildMale",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClassSecond",
+ "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:Pickaxe_ID_771_LittleEggFemale",
+ "0EC19805A48534C8892FA21C75024971:WcebSI5r6bMgSAbNd8Ob187rYmIJFJciobdyQciRiSc=:Pickaxe_ID_268_ToxicKitty1H",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:BID_876_SunrisePalace_7JPK6",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:Glider_ID_176_BlackMondayCape_4P79K",
+ "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:Pickaxe_ID_174_LuckyRider",
+ "B8F307A56B6EEFACD6250B2E60A24A4C:ayYSM667dKzMIvm8ZUY0F+FNlvNsg4G2RMIgi2fPf8k=",
+ "09D84C411F2EFF940F5D462000CA5BE0:6Djlf6/XCCTMpI4KbNEHN4X6prgcnfQtru+z+RTHs2s=:BID_736_DayTrader_QS4PD",
+ "C6F7AEC922E28FB25AFBC50442F57877:qJNZNWzxSxvlrklYDsNkZek9OD8kGV6lI+Hfmm+k0gE=:EID_BluePhoto_JSG4D",
+ "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:Glider_ID_306_StereoFemale_0ZZCF",
+ "F0257C3CA050371B68517D5B0476A24D:EPU6cULjz63viMmdjtRwy6TagWogzeVnVX5nsa/leLw=:EID_Punctual",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Wrap_TigerRootHue",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:Pickaxe_ID_326_GalileoFerry1H_F5IUA",
+ "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:Wrap_044_BattlePlane",
+ "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:Pickaxe_ID_680_TomcatMale_LOSMX",
+ "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:Pickaxe_ID_577_TheGoldenSkeletonFemale1H_Y6VJG",
+ "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:EID_Fishbowl",
+ "57199980522FCA9E80C75A826BEA92ED:aR3U2OO9uGBqAYnJeTrUBFk6Q+OkpdmBavBU26DP0m0=",
+ "6686344942A2886FC4FD4D3763A4890D:CphngqSvpV+b2+WsrC6THVlHtrbln/Gmei4th7IO6VU=",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:EID_FirstClass",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Pickaxe_InstantGravelNoble",
+ "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=:Backpack_Basil",
+ "9AB2CF1E3AE8201C3815E433580D23F7:jHztEpUk14GSfxVNSQydmlFI6YqsrR56wZJTPP5HNf0=:EID_Obstruct",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_950_Athena_Commando_M_Football20Referee_D_MIHME",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_944_Athena_Commando_F_Football20_C_FO6IY",
+ "98BA4AE4D7202053DB73B55D8DE72248:6UYqlPIbGSNPZBQWhHR4xZ/l3mJCnJ2O/7SEqRRInLY=",
+ "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:Pickaxe_RollerBlade",
+ "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:Pickaxe_ID_330_HolidayTimeMale",
+ "4C546A04EB0E91B7EB4449B672B63900:RhtdrUqq3N21E77X7YatI4oX3wLYyvFH5Wm+eaUX8+w=",
+ "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:EID_Donut1",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Pickaxe_CoyoteTrailDark",
+ "C73DB27E321E8B5D3747E2209CED62F2:sL+26G+2SaePYEPgaTi+UwMkAr9RfmVl3QK3fsLfd30=:Pickaxe_TwiceBaked",
+ "A0926AD8C6EDE29250AC4A0A93156E7B:keN/yZ7qnvcPZeIflsked9TAT867gbPgmnG1QdlSn3E=:EID_Donut2",
+ "F4729DF9DB149229267F9389E3C95851:DCXGOUUTWG8jFuEryO+32mXKJsQgQe+Fp82u7mHiYFU=",
+ "36126C339CEBD31F23562CDCC5DFDD4D:cuLUN7oD/p5BSxuk6pKGY6KtlhGInVti36sV6zSv1n4=",
+ "EDF724493161095DB54E9613C243A355:Yp7dsOYO778G7uRZNYhGag2diT70vhu2hAWvkzvtHjg=:Pickaxe_ID_796_IndigoMale",
+ "8C4383893F90632D5516AD37E0CD5173:JUTInt9XDGH6gUbZ040d4ptJRsuhNppIKKIw+IiYo8k=",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_C",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_D",
+ "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:BID_629_LunchBox",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_B",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl_E",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BID_427_GalileoSled_ZDWOV",
+ "BF344823BEE88FA8760A410311A30150:mcfE7CGJQLRE5dWZTCNPCCPgSBV7CMLl6lvpF+nzqzw=:Pickaxe_ID_851_AstralFemale",
+ "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:EID_RuckusMini_HW9YF",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_234_Athena_Commando_M_Grasshopper_A_57ARK",
+ "020DE538FBEA2DA5CB1242DDBE527264:N8vfE8tdV6D+CX+hVEPFmOqM82o3lA3k/I/LhZHOh0I=",
+ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Wrap_298_Embers",
+ "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisBlackberry",
+ "10B79AACE97810A1DD02E8A0E6093294:mgf5coTA3W8a87B7ZbnK8dMcRwToBBDjOH4qZoWLw9s=:EID_Adoration",
+ "919FDAB2FDB531820404333B27DC7B06:W9Csp0y6agsgcQXlRGvYUpPGPImNdFfBsZ8yQoUEdGg=:Wrap_092_Sarong",
+ "28C5CD0467F2271365DA8AC4DE122672:I1ujTTKWOz0A5LcFiCwKJXQl9bnMpW9yhvY13UaWo1Y=",
+ "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:CID_A_139_Athena_Commando_M_Foray_SD8AA",
+ "C348806ECD35F176A5C50306B0A07DB9:x8+m/v+Cn55R+CIZrsqqSKxa5JpkQyQGeLVTJ8evrpw=",
+ "0DD695EB05DDF1067D46B2F758160F3E:H8eacvW3rgmZFvWGGwXfojcIBMrQUL+FJQ1x3dzzVm0=",
+ "857A238C0BA80D892571ACE78CD3187C:eLLEqOAgRjz78Z4YT6dLxL3DetAW1c2BM4oTPp912ak=",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_B",
+ "3064E7FF7FD15A1F40230918DF236352:mMcGmrZBjxlJBFmWKqZHgcrcRvZKcHDIn9ampMMA9R4=:EID_Jockey",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_D",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_C",
+ "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:Pickaxe_ID_302_TourBus1H",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourage_E",
+ "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:CID_632_Athena_Commando_F_GalileoZeppelin_SJKPW",
+ "6537263AA4E53B6A7B7D4AE3DE12826C:6WOQR0kXJWBJ4miykyUSj/hcH4u5JTSFpBTwaIeIFxQ=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Cherry",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_955_Athena_Commando_F_Football20Referee_D_OFZIL",
+ "172B237342C2165A212FEEAC80584DD5:7bGmK+J89yojl49SMoQKA+Zf7ZZ0W3OatE6KZYlGPnU=:CID_254_Athena_Commando_M_Zombie",
+ "504BC0A80EE72DFEEF9CB7EE3FFCE163:eToIGihi0lTVTcHietksl1e6cHBf5h30aYO5YXpWXY4=",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:EID_RelayStick_Carmine",
+ "E003ABE22717994943D06FA3F41D1CB1:Z0MoyJ24D89oC5rAOJK09jo5/TLV30z2f+IwDeJ/4GQ=",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_BraveBuild",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:LSID_404_Gimmick_GXP4P",
+ "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:Wrap_071_Pug",
+ "ED088B11311A599D6225CE85545F019A:1NMRh4JMXRL9XW8Kb6zo4/F10dwLJC1+kPm6D6DudCE=:BID_832_Lavish_TV630",
+ "8ED082067AC31EE587FE16E5507E95D3:/uvcdfyt+d1foHxwO3zz+Y0PUr5Jzz/yES0FyaLelc4=",
+ "03DFE957E1454D5A0486358ED5DE9C56:xz1aeE5HU0Ej/4kp/WXnsZhLBh7+z+aWVz0G1xOrTB8=:EID_Promenade",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootFame",
+ "D47DF51158673BE6CD4D32E84C91DF7F:+EzQK4ojNk1DqxceQeArAGZhQPQyuQBKX4gVuGEqSxM=:Glider_ID_189_GalileoZeppelinFemale_353IC",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassGreen",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_649_Athena_Commando_F_HolidayPJ",
+ "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=:Glider_ID_376_ChiselMale",
+ "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:Glider_ID_102_Rhino",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:Pickaxe_ID_775_SnowfallFemale",
+ "B3D2793477E5D467475BE403774360E5:HNj5inGk1/2h9f0r4+SGPPY9t69eOwS6w0XGxpTVOTM=:EID_FearlessFlight",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:BID_702_SkirmishFemale_P9FE3",
+ "DC060EA83FE6F9729B19150E40C7987E:zW3d3QhtvhE+q3x/P7/BA9JvyoruVmeACdKt6RPxyLY=:Pickaxe_ID_769_JourneyMentorFemale",
+ "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Pickaxe_FishBowl",
+ "9E6F84C908A6CEE29032FB050FBC2EBA:GXZFI6Jhfg/HnSTK1cqbpa5Ay1GzLco5sYtY5RPTcfM=",
+ "7F5ACEFE3F67BC0CCEB59A4E8EB82BAF:iDG2HB2LypEtzw5/EjKVpJmQ1o30BE3nVv01rOTyq64=",
+ "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:Pickaxe_ID_661_VividMale1H_ZN6Q0",
+ "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:EID_AssassinSalute",
+ "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:Pickaxe_ID_399_LoofahFemale1H",
+ "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:EID_Ohana",
+ "ECE91B4E506E33C16FA440F4B4313824:dGr4XbhLD3sf28Y3Tawke4Gr/TpwEA5xPOjhgi+ZAKk=",
+ "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:BID_336_MascotMilitiaBurger",
+ "06B9F77E165673FD1C5FF5099F43D1F3:Bvw6h4GKOLjC/wFgHQsiLePbBZhtPiNhtr5keDBse70=:BID_421_TeriyakiWarrior",
+ "FF5A507BCC4519B928075C3DF4603E8E:EVv5b8WFOYZlDUGRqb8YUS1WbIbbT8TjgoBWEQr65zs=",
+ "09BC93B3441ECBAC30FA23BBEF59CF89:3CHInj+JfLspiVCNDY/GTZ4Pn52nWFeA4qYI0SJv2dM=:CID_302_Athena_Commando_F_Nutcracker",
+ "CB34283BE466D2421549051C400A9E52:rTmyRzx7oSiBWRv52itbCbAFlLIy7W6dZoDcfyTMmyo=",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Backpack_FirstClass",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:SPID_403_Lyrical_BoomBox",
+ "74AF07F9A2908BB2C32C9B07BC998560:V0Oqo/JGdPq3K1fX3JQRzwjCQMK7bV4QoyqQQFsIf0k=:Glider_ID_158_Hairy",
+ "464F39FB64FAF4AB6843449EDD0BE3BE:0yYMEXLHteghUwUW+SThzKXltdNzvA42CssFpAXgxFA=",
+ "ECC9E1F04B18E523B2681C2037A17B56:AoeVhWzK5zFpeJ2yqYKkTaRw4vo9162/EuipYvC+jxA=:CID_602_Athena_Commando_M_NanaSplit",
+ "4182D3E699CA4C6022FC4CC2C1E6FB90:to8QORwARsWs8Ox6EmJj9V6DvB4yWqTYHlLuNKAawss=:EID_Malleable",
+ "32E8846645441197B80CF8B1C86B01A1:cwJgOQhsrscdiFfLHzS9WudnE9mBMH/C/SAyX81B2fM=:CID_311_Athena_Commando_M_Reindeer",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Kiwi",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravelNoble",
+ "B9E5ABB4D4F783F13E7A32B971597F03:HGWfy8LBJu12s5HZeYTZDqP2EI3dJqPXupxd2AzYdUI=",
+ "C7623A35411F3D5FBDE2688C7E4A69EB:qAi49mUKsB2dbfbtJWDf3yO2DfRStA+Ed9XgDjC8Zaw=:BID_190_StreetGothFemale",
+ "234D1D3D37EFF3322E44B31200C1ACEA:T3lGoZ3JIVg7vasMQCr3hjyRo8x+HS1Arh43XvdUKss=",
+ "CBAC886CCED55EEAEDC0D4BED9588035:+5bLkb9JJIJBPrVxzvfhb0CkKU4ITf8SJRRG14UzyfI=",
+ "BA490514EFDA436A2679E381BD558AA3:3KBKxBOi/52H0feJ/ijKxRHk+lF1zID0uIpjd0T7/Bc=:Season18_Haste_TrickShotStyle1_Schedule",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:BID_936_KeenFemale_90W2B",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Pickaxe_StallionSmoke",
+ "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:BID_907_Nucleus_J147F",
+ "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=:EID_ApexWild",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_004_Athena_Commando_F_GlobalFB_D_62OZ5",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Pickaxe_TigerRootHype",
+ "D82BF0194AE18598B8B08491E2256E16:3ENJiAAhBVgbroE9WbkjWK5YqL8vzJ0sFKhadRKcQjk=:CID_255_Athena_Commando_F_HalloweenBunny",
+ "E46E6578D28965DB74B642E1CB239A5D:Dg3Oqkcno7QuLDGdi4N4VWSMSAd8bILyJT8Gh0PYjj8=:BID_758_Broccoli_TK4HH",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:BID_820_QuarrelFemale_7CW31",
+ "772E01C212E9A77A501AF954ADA90B09:nQ4i6bbmbGMzcq8iyjoM/BGUbX2DSIJRAZ96/qaOf/Y=",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:Pickaxe_ID_733_SlitherFemale_M1YCL",
+ "0CAB99F6E84D4E4C616B895E243F3B67:DWU31IKjnLsEt8sBBDfWQ3DPbZzpJ2JmfbxYdQ8QPZI=",
+ "F418C01DC7E0766DCA8D731E61DE5748:aJhBCl7XcguoBT4iKwe6EuEX/3fZs++b3wFl5QUWp40=:EID_Rotisserie",
+ "61D055FFB6523C2E6B09EEEF500F82EC:mD5hivRGMT21lNyWjRs7eYriBFTVlzoINDBB9DSFPAA=:EID_Clamor",
+ "8DF1F1277DF980247E3117412EEBC87D:zkBSgRftUEdB3dqaelLwaFIxyVv3AwDbdcwc5hsg++k=:EID_DoubleTake",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_StarWalkerFNCS",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_350_Athena_Commando_F_TreyCozy_B_8TH8C",
+ "FC4FC301558D3E9321A55180263EB17B:OXujupiNRNT6+b1g1dg2IXPtdQyfoNPUuvtgqfXnlEY=",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_445_Athena_Commando_F_BannerD",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:EID_Snowfall_H6LU9",
+ "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:Wrap_404_CritterFrenzy_SNXC0",
+ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:MusicPack_112_Uproar_59WME",
+ "63516700C5CFA6F1BE71B29214957E33:eR9Otw83jJyrj808CkqElVYzlXztuc14/u2pDtPtooQ=:Pickaxe_ID_223_Jellyfish",
+ "5C0BC5E8819B8968CF25C60885F0CB5E:E52Ld2gtMzMFUMkdMpjNWmEHEgr1qnH+iliH2ha27dQ=:Pickaxe_ID_275_Traveler",
+ "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=:CID_A_314_Athena_Commando_F_NightCapsule_TAK2P",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_352_Athena_Commando_F_TreyCozy_D_2CLR3",
+ "77C937AE673A9DBFDFA373E0FD928533:JGgyzNZT3oLg4LqA0W+d/caWWhqIpiXNOyYtzSeZ4po=",
+ "7F2E96A8331098ACD5BB8DC29D4A3F57:kDTbN2yRZAIwEEQsF2zoJwdhtsK0lcb5zEuon7vziuk=:Backpack_FolkEveningSheath",
+ "258AB620A71C14508FB6614003DCD34E:fjPUuwSZbKfHlvSh8RMyVjR2SVTcVrGNpWvyjNVQ8Xw=",
+ "C66F354B49A4389E7636C1BF53CE8D97:BisMzLIPd3AuIv431ryh7DE1h1HYe/NdhBC0wkLq/zQ=:BID_204_TennisFemale",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_307_Athena_Commando_F_Slither_E_CSPZ8",
+ "1162D72490AB6D040106B276D14B20D2:UoybfdmMPLyXmLpTKBZB0sqSOvXnKHabF/nv5olkuoQ=",
+ "6EDDE286471D1369B09E65A6B02686CF:2MDxhxeBxx/dN+Q/lwCG+poxzpStEQLDM0L80CoaEG8=:Pickaxe_ID_152_DragonMask",
+ "88E5DC354F07186FFE1EA93D874832A6:6FGm7/RIAkq2nYksl+dkuTvBSzgmz/DxPQ4iskMBwns=:EID_Coping",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:LSID_429_Rumble",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_650_Athena_Commando_F_HolidayPJ_B",
+ "E66DF3CF1BFE84F0B1966967210DD6D9:DGLD/iFbdLvaiZnAfWrHIW5yJ5SfsQQyjeW2IBQe+zw=",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_062_WayfareMaskFemale",
+ "6B91F0DFD2780364EC6FC5E531665208:sBhYta4JrxcssCLVBkFXeJpKa7gQKHepqu9840vo6h4=",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_783_CactusDancerMale",
+ "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:EID_SpeedDial",
+ "5332028CC33C98BF747EEF82B0384D8C:QxdEIZba2DLRx0jYKm8UpIk/K6eKuclfvDSTllMLLrk=",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo1_B3EX6",
+ "A758D2324A07ED9DE9E0818F6856693A:ZpzBR4QHXooKIZ6RXd8kp7WBPvsY8PQfKPE4bRfkGks=",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:EID_BlackMondayMale_E0VSB",
+ "623074E0279E883B3D226528E72C540E:V4BT7BTnF+UsutYrHzcE2k49K6nNASWtF7HLYA+doyg=:Character_GelatoCourageOwl",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BannerToken_015_GalileoA_0W6VH",
+ "72FCE9EE6B90885970CBD74AA2992B68:UvFcOwG78Bx6kVWWHd3NsSarAeWZAht32WLeqs0Opoo=:BannerToken_003_2019WorldCup",
+ "BC3890EAABBF03778EE82AD7DD4F9C12:RvtEdiKkxLJDnXKUaUK933vzLK04veYzbdp8yN8wmxY=",
+ "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Pickaxe_FallValleyBlink",
+ "82669F5A2F9B703D1A6BEA3BCB922D7D:Leu9rrDPaqZd3izIU+IKpFcP/NNcqSncLkV2lapQL6k=:Pickaxe_ID_221_SkullBriteEclipse",
+ "A6E8A0C1D732A1D028B92BE981E0B8E5:3u9E2vAzuE3Vl8sOG4jzX2RiiA+GFyukOLeOakVOf3I=",
+ "3988E0693BAEB40EB8FB796CF560C182:KjMkLsAOZrfb9xvTWaNmqqceJQz5RSIJwC+1md9kMs0=",
+ "08788A9DA34F4164ADA4F09FBF698CC3:DlhRrdBGDNADUAMRj4oAUwwR2j33Nr2ZNg2CU3i1/Pg=:EID_Quantity_39X5D",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_349_Athena_Commando_F_TreyCozy_Y4D2W",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_347_Athena_Commando_M_TreyCozy_D_OKJU9",
+ "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:BID_872_Giggle_LN5LR",
+ "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:Glider_ID_122_Valentines",
+ "340C0957F37B985956E74242A9487B5A:CiISJuNPymcbI3tJAxIaNfGCcHBr1ttSFr++4c5DQx0=",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:TOY_Basketball_Hookshot_LUWQ6",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:EID_GalaxyLevel",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Glider_ID_365_RumbleFemale",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:LSID_456_Ensemble_BusGroup",
+ "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:MusicPack_106_Bistro_DQZH0",
+ "6450BD104AFF3B6ABA9AA0EC0748E775:DAB0L8RyRz4sVG7rh9zNsKg8MGmCqlsIUr9XM7hVvvo=",
+ "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_506_DonutCup",
+ "30B53CD6A14D4EE40C71C60E9EE0DD93:RFvcbS74Q3YPnQpxUbhafzeiqVYKv6Fxukfi77h2TdI=",
+ "29DCC9CAE821CAF43197545BAFB9CDE1:i9A5h7EdSe56nquoLOHdmUB6HKB50OzHpQMLXDjSQkM=",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_851_TextileKnightMale_MIPJ6",
+ "604C6242EB2BF301BB5D4BC6E3AC5A8C:Y7c2+dviThEDuVsG9kIOjMfnLdJUnPMbdaY5gKiVki0=",
+ "1050DE04C393D98D22D50388175B4834:aFzCQrL5V9QxBU7hrblnr3x8oWjKs7MjQrua/tyBEQI=",
+ "419008D696C27533DFEDB08BE4F6C8F8:5I7VZNrdz8oZdzk1TTNCKkZXokilbXLFy7dQPPPlpuo=:CID_A_315_Athena_Commando_M_NightCapsule_B31L1",
+ "027FFBB49E4285146DA1C5238EBB7DB3:yjcsOd6x9bWnX36cFx2Q3/zgHrCrnuWwiuZexrdcM8s=:LSID_398_UproarVI_5KIXU",
+ "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:BID_976_LittleEgg_Female_4EJ99",
+ "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=",
+ "18657B021FD5011618877BD5D709EB51:6tLEm1BTY8+Go2kUChsjNEQkZJcsN31oLw3AorwxptQ=",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:LSID_360_Relish_FRX3N",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Backpack_RelayStick",
+ "4F53A11AB9CD08FA18D603BF29415366:mq1giTyk7GAqrpXphg9STetDQnhFBS5M1SYEHM7uYqk=:BID_251_SpaceBunny",
+ "B229884F839295B4B9EDC380B045C64B:SVmPvZenzQ5Si17i8daUFyKoOGDtaH4YZtsF1s2XkxE=:Pickaxe_ID_588_BuffCatComicMale_12ZAD",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:Pickaxe_ID_491_YorkMale",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:BID_873_RelishMale_0Q8D9",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Glider_ID_324_SunriseCastleMale_2R4Q3",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Pickaxe_FirstClass",
+ "768A95DE7B657B7B23D5A0DE283EB49F:JLLAz46a7wo2rADQvCkbp4IbKexr7J5bBr6d6toSn50=:Wrap_049_PajamaPartyGreen",
+ "F07BE27DCEFDF52818EE7BA2CD9CA504:lc47A/VahaBWJLQY4V1YyjzJPI5xVErInDaqdwPjv2g=:BID_255_MoonlightAssassin",
+ "2CEE3C1783B9E41EB66238BAD32EFF23:udlTL9abg8LIGytWpERMGVEpPrj9io23R2HbINHtF3o=",
+ "794E59D9FCF36814F264C9A5938124E5:uHr4c9XJ/zNCUImzwZpzrUfQRcZ2j19dLN3CTnKy1Vk=",
+ "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Pickaxe_DualParadoxGold",
+ "86588ED13DD870C5FDBF91B3C739D156:HFqg2udb5qqasLf+D2jzfRahu3HgBZWZN2AvnSUIIzs=:BannerToken_002_Doggus",
+ "CBFF239A1792F25920D863F223368B54:J3N3cUH3M0R3uyzkE0qVK/SouxC/X6VEswcoWb6ViL8=:BID_276_Pug",
+ "E46E6578D28965DB74B642E1CB239A5D:Dg3Oqkcno7QuLDGdi4N4VWSMSAd8bILyJT8Gh0PYjj8=:Pickaxe_ID_597_BroccoliMale_GMZ6W",
+ "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:Wrap_024_StealthBlack",
+ "A2A3968C8EF4EA9F7979BC1FC57B871D:xVURN9OBgLtbyK0ZR4bqMgsZpL/SJjlIXf1WGEpfd6I=:Glider_ID_139_EarthDay",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:EID_Relish_TNPZI",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:EID_Gimmick_Male_8ZFCA",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:BID_952_Gimmick_Female_KM10U",
+ "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=:EID_SpectacleWeb",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Pickaxe_GalaxyLevel",
+ "5AD068EB1D56D87706E44EEB3198CF1B:o9Gp08KD/vgq3RTrUbfGJk7rlfUqZMxoRKPiwvdVkXY=:Wrap_431_Logarithm_F8CWD",
+ "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:CID_A_342_Athena_Commando_M_Rover_WKA61",
+ "604C6242EB2BF301BB5D4BC6E3AC5A8C:Y7c2+dviThEDuVsG9kIOjMfnLdJUnPMbdaY5gKiVki0=:BID_772_Lasso_Polo_BL4WE",
+ "266410C2B17584B4A472878EB88D6892:jLd9anMumGE0jIIBSf8XuqTu729JfnYTesywpeOgksw=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Backpack_PencilCherry",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_444_Athena_Commando_F_BannerC",
+ "C1C31115267D6802AD699472D2621F25:zAyelFy6RcyGIW/9z9IvgEbmRW9pdAytvgBIPb1/kdk=",
+ "21F8DE4A4818E3B01693DF33566A179F:5AoumGhlrt+oAo6XUdRDSGHIp3ndAWOf9JGbBZResfk=",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:Pickaxe_CarrotCake",
+ "D7EDE7B4CE393235BF4EB8779C55D5AE:tvYJfExMmwMpbWXSe8bxfGkpl1wcJv4B/RBjd8qWcZ4=:Pickaxe_ID_728_OrbitTealMale_3NIST",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_951_Athena_Commando_M_Football20Referee_E_QBIBA",
+ "DC953387B24FC2DCBECCD2CCF61BB973:GT4tz78+PbkMtjcHnlkhmwLG7lQAr7EwMEWIgn59PV0=:EID_RollerBlade",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisApricot",
+ "3AD37E40514304F7789E17FEBF4E4C68:4wGt9TLz7/cukkDMtB7Y8HZvi0fXNDMLsdCs6k98OM8=:Pickaxe_FastCheetah",
+ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:EID_Foe_4EWJV",
+ "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Trails_ID_102_HightowerVertigo_G63FW",
+ "480888CBDD75E7F40261A1902989FFF6:l9EB5w/gi/KDjut4Izk3Y4MPLaHP5VbV6iPYsQxsB0U=",
+ "60D2163642133A71A78B16544C01474F:VJuOsZCmZAJ5VMpnkBng02DcQx3oj6Lup2eM4PxA85g=:EID_Cherish",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Backpack_EmeraldGlassRebel",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:Pickaxe_ID_694_SunrisePalace1H_SDI6M",
+ "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=:Glider_ID_308_VividMale_H8JAS",
+ "0DE6839DE97A78F987D7A34D644BB3AD:ZKZ1+Eb+7CpzfLHMqihYVN9+gVQobqBYQW5mh8I1KpA=",
+ "AAB934D179F489B8084EB057031AB845:oJF2EGCXkWP7B1BVK8i4yJzvNtkwXozjZJZv7ZznEEA=",
+ "35DDA69DABF1DE5826348A3CCD0DFE5E:CfhL+/n+phBF7TV4Qpw4Qhqrd6g3S/Gq2sU5n0FiH6A=:Trails_ID_059_Sony2",
+ "854D0D9F4EF33FB4410CB98340952245:wYzInzYpL5IB6dN+rCo6196KgGGo3E/rNeOf7Paizz4=:CID_304_Athena_Commando_M_Gnome",
+ "E50209164841E1829F672AB1B33D069F:1EMTmCTA4cO1QMoLu+RWAGd8Rw4FQdAONKvDwfQeNV8=:CID_333_Athena_Commando_M_Squishy",
+ "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:BID_819_Stereo_TE8RC",
+ "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:Pickaxe_ID_202_AshtonBoardwalk",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Pickaxe_ID_791_RumbleFemale",
+ "B1B800E199A6D4649287C11AE89F67CA:3udFXffIw3c7eM5hljF5mJQA36FbW2PeF8Gx1TcD1vc=:BID_257_Swashbuckler",
+ "41BDA9510489C841C335EBFA5E233CF0:NceSf4zJLAR1Clh17nKGtBrw62kDRE7tJrodbJYMbU0=:Pickaxe_ID_193_HotDog",
+ "DC912741D5C6F75E4B0FEE33D7E3ECB5:0J6tWhEx0Nxw49VokIyykSs5sL5aFPgk2QJn9b5bAi8=:EID_LetsBegin",
+ "06B9F77E165673FD1C5FF5099F43D1F3:Bvw6h4GKOLjC/wFgHQsiLePbBZhtPiNhtr5keDBse70=:Wrap_176_TeriyakiWarrior",
+ "AC44D9C67B1FB24E70D94C827FC465AE:VrHcqJ9hMMqZicx3kS+qFfNXexXR/QA1/1bM+DwgqMw=",
+ "824E9EFFEB0EBD1CF7039D36C4C50E63:84b/QaGkGZxbNBHiYFMCd7AfkhDf1GqiJpyPQ47fFEE=",
+ "EFF73F810AF0A5536912C24E91399CBC:vlBHa/jN2WecgWXwAEROAGpwbobQfMtBU24wD7+gM7k=",
+ "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=",
+ "CD6B95C728B11810F8EE4C396D02EFCA:Fulo/BAgbJwmOju1xu/05XnxLDbenI4bDEb2rUyf5hw=:EID_Psychic_7SO2Z",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=",
+ "8A6DABC9AF8B5FE521D365DB605D0AE0:T721SqBTncYsd8Gej01RnLX6sEaCgJoILnRauHaJz+g=:CID_429_Athena_Commando_F_NeonLines",
+ "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:BID_A_043_OhanaMale",
+ "1DF43E667862B117F72B5F39E750853A:Bhjx3mmVxhvadK5bkT+W9RJ0XAaMHawCnf8MfXIpABw=:Glider_ID_150_TechOpsBlue",
+ "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:Glider_ID_156_SummerBomber",
+ "AFCCB7C08EC6957EEDDAAD676C3D3513:MuovEXob241ie6/RP76ImUk+MExLdl+bszvxCHNtg0U=:EID_TwistDaytona",
+ "0001859EA7AF69EF10A6F7921DD4DD9A:3M92MlWo2b1V04mxizc7cHB6TDP/UInspfWR4yT7K3g=",
+ "7E9E6546A8C7109E9966F9C010D794A7:/hJU9SIxIewJ7taimArAwTbbuGG/4THrKvMElcTMzI0=:EID_BurgerFlipping",
+ "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:EID_AntiVisitorProtest",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:BID_441_HolidayPJ",
+ "23213D7D8F739DE37BCA56557073DA51:hmmf08PTLeIAJgxwHIFI131jzcy1SbirW6EzJtm1teM=:Pickaxe_ID_778_CactusRockerMale",
+ "E1B1A5908EF6377D7FB29F776486A6A0:qaZB3Q+6kKTtlO4aGWBsnjSxCwX3kmr8oOF/2QDZ2qc=",
+ "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:Wrap_387_RuckusMini_6I5DM",
+ "0EC19805A48534C8892FA21C75024971:WcebSI5r6bMgSAbNd8Ob187rYmIJFJciobdyQciRiSc=:BID_345_ToxicKitty",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassTransform",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_913_Athena_Commando_F_York_D",
+ "1AFD764881D1E33FDAA65707010712AD:cbKyY3ux6wrdiWz2dXJq18KJaAYmUgBZ2aZsfz1UE3M=",
+ "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:Wrap_356_GoldenSkeletonF_FT0B3",
+ "5E2A3EE7CE3884E31F58D83485D8B122:U++ePc5N62iMtEbjrJGSwNCaWeR6UoNMtWS85zJHwns=",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_241_Athena_Commando_F_Grasshopper_C_QGV1I",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=",
+ "F00E08CB606091AEFAB37D9B0A01B833:uEmoAK5xdbd8KefVf9o7uJiGcGTYk2r9QevsGe4vBII=",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=:Glider_GalaxyLevel",
+ "E28AF2E3BB7EBBB69D962A15879E696E:hJE3fnZPwRmG8XIw+RJvVsCh9dOHDD82VAhvMbi+nvs=:Pickaxe_DualParadox",
+ "00EEB0CEB7585E8C69F90EF8534CA428:gSddavzl1D9mSi3KgCoXjX3eb5Dg9Rqh2C1pt6rD5rk=:EID_MyEffort_BT5Z0",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_346_Athena_Commando_M_TreyCozy_C_7P9HU",
+ "C97E930BC95DC795F4416A7B93E3B9CC:KxRPbXqD3ytwLLbZMbZmn+G+gjwOUljg/7HPjj8xP0o=:Pickaxe_OceanBreeze",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:Backpack_CarrotCake",
+ "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Glider_PowerFarmer",
+ "AB8487812A4604F9FC59CA9BA2C6C2A6:NU3/1f+LToY9Q32OAh7aDnBlnR7Wljlj/PbYdVibtso=:EID_Lineage",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_005_Athena_Commando_F_GlobalFB_E_GTH5I",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:SPID_333_RustyBoltCreature_ZGF9S",
+ "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Pickaxe_SpeedDial",
+ "77B485EBF8E72CC8CD19F8646A6D0491:SXUHJQDuxBGv0PzDtuVsDxNyubG/pgH9s9FMvimS0YQ=:EID_Noodles_X6R9E",
+ "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:BID_246_BaseballKitbashMale",
+ "97D5F3D0A78B050F427B5B300FC03EB5:Be+eZS6KqUc5Lc2iF4YAcLEe+S78nuLCK45HF/dDGDU=",
+ "5C0BC5E8819B8968CF25C60885F0CB5E:E52Ld2gtMzMFUMkdMpjNWmEHEgr1qnH+iliH2ha27dQ=:EID_AlienSupport",
+ "000A05AF03AE10ABB2059F29ACBF7D4B:3KrmPu2Ha/X0oy/MWd0a4O8JhJWli5MdtfG4XzeB248=",
+ "5950552B5A52A97A433715A1FF107BC4:p9RBdPmk5295pRSg0+Ybfwy/kqY6HBYiJEAkvy650O4=:Pickaxe_ID_127_Rhino",
+ "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:Glider_ID_319_BistroAstronautFemale_A4839",
+ "A3254C97AE656A9B7301225E06E6B58F:tnv0g+8KyEy6IGYAl1ssmNI0uYT2fEP2twZkRnbIhbY=",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_940_Athena_Commando_M_Football20_D_ZID7Q",
+ "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=:Pickaxe_ID_820_SpectacleWebMale",
+ "F6838AF4144E8386A184FBB0823C15D0:IjzqnnHjZ+r6WC4He/JawOyR7LxeMbm5880cDGDr2eU=:BID_232_Leprechaun",
+ "2FE8DBD09F14AAF7D195AA73B9613792:KwIehLEKaCSJb5X/WcQ9IULKkz3G3M9f9Z5Jgi9hYUU=",
+ "2B245B0F4DDB6AE9929DEDA081BEA512:lVz6HM71lNhCrT167xXv2wjekx+NqrJcy15i2+w3FdE=:Pickaxe_ID_152_DragonMask",
+ "A7D34E80FA70CDD2F367DBEF93B98467:KVErbMXsQqx7dxrZp5Ara4OVlA17pc29E2SZlFNipPU=:Pickaxe_ID_218_StormSoldier",
+ "315315A3A02AD685390B8D5878BE527B:Te5Ku+QdVzpXNd0B8XN7T/e1YaV5PyR04Z9yhfMFatc=:CID_465_Athena_Commando_M_PuffyVest",
+ "D50ABA0F48BD66E4044616BDC40F4AD6:GNzmjA0ytPrD6J//HSbVF0qypflabpJ3guKTdX4ZStE=:BID_115_DieselpunkMale",
+ "0690C12E471B0A42CD02549ADA662D64:Ntgy1QBz7O7CswgzsqOYwoMahjG3hGmk6/Qh4/rs+dM=:CID_273_Athena_Commando_F_HornedMask",
+ "EE0C67580F774526D46A64757F5DE77E:qRq1DPp8GnsFZSUYR1PJKeKm5YXAg3Kyd5Y+pjtXZyU=",
+ "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:Glider_ID_097_Feathers",
+ "9944BE1C4E9D73E4FA195380EF0B7BBB:LQxoRi0ktKvKMLk6hauL2Gzs6zf5bcEk3mgfX0We/uc=:BID_214_LoveLlama",
+ "90641BE26C6A325EB05DA1FF911EEE87:zDYeE/nTlO8I38ziKo/q/ssv3w2fHkWnDNn6mw0ZENM=:EID_Reign",
+ "D24B0606E503B97BFEB8EF12C6F1340B:wCF6GzuxQSxUX9I6eFwGJL34gU7YEPTKrZOOL3sPL3o=",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=:Pickaxe_ID_792_RumbleMale",
+ "5E15C5486CE8E539552D4D3E7682F9E2:+L/tTz+woDFZJEvtxfq8m8tNI1R72sYK7rnYr7sHTis=:EID_TeamMonster",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:CID_A_433_Athena_Commando_M_EnsembleSnake",
+ "E582349045884D5CD6A5518608336738:EuwTH/5P/6QUfbA3n5kc0wUYy+sI56+mNDYhIqheL4E=:BID_142_SamuraiUltra",
+ "F6E92DDBC70C8184E837D31905B2F2A7:UCSPatT+yv3YH2x0Ks+2GSXhSSu+3ZvZs6Lai3oOi0Y=:Pickaxe_ID_659_RuckusMini_O051M",
+ "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:BID_863_Tomcat_5V2TZ",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_302_Athena_Commando_M_Slither_E_U47BK",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:EID_BlackMondayFemale_6HO4L",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_351_Athena_Commando_F_TreyCozy_C_A9Q45",
+ "0882DAEC4F7823551C4955BA25B8AAC4:kGljCDpbMnCIfeo0YBLpBKDhX6nLlCaZRe62mSYSPTs=:BID_918_RustyBoltFemale_J4JW1",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:Wrap_383_Buffet_KGN3R",
+ "8566FD040AC2B245597E11D1F85DB4E5:SEoqoweofxmXfxu848wKn1UJhwU7oQ2w2F0lBst+FnU=:BID_658_Historian_4RCG3",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Spray_CoyoteTrail",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Character_InstantGravel",
+ "067A969CF775754BBFE2E44B015E62FA:nEbEvfuaSpoAbL26ItFWDnm8LozNZwHwRjHqkEA22ak=",
+ "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightHero",
+ "57F31C09F360B5B96F6BF142E1E6A094:wkWZW9rtBPZSew3DP593yPFWKUNRXVwVl5wUGh+rLB0=:EID_Spectacular",
+ "A34195EF9068F0DD323EA0B07305EA47:eYcw2YEjssIAsJMgaWYPQQCBFcRvvkj9WoRVV+P3cBo=:EID_DontSneeze",
+ "29B68199D0CD6E019BA8175561F4F076:aA+14qhwCm5cu/+LEzB+tLlZtccgX7H3N25Ky41Me3s=:EID_Chew",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=:Pickaxe_ID_276_BlackMondayFemale1H_1V4HE",
+ "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:Wrap_051_ShatterFly",
+ "4969808C5315EFB4839F94626ECD600C:rdEEmKdvnm0+EXCNE8AaL3XOvVWfLdMVOfZYKj4Kzwg=:MusicPack_131_MC",
+ "8AE930B0D623C1C2B3926C52ECF6250B:uwtZv87e9DU/Z1ZvYB7Pv4TdRQ4/ZRT9nYJCwYSmlbI=:Pickaxe_ID_605_GrimMale_8GT61",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Glider_ID_287_Alchemy_W87KL",
+ "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:BID_154_Feathers",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:BID_634_York_Female",
+ "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:BID_130_VampireMale02",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoar",
+ "486AE200BAEBA71EB6C477BE323066E9:3vS6pm2ep50Ab5lzNnGMluM0KYJFiUbp2MuBcahuiFQ=",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=:Character_FirstClass",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Backpack_CoyoteTrailDark",
+ "D2016D80822A26E49A7365FE575FC8B3:DphK7hbrbnvQGCGhhNfCpe+bDPl5q1w1DsaD4OvJgOc=:EID_Deceiver",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Character_GreenJacketFNCS",
+ "B77D921A94CDDAA841609065AE4C7BC0:SLDMLjxWpK+h1P4WNnqlixpWwujuV8OUZw+NoufV7sA=",
+ "CD6B95C728B11810F8EE4C396D02EFCA:Fulo/BAgbJwmOju1xu/05XnxLDbenI4bDEb2rUyf5hw=",
+ "6261EE20A79577BE9F3CAED16BE29CF8:539o4DrU0Wfl7SNWEO2im8/ZYoL7CBJOvz+3hN0cc5A=:EID_JumpingJoy_WKPG4",
+ "59AF6C46ABB214024067564F69D6EA37:NtUgzeFVvkbyZQGRVdteWV61HjED9MXquqlVKHo3c/M=:BID_605_Soy_Y0DW7",
+ "8A154454D5B98503B341742F927C2457:grJh5qYNlPy1eMO4+to3Moy+a6NCMnXyGSAFUKKWY5E=:EID_Downward_8GZUA",
+ "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=:Glider_ID_368_NobleMale",
+ "F395571A36D2BD888861E61EEBD45AF8:D/35GPTIOKbdfmpxRJmHTkjNXcWv+XdSmTxQt6z1hvI=:Glider_ID_277_Skirmish_9KK2W",
+ "BA6DF4F82C5CAB3CE1C51156BFCACE71:SDOlhnlP1SENGT+SrYUqeGIz0TkgoM7dQjfmfxegb1o=",
+ "A5A71DA2F913ED0FD001BBCEC58F97FF:gFC4LJXINTgSLc8Gd6tYuSmuLHP+4AthS6eF52C93M0=:EID_GasStation_104FQ",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:LSID_431_Cactus",
+ "03FBE2522823B14E3BD161BBCDAE4A85:kvHfxKURiw97DzzEt5xAUxVMFfxGya3Xw3kI7ORGEgM=",
+ "2BFECCEDD463D908C63438FD751529BE:u3hXyyjFecUwcUQIugiOjqwSJhnhy/cluvLBwlUhSC4=:CID_401_Athena_Commando_M_Miner",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:Pickaxe_ID_222_Banner",
+ "F33B69585B65C333655C545A038BCEE5:0+gUoAUkiBbY5uqO9rIehUDkvrr/PY3vBY16AMHQASw=:Pickaxe_StallionAviator",
+ "9AC78A87102681DA9D49DE0DF70149AC:KB83Xg43Gu5sv+0qlqvvmfySycArKgAu5uGHmMu3dUs=:EID_Affluent",
+ "A062151202F2D5FCAD103D17B9300CE2:JiiR0xFNh20CRLDWN/tfjaeoo2ybApd1hQB364/iuTc=",
+ "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:LSID_373_Nucleus_TZ5C1",
+ "9481CF79929F97F77D8F7D2607B42A6C:E28flW2DKtXyXBh2I7qs7VFKBFSkpgjkEDWIruQfVL8=:BannerToken_001_Cattus",
+ "BB59BEF60B72A241855EEC0FD63154D9:ZAQI6o6tkjRB6mh7VwOsf0x9DGyEAbGZ8qlUxS1fVm4=",
+ "FD0C3696948675DC3C2CBF5098D57D0D:rBWyTh/AVyZxi2oiQxM/OeD/HYZOSdVidEQeKoowV6U=:LSID_296_Cavern_60EXF",
+ "134343D31031634B122471F73F611CBC:zqtMGKxH4+Ydcx+1mHOb5DIMYxctpm2nKqXp8c5hH/0=:Wrap_076_CyberRunner",
+ "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:Pickaxe_ID_251_MascotMilitiaBurger",
+ "3B908C605D83AEC6E8E0F9BF6ABA828C:IyB7RIUMz4fcBekrFspRvR3QIuCPJIY2vrDmsIm6Sf4=:EID_BlueApparel",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=",
+ "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Backpack_DarkAzalea",
+ "E04FBD38CB934DB1363EF57C85E48F9F:E+/j7zhGIdHODfCdH2vh4rgGRYSssFpT/s6dlus9Csc=",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:EID_Galileo2_2VYEJ",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_852_TextileSparkleFemale_X8KOH",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:LSID_358_Sunrise_1Q2KG",
+ "1A9B01B59F609C0D7E9EF7887DA23087:EkQdXhPD9Je6Bp7dlwZdlkX2S0har6vqUOjMIF9ndfc=:Pickaxe_ID_832_OhanaMale",
+ "0E32ED911D1D1D67115812FB22317555:4qQbE3qtFL+oTEzvxYIwl2H6AsG7z1/3zNO9JEdHOd8=",
+ "687E53607C7004988B05C9EE1BA99AFD:jYmAGdz5vAvDRIhrcVdrcCNIPEmkJg8L1vWs/HZ5Kr0=:EID_SmallFry_KFFA1",
+ "C182F32A4B301086F8EE1E49B34C502D:g4VO8e/8Xk1+S55wpg/gmymEAYj6N38qXnvWSaYtER8=:EID_Shimmy",
+ "D48BB37F98A9EDC6639CD34F0F277359:DuO9M4Czd0IIf2jSYsk9oooSGKNK/r4XX0fA9d6j8F8=",
+ "498A4AB4BC3BFA9B055CDBE833C51670:67ndB88hm7gomLYiklekB5rGWrcr8RJ6K+no9DTP87M=:Pickaxe_ID_372_StreetFashionEmeraldFemale1H",
+ "CDCC968B6DEB5D05990F5D530A4B19D0:gAiLmJxr4FbEf/L10sgHjOLE8DEy7kYdtk7DJcgjPRM=",
+ "FF5A507BCC4519B928075C3DF4603E8E:EVv5b8WFOYZlDUGRqb8YUS1WbIbbT8TjgoBWEQr65zs=:EID_IndigoApple",
+ "0D8B24BCF7F9C0293FFE1264A5D05613:v1sCSrsgI0QbNZ+4v5lllwW1n7M9dagX4GsxY7/oR/4=:Character_SpeedDial",
+ "A504A381A11922EACD522BAB09F60577:Fyrj+mT6zQCfA2tvIqzm1lNM2dmN8xtvZs/Airz9ZDg=:EID_Undead",
+ "AB10C0F1C99E5A6E4E477300FBD5D170:tLrb56vTjn3uiZIRhHU+RYygmirLzGglmEdI4DqfK4M=",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=",
+ "F62A404ADA885AF5A67C30DE1F03BBD6:zAm4CsxXpE6vMhsqKwj2Cce+asNmSAv0IOo/pWVySmE=",
+ "2E1C06DB5781755F3F06D95B6612BB3E:aTN33nTPI+qQ+osYxcMa4FjlyajAzhIxRzEcoAr8iAI=:Pickaxe_ID_546_MainframeMale_XW9S6",
+ "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Glider_Elevate",
+ "B0030ECDA329A8B589D249F794EA90B3:BfF0FYJQJ71DMUBmClT0DppsOy+1Syn8fGu6qNtTgXE=",
+ "F51F080981F8DC32B09FC3C62A977363:NqX2i8P3ayVe/mUk8aAqzUg5tvMEDWt1URv6xc4fUkY=",
+ "28CBBF705C9DB5A88BEC70DAA005E02E:FvtzBBvDkyj8PRLW76169bMFvg65VojYrSmkjUAi4Bc=:BID_352_CupidFemale",
+ "B16BF216C9085E63B70056FF0459F87A:xKQqQkkw6VWwT0pk7eKzepG9HM9kzi2ZPwSbdLWtpwI=",
+ "AC424209DFAB55305097B2050E16E2E9:efXu+MoloNbSOOHz8X4ipvD2MhSMWpRCaEOVNcdLPrY=",
+ "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Pickaxe_DarkAzalea",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:LSID_323_Majesty_0P2RG",
+ "3CE25AC56856D0E10426276F61265547:NEtVDXR0qoOfW9lgdS4AuA8dkfd/1I9degcRI9UnvUo=",
+ "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:Wrap_070_MaskedWarrior",
+ "7A8E25F664219ED6CCF3AB1658D0E557:TV+yyWpI3iHJoaK3o1t6+/uhN/sFZ1OixoAx0n7MtjM=:BID_330_AstronautEvilUpgrade",
+ "F60CFFFA32CF6A877B50DA7F0A88326E:OWIopbB4fxaobofPI9lF9hn6BPG9NVLp4Od61uQppfo=:Wrap_047_Bunny",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Guava",
+ "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:BID_202_WavyManFemale",
+ "D825771F72189E14464845D8BD1AB447:gY+Eq3AUYqA6Hhv7OmY6uPEe9PJ76I1goAxX/Y3bALY=:EID_Darling",
+ "3AC281E7A5EAA2765CFE02AC98B04FC8:R/hWNn8BcRRovJE/L7h15VDrJ0H4VqBBVt6XVvq2Ebw=",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Glider_CoyoteTrail",
+ "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=",
+ "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:Glider_ID_251_TapDanceFemale",
+ "A69EA08281B5018543EC525AC7716B70:1W0iCKEIuEfDSOaJfl4gQEpenDKjLQGAovP3LWc/FTw=",
+ "BE6386E7E95BB83F727A5282D4E1FF37:FsEC/J/Y3POX7wa0/+SonLUCp+u+MH7dktA25PEYLns=",
+ "419567181C57991B12DA9A9AEADAE6DB:nWZ+G2GG0PvarQUg/U/kRpWaJkA2YmmCgixEy4No+7Q=:CID_706_Athena_Commando_M_HenchmanBad_34LVU",
+ "37B3D2284CB3924E6592C2D1D11451E4:CMJclyQ1I9iY+VkDiajhGxxYQmZGHrTAlEl/wtlT+pk=",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:Wrap_348_Alchemy_FYA4I",
+ "D14FDB2BB2FB7746797F25470913BFF1:CQDgIxcNnAoUboQnjafZAYvV7UqX+NefGTXFd3m+oFc=:Pickaxe_ID_708_NucleusMale_72W2J",
+ "216D955070ADAF10973BD156897472C3:MjQh55OvnJCoVMQzMU4C/1NF3FWiXDXnJ6G/EcHfUzo=:BID_258_AshtonBoardwalk",
+ "DC8B99FB6774F84C4C0AA8DF768B758F:Rt+er5PzLdkCFk6oyu/T7AjMhYb8JT78rqtXXk9bIDU=:EID_Aloha_C82XX",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Glider_ID_377_EnsembleMaroonMale",
+ "768A95DE7B657B7B23D5A0DE283EB49F:JLLAz46a7wo2rADQvCkbp4IbKexr7J5bBr6d6toSn50=:Wrap_050_PajamaPartyRed",
+ "8CB3CD29BF1611B7CA90D1C635859415:s7gVGQuQz2CDwqNda6dXQRqH9mpV6NUFu1zaoDihQYU=:EID_ChickenLeg_TDJ0O",
+ "419567181C57991B12DA9A9AEADAE6DB:nWZ+G2GG0PvarQUg/U/kRpWaJkA2YmmCgixEy4No+7Q=:CID_707_Athena_Commando_M_HenchmanGood_9OBH6",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:EID_Sunrise_RPZ6M",
+ "8022BB6AFCA2733E261C32590EA86E9B:HzKZXV9sQfjsDuGuGRfpabHawomJhu82FeOaEQDg1lM=",
+ "E7D27A42770632B7A50BED813D9B1696:bxADNk9dmPNeKEuSvJl44teif6sHvs36yBZ55E9fhwQ=:LSID_420_SCRN_Snowfall",
+ "CDEC0DDD7FBB9465CA1B5C0FE67C36AC:tBWLPUzHBjzieUTAFdO5T5D5saCWqEs2zxz7rBTju7Q=",
+ "AC6F67B037F362174DD4DCEF7522D107:s4kP8pRC49WsLsc5Nlh7se3l3x57R3KrldkoTK2L8PU=:BID_301_HeistSummer",
+ "D49757E2D55451A0D5B341906FE2ABE4:PWMwnjgi/wUDV+yxg02QsU33jA529fxVTRHyqnkv21c=:BID_259_Ashton_SaltLake",
+ "591DF838AC4B3A6350E40E026B26D5C0:MBvGoHxJQBTxCm2V82s2yHqRWPsYdFyj8xKUhFsUkyE=:CID_746_Athena_Commando_F_FuzzyBear",
+ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:SPID_325_UproarGraffiti_QFE4O",
+ "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Pickaxe_ID_801_AlfredoMale",
+ "4BA0D73B76DE3321A47EC0AD052C1F7A:7kyz8UATQKwRKVdDwe8RbhYYeJPQsKLGdN9pl4MOosE=:EID_Marionette",
+ "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=",
+ "452BEE39B4C18C93D6B185B565ACA1CA:Be2Oll2p0qIXmiJMi4Y/wyePY+WefMmJyCzjgjrzkhc=:BID_233_DevilRock",
+ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:Pickaxe_ID_699_UproarBraidsFemale_LY5GM",
+ "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:BID_532_HardcoreSportzMale",
+ "310CAA852300A8ED2B74754EF027C823:CbrsdQ2vpkgVe0Oc5HlGFLVkV9arQn928vHSnPpSxbk=:EID_MakeItPlantain",
+ "AE04BC41397F3D492390E60E59B39CAC:xC3e/4BfPQ5/xQqEKnB+EgmzrOcLiOCqiQCuZB6V9Ac=",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Pickaxe_ID_749_GimmickMale_5C033",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:EID_Scribe",
+ "A02E08C8CE48D4D8676358FF7BE55533:d9wA4snpl4I4B4zZFxWyu9cL9zSkXqy9+vTw9PUhHlw=",
+ "498A4AB4BC3BFA9B055CDBE833C51670:67ndB88hm7gomLYiklekB5rGWrcr8RJ6K+no9DTP87M=:BID_494_StreetFashionEmerald",
+ "F707FA321C9644351C5F87893C16580F:bOW0W1Al3NZZGbPupvIlLl7wWgBA2jPtH6SZO/fjdy0=",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_905_Athena_Commando_M_York",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:Wrap_396_TextileGold_GC2TL",
+ "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Backpack_IonVial",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_652_Athena_Commando_F_HolidayPJ_D",
+ "4BA767BD2DC06D215B435AC09A033437:QOfpKnEogmj0tTa5wf49SZH55Sy48QEGP02DbkSg218=:EID_Grapefruit",
+ "605CA1F4F68E09A4A0784DE3D6E9FB88:TKaxKxc1yoVFdUqQNWdG3bofE78hwuma5x5Go2dnLxQ=:Wrap_IonVial",
+ "F6CD3CF3046D856E3934D86042C683A9:s2pBk3DSUjPJehrTQH4iEDYiESVbSMwIW1xuOd2FZJw=",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_914_Athena_Commando_F_York_E",
+ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:LSID_399_Foe_AN5QC",
+ "97E91E4F436B598D654592793B595536:Pj0lxheibz4Db/C4ehhHGlOalLQAxFCS+2NYkHRbjyQ=",
+ "0A43BFE2D06B46248FC6598C0371D5EC:+U/nWLs0mNQue0yVc9tTaRF+2qrvzdKZyxUR+MzTvMc=",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:LSID_400_Keen_T56WF",
+ "9904FE82E1630F9BF753E5AA195B4E1E:ScugOdDnT2N47PETOZ8B3MoDlg9elYb+ePzsZGA3ryI=",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=",
+ "F9AF8CDE150D2D1E65B64710D70C23A7:3SpHToTu2E//Qe8Dhu4I3kG5fLqEemMiL+2NxRVKdOc=:EID_DuckTeacher_9IPLU",
+ "99E94152C1F777A1D8519A532741EE40:3TCGPeLF3mnH0j8LE9oLwYiXHMve97rw7Vw1OQcnczQ=:Pickaxe_ID_762_LurkFemale",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Character_HeavyRoar",
+ "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=:Pickaxe_ID_648_StereoFemale_0DTZ9",
+ "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:EID_PowerFarmer",
+ "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:BID_300_DriftSummer",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_912_Athena_Commando_F_York_C",
+ "74245D2573276B4C9ECCF61B23367A72:I5LtJ72UAlZ9XIupxkzRJKiRnSEkEvEc5D8+Ss4u2Ik=",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_298_Athena_Commando_M_Slither_EJ6DB",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_HeavyRoarCarton",
+ "2301C91045828DBFCDD966BE1AFE22F7:zS44RFNKoS6+WDSfin7CebOMjLH763+OGG5wjTrCosc=:CID_274_Athena_Commando_M_Feathers",
+ "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:Pickaxe_ID_746_ZestFemale_4Y9TG",
+ "958DC719715C145004E1E028E72464D0:ZTCrQKaSpw5dAyqyW/jGz+KF2DlvSX8wCW5/4dhdFT0=:Character_RedOasisPomegranate",
+ "3ECF85734CD277EE10524DA249C5D0D8:4NtGfZpXGCuoEqpaN7C2kInVtLVwQ9Zp3zj4vtwxtv8=:BID_211_SkullBrite",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:CID_A_173_Athena_Commando_F_PartyTrooperBuffet_55Z8G",
+ "925BD833E71FF05FB73136BF57189C5C:WsXZpM/1+PT+xzorL685J5XB1dpvv8IOpOeeA2Rl1zE=",
+ "D24667CC40ED6564CE26A31E63E327BA:OnghWyLG/IQEx45PtmEcmqAHuViWUsTSDQ31EgRhyZM=",
+ "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:Pickaxe_ID_683_CritterManiacMale_S4I63",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Pickaxe_ID_822_EnsembleSnakeMale",
+ "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:Trails_ID_027_Sands",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_A_002_Athena_Commando_F_GlobalFB_B_0CH64",
+ "46FC5EBAD39CE53EFB215A2E05A915FC:H3gtdkEzT3Dk8vkwTTZE9oUDoJEy6vmfQj1jDo453gY=:BID_256_ShatterFly",
+ "9A3C083767A87B837556F6F97B75999C:NsRKnsTck7rKidUd4YH7UXflwaxXSN6RlIOGqAdoV5k=",
+ "258D945630DF6E1016889F47B16EED80:zQ/4osJ36W0V1DFXswf8JSStDMBTZPQ8oFcMrDqS7BM=",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:EID_CarrotCake",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_947_Athena_Commando_M_Football20Referee_IN7EY",
+ "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:EID_Jupiter_7JZ9R",
+ "0CD312F730BA9C3FD6CD67420EDDACF7:nXBDxcWYx2VtjMeRCDfSak9+f9aSOgrcxp8GKeUiId4=",
+ "BE20AAF89FE897368E52AAA193DEEB53:jHRZho9v4IKzFzk51RD0nAVFCZ27vIwcstPkdQeSupc=",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassRebel",
+ "9CDB7E60150C8A93BF60EF4983D2A9FC:ZMGOYjalLZw3m4wFDi959WW6vlbIAQDqcnRVgylEej4=",
+ "ED61A5415E40BB0A188CDB1DA91F22D2:wGuFJQg1ldthApzow1drpoq6i40AzOsoODCI5I/6JSA=",
+ "359567C8D8F146C8D08FEF2B24AFC9D0:yMWg8m0Eh+0UGV6CgIWrXsJMPT/Ww8/Qa3RlYPo/bGQ=:EID_BeHere_8070H",
+ "91C415954BF27B6E43970FB8A75FE8BB:YhHyxIA+Ru33r3pThiWqKNYdvDbL05yXSxKarRuMSxw=:Glider_ID_103_Nautilus",
+ "C015FB76A9E7912825A5F9CA69671961:4zfC1uF8ll4CkTBctitVmwjHsazAiz2LXPHIPj4ef98=",
+ "819F658DBDBB5D333430800891F28361:u/+kuv6DsiUouUOusRRfC8Ti5rCKhsgIyxyOnLH3Mh0=:CID_719_Athena_Commando_F_Blonde",
+ "A3618360BF2BE3C452DD4E212CED6D0F:hnD3/2LtfP4Hso8Ym2ZW4Y4G0y1EDvQvYvuTCozikoM=",
+ "3DB93E023E700ACD0C78072ED4787D37:aePdzcjsQvnpefA3P/cKfnZrVspZ5QVSsAc+Rui20pM=",
+ "E50209164841E1829F672AB1B33D069F:1EMTmCTA4cO1QMoLu+RWAGd8Rw4FQdAONKvDwfQeNV8=:Glider_ID_118_Squishy",
+ "360CD59F6F7B68A441DDED9DB5FD13D7:G6pVAf/ul1HPYh6s2M1l8G4hn62jdwkcbegeLoxL7Y0=:LSID_364_Ashes_0XBPK",
+ "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:BID_531_HardcoreSportzFemale",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:LoadingScreen_PencilSet",
+ "06E3CB03E94C4D850CE185166706E868:jDuRIbxnZBnAH/hUrfRX3qnGyIogSWUHrK6nq7Et3pk=",
+ "2E1C06DB5781755F3F06D95B6612BB3E:aTN33nTPI+qQ+osYxcMa4FjlyajAzhIxRzEcoAr8iAI=:Glider_ID_273_MainframeMale_P06W7",
+ "89D641BBEFFD9A227200861A01807ECF:rXDTm9JS6HhLBHIDXPRRF/eERp1DkUhV46QPxevqMWA=:EID_Comrade_6O5AK",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:Pickaxe_EmeraldGlassPink",
+ "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=",
+ "06672238D711A4FD743978B86CB0E0C7:c8ILo8LfAtcO6tUoX1BdrnptTcPhKbiZ069jkvq4UjI=",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Glider_Schedule",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Pickaxe_ID_737_KeenMale_07J9U",
+ "71C3BFE2AF0BC8DE7BC3735614CE6263:hNLsvUTUw0cw1WrfOEjm7oSGPfpEZer6R0G7F2El6Q0=",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Character_RelayStick",
+ "01BCAD21B42507D45972A0E634D3BF68:LFzYKDNwUHYxLThhPKfnzmnADCwCZFjZybIL9TaGBkw=:EID_Deflated_6POAZ",
+ "96FD474CBA52137DC5ABF658BE17C792:ZLWvbUR7Xow1GUNjC9Mxg7DHVoJAnBr4b9gSzmyFcxU=",
+ "552DB214510DE1E24F08920F80B0AEC5:GP2CYv9xYYDf6bOnpgm0fnOXa3iI0acXH02ZIaHAElg=",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_082_Athena_Commando_M_Hardwood_C_YS5XC",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:BID_922_SlitherMetal_ZO68K",
+ "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:Pickaxe_ID_213_AssassinSuitSledgehammer",
+ "922A62BF1FB397B890EADCC9ED9E6F90:OvZzqErOUkh5FciEJD8JI+lu4X5NmK5TtzvCK6F5RM4=",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=",
+ "99F8F15A893B9B4BAC2E12BFDCE251B9:1OMIfAluyzGr5kvv03niOQMXp/D+M1s/f/mHTv52Prk=",
+ "C17D1F224DBE7ACE1D1D998F9EC974B4:lKF1wmYGidWP6J4irSLvW13QbAIwHPOeO8b7LtP88t8=:CID_303_Athena_Commando_F_SnowFairy",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_448_Athena_Commando_M_BannerC",
+ "9FD68EDC1A5A456225A1C14E1488C573:vfIZFBmmSWgvzSDG/l7N0EGIrANZpUKA7Ofqo+n4fBg=:LoadingScreen_MercurialStorm",
+ "C97FBD76436AD77913E727A0AD147FEB:NjQSZ0Lg9LaEhDjA3TeS1XUhN04KM2wQvR0j/YPmQu4=:BID_181_SnowNinjaMale",
+ "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Pickaxe_ID_389_DonutPlate1H",
+ "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:CID_466_Athena_Commando_M_WeirdObjectsCreature",
+ "545B9777127F4BE242F802C627356B7E:RNI/KvLEXcGoGnk3/AKaYbyJmXMtQl9Zmvl8ErePB4g=:BID_874_RelishFemale_I7B41",
+ "452BEE39B4C18C93D6B185B565ACA1CA:Be2Oll2p0qIXmiJMi4Y/wyePY+WefMmJyCzjgjrzkhc=:Pickaxe_ID_176_DevilRock",
+ "204D49F063979C3AF87EF896D074D1CF:SaYFk+GEE7mL4dsgs0v0VGR5ER4TwH8uTNX5XqSglu8=:Pickaxe_ID_500_TapDanceFemale1H",
+ "793D221E5331282DD7F3681100944880:B5R64E9EZQD1lHmmyUV+9a1XUEOcYfdopJ3avEIcVxE=:EID_TwistFire_I2VTA",
+ "73FDB8F2BDCCF4518225CB3E28DD9C0A:MBo/DO8mLebMquZPCgeE/FgUdJOXASKVjIJ1H+IEPac=",
+ "456073B2B8FECC95083FD5C9C86ABC13:Aay13OiHLmgTZgGmgOkfwUAFR/6RK1GsKNazgJ3AIMI=:EID_Factual",
+ "00BD73648F7CD05EDE0B2D4C33B499BD:0D3XSX1KGIR/UWBELcxKxJp06xbU96TetFY2Rz9R614=",
+ "BDB776E27E5002716EFCCF94F23D1B19:UkCfjAV4SKCBjTvgHIbHc8U/uAWI63ysU1ST/sy64+4=",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:EID_InstantGravel",
+ "9E7468047D1781BCB546D5AE215B5073:EYWQj4jWQQnEZ6i1eKfW47bvGqK0ZNt7KFzQO1P6FU8=:Backpack_TimeSquare",
+ "B9C9B09F29DF6BC9DA94C36184CECFFF:1/E0M5TV90UjL3PR+sqOzaRiMRpF8ByTmfVayVEL/Ig=",
+ "C73DB27E321E8B5D3747E2209CED62F2:sL+26G+2SaePYEPgaTi+UwMkAr9RfmVl3QK3fsLfd30=:EID_TwiceBaked",
+ "1CFA91F4317CA2724E2AD9A098B2888B:op+720ix4L4JmxKqwXbOt+T5Xwqhcva7c6lETmEVCbY=:EID_Shindig_8W1AW",
+ "4D896B93DC5B2D18AA2949EA7B67B4EA:0V70x6p0zRRV9bV6P+sq62lM0CdW4rvUgip6/65GWzc=",
+ "2648ACDF6B7E55495928F2319101BB8A:tKha+iiFKUamRIWCxq0gOtbN/G1B5J5eOIElAx9T3rc=",
+ "4C838738CDC4946786DD7BE341AB05DD:eyjCm9OcFQSvVRVBZizNVyF+8kb9OlNFrvDy8d1QDfo=:BID_253_HoppityHeist",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Pickaxe_ID_787_LyricalFemale",
+ "A9823E3BC8FF6814492A2DE0334F124B:wyyFD2WOtsgHbGC4RNkEvLFNgbZWhRmcu8lQHg0UBFM=:EID_Concentrate_0W5GY",
+ "8680408E4982495D8EC65D930CE902F3:ZIoca9gNSMll2u3zmmEsMFSAp2pTmsvWIPWwz2b0FsE=:BID_188_FortniteDJFemale",
+ "3D8D56FDB72DACCA7E656FBC0F125916:gMX76nmLV2caz28Ro/i3FatCU4tdi1jHgJSPbdnLTUc=",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_937_Athena_Commando_M_Football20_UIC2Q",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Wrap_RelayStick",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Pickaxe_ID_748_GimmickFemale_2W2M2",
+ "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:LoadingScreen_FearlessFlight",
+ "2D24182706636A7BD3E96AD37605BAD6:jEZJE+EAU7VDo6p6Y84e4+p3AHxYBWin144H4MhzaSQ=:BID_553_Seaweed_NIS9V",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:Glider_ID_348_GimmickFemale_D76Z0",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Glider_ID_364_LyricalFemale",
+ "91DE2263000EF60E067F04C5505104C0:J72L3sJQnakH4GQrYgBz7QIAmI4aC1sde+iB7zErKG4=",
+ "DD07D332EE51C9C9585F5249FD62A45A:8Fv7jA8ISZ3iOlNCeaeeGh9rmRV6QvL7sbsx5wYTvnc=:CID_A_223_Athena_Commando_M_Glitz_MJ5WQ",
+ "19CAB803EB00118FB3E6B3E5ABA7B234:tRM77TfQWWJ38hNsFLjt7jMNoSOozxqi9PF9/9H3rmU=:BID_373_HauntLensFlare",
+ "5A03216B7495CB52261D6E0D74DC62CB:tYFoxNFq/lu5imPTcSk5vAX7ZfPNBwi8INXf2hU+YyU=:CID_A_159_Athena_Commando_M_Cashier_7K3F0",
+ "3306D0A65AE55FE016FD38AF43E062DD:KY9nJfkoLlV8GIZTJyctUb96ihEreBHYF3Wc3SfnHkw=",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:EID_Victorious",
+ "9DB21D9B45B9CAE4BCFD141C0ECD737C:QffQPwgx8G+22K1v6ArbZ9aw4DYxHpbqytOFfZONcNI=:Pickaxe_ChessBoard",
+ "B8C17AF9BC0DF3113AC6C498DF3325C2:iElxozD4UvK0+tPt0pPLg0gBoSkwLwByJiE4ucKHU7U=:Wrap_085_Beach",
+ "7A59383C41DD998408A74BC37C7D6887:nSrruhpHV3ZEPPECeqWkMh/6mBFzQD8yEFKZS6oJeu8=:CID_A_080_Athena_Commando_M_Hardwood_I15AL",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Pickaxe_SunBurstAlt",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_956_Athena_Commando_F_Football20Referee_E_DQTP6",
+ "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Backpack_WinterHunterFNCS",
+ "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:Glider_ID_258_JupiterMale_LB0TE",
+ "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:Pickaxe_SaharaMale",
+ "2DCD2E2A9A816AA9035999F8E6F85F6E:6xM4ZYt0UAylyuIgFrmOgq4fYVH2ChEzQNcl8KGQF0o=:Glider_ID_216_HardcoreSportz",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Backpack_BraveBuild",
+ "C11DB2552EF4F3974E331EC72026EFBA:/Wa2Umvi1eof4lgNx3TaDEi5uJfQQhoYDr82V3V5m1k=:EID_Medicinal",
+ "1609BAEA4AD6B664847EB5AACEAAD2AF:m2Yg+p6NDPR/POAPoG7bUCPabLTxGc/h8nrOEIwDx7k=:CID_228_Athena_Commando_M_Vampire",
+ "134343D31031634B122471F73F611CBC:zqtMGKxH4+Ydcx+1mHOb5DIMYxctpm2nKqXp8c5hH/0=:BID_279_CyberRunner",
+ "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=",
+ "D517F2A448CCB9B47E5004894BC62ACF:qOdQUR91sysqDRELOgz/YVZ7Piae8hqcrnYW90fXtvU=:Glider_ID_318_Wombat_1MQMN",
+ "F8D604C6FA9156F47356B54E1E442A97:EcmOKEqNv/9U+rw3oLZb7e+z4gaKWlfRIpdQwODvOKw=",
+ "72CC2893A6B672F3854F36629B770774:0BgQgKZRRuPFEoqn7CxZVhLBOfpCE3qLKGQlZc+SA80=:BID_890_UproarBraids_EF68P",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_943_Athena_Commando_F_Football20_B_GR3WN",
+ "F32262244DE021E18BF22F9BF7594474:08HErdKvBV58StDIjB9wvtY67peu7ZK3BsMpBMKvSrM=:CID_280_Athena_Commando_M_Snowman",
+ "4ECF5AAA0161B01630EC04541290F986:BkEPlQ7bCZooSwt1HIbGXIm7LyhVkEd4zg4WUGJvaT4=:Pickaxe_PowerFarmer",
+ "71EC943F69634C4E436D461E06D88193:aW38AAbm6/PX66vrSXaMTOOb0nydoEEhRphBbDZObmI=",
+ "30B98E694C38C868A4EDB892F3FF1940:3biPX66md7tSkYYCBkYrshj9OJIo1B4CWV33LnL1kds=:BID_195_FunkOpsFemale",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:BID_821_QuarrelMale_IKIS8",
+ "71BEC74046C6920A467E57B69FA3835A:q6m1xB4+mCmXL3g7eRGykDO6ZKrXS8M7m8SqbqIKzkI=:EID_WackyWavy",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=:BID_818_Buffet_XRF7H",
+ "09BC93B3441ECBAC30FA23BBEF59CF89:3CHInj+JfLspiVCNDY/GTZ4Pn52nWFeA4qYI0SJv2dM=:BID_183_NutcrackerFemale",
+ "27D6556F776B2BDA97B480C1141DDDCA:uvUqb5LuwRFWQnA4oCRW3LNdorYcGtOmJ8PvBeCwBKg=:Wrap_095_WeirdObjects",
+ "E3D0A604B93651DDC6779B14F21D0FDA:8gPR3gZwEJxfkZBkXk0QAlpnJ7q5mXzVc0DN3lzpJ5k=:BID_328_WildWest",
+ "C76299772B1BE272260BF3396F83FC1E:uiBDMtwYhdxktbqTrhYkzEZErlBp5gBtkLM+QFDouT4=:Emoji_S18_ClashV_I1DF9",
+ "7BF9CA82EA29E080F7106C60B645B76F:D1NrMwnfRG8tf9LF7B4r7rQ53M2nCtPv25qjw22T9MQ=:EID_Skeemote_K5J4J",
+ "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:BID_423_HolidayTime",
+ "A08F80FECB766B071C66017C5902DBD1:Q4sRGzjjbRTMZ3HwAmiC6a6+017KgXUsLapzs71OWEs=",
+ "713D64294CD1C40F60DEEB805E3A2D87:CJOOHtEX7q4CELcZ96oZjrmSZd7pyJ2fMaFX912GDl8=:Glider_ID_110_TeriyakiFish",
+ "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:Pickaxe_ID_543_TyphoonRobotMale_S4B4M",
+ "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:EID_LastVoice",
+ "E48EFA857D8E6914B2505B05AADFB193:4AUdytefPzWNT8c11iGtU4xcGNWEgzpMJbxTjUq3NS0=:EID_Backspin_R3NAI",
+ "4F463077C4B0260225A47547ABFDDEE3:jvXG7IisBPOlXz80kl6hZdn+jb6TV0Bvq1WafaHji44=",
+ "5F55EB861A32231A4F36A5918A31256E:mPTr+gEXTqwhI36DN+qJITYpBR2D3aWqrn1lwnPDg6w=",
+ "988F75A036552441259F047F4DD6FDC8:udr6m6IzE0+CCPfAgZQp8CuhbKPWKFvJfpjOLTUZROY=:Sparks_Guitar_RelayStick",
+ "E59B013651F078E718F08ECF9E1559EE:rTGy9at5kTfQtu8EwVrUihfzuN8vkFPl3XNyGvqbZX4=:BID_250_TheBomb",
+ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:BID_642_Embers",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_849_WayfareMale",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:BID_896_GrasshopperMale_BRT10",
+ "16FC688AE41A3E3C518F4DD9F9612EE7:Jd7nRLx/FoonA2dUjtbvJVk3nJoNq9LTedk3u4EdFS8=:BID_248_Pilots",
+ "21D9E3FA446D32EE85025841557C1E4C:KBL9ZqzocmLvcq5k3mwTCeoeeVfJdw9wjuQacUrg50w=:CID_A_243_Athena_Commando_F_Grasshopper_E_L6I24",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_946_Athena_Commando_F_Football20_E_EFKP3",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_998_Athena_Commando_M_GlobalFB_D_UTIB8",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_348_Athena_Commando_M_TreyCozy_E_VH8P6",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=:BID_853_TextilePupMale_LFOE4",
+ "0690C12E471B0A42CD02549ADA662D64:Ntgy1QBz7O7CswgzsqOYwoMahjG3hGmk6/Qh4/rs+dM=:BID_153_HornedMaskFemale",
+ "BE2C3EF59AB81D812AF5B8153325998F:W7NoICLZt9L2d7XZ5dT9gtI80MyOizk7uA9LtwA/Edw=:Glider_ID_323_GiggleMale_XADT7",
+ "BE4F0BD53F53B4B8E570EEBF8829D35A:2e2jnt5igMSevc4fMunQFbu/EfR3NRoxNwULUtH91Dc=:EID_Repetition",
+ "D83FAFF508200C47DF03BDFF2F801FEC:s9P7AOkoCuPm/506hyAKzuRaIh0xzV9YZON4oDs7GoY=:Pickaxe_ID_510_JupiterMale_G035V",
+ "1234642F4676A00CE54CA7B32D78AF0C:Nd8vhYp296C+C0TqSIGxu0nBYOFGQ5xBNK5MFjHS8IA=:BID_200_SnowNinjaFemale",
+ "987329E3B70FEAD522EBF7435E5CA6DD:j4zyQQh25LYcjUO0HYDsBzmqLSXR5r98UKdC0xeTyHI=:EID_Boomer_N2RQT",
+ "30A11EE8EB62BEFD4E9B09611DB13857:YVeVPXcP7UoJTp71ZXpGNdPVzmjnRyymcUpsNWYXfRs=:BID_507_DonutPlate",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:EID_Football20Flag_C3QEE",
+ "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Pickaxe_FearlessFlightMenaceUniversal",
+ "F2C401EFDB4A6B5DD0B80C4E58D4A4A5:APir0jfGo2PAuoVtI+5tSahNavnxm7TFaRgTlx8tGrw=",
+ "36351B933FFCFF1746737649E9806CF9:2ZtfFqHREh2sKsMYN23yW+2Sd0OSNN5CHGd/qlXVd7k=:Backpack_TigerRootHype",
+ "3A122019FCD271A539EB71E952B32D60:CCYj89kHr2atYI9ZfLcisGTTnGy8GtGBKZ/arLp/tlY=:CID_A_344_Athena_Commando_M_TreyCozy_6ZK7H",
+ "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=:Wrap_391_Dragonfruit_YVN1M",
+ "5BAB7539D98938E909D3541E69214830:IgABlZz2+aRehC7vxw4p63pXUZOZFwdATQWkTfTYP30=",
+ "CB3D84444FF0E551D18939AA7226B17F:U4GIAd4fGYWy9tySw3iVb92+6ZX3rQ3FsiBCXMT4TSo=:BID_194_Krampus",
+ "35C2B057E5168DCA74B6F1DDAC745E60:73haJlY3S0TVmH0ELxyw6p5FzFRrITWqOmobH9F2Mq8=:Pickaxe_ID_736_KeenFemale_3LR4C",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=:Wrap_465_Lyrical",
+ "E47EFA3166A5D7B35CEC27B19AC66AE5:JURSqAHhHK6YqLP5rKhCO+SQ2oql4NqJaoaeNGtsrM8=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Pickaxe_PencilCherry",
+ "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:BID_867_CritterFrenzy_3VYKQ",
+ "578DA5D582A996DA819F409BE37C39DB:8KdrpLeI7JWcPozcUme7kvSVhgqxwmR0/ah4h+nCWLs=",
+ "4009CB877085F3B3B0D76A686465A140:gMLJXUbFcIrqqUlAuoMI1b27KdWHBVJJeJWdYV1Iiro=:Pickaxe_ID_551_KeplerFemale_AOYI5",
+ "308F587F46CB50450DCA9B9CFD50E120:2nvyeGrxnqL5SJjMPag1d9YiiXfdGYVkL/WJqWYnC2A=:BID_157_MothMale",
+ "60CE6E28E6993C1DC1C58E839E7A7284:ZlOTwn6YbAK9HetjsiQo0AS1jwJQnLJY7NkR5i7o2/g=",
+ "5D72DA16B064F87BCEB569EE9323FB67:cnMEvin1jKe2V34dFeq5nTKzXJCQiAnjJfXx1te8E2M=:EID_Competitor",
+ "1C8FA86241B2E4D084F7548529629CF6:pmXOfd+NEXcLhZX5YqDLjHu8/yzZoo4dWPcCM8ccXoI=:CID_333_Athena_Commando_M_Squishy",
+ "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_925_LateralFemale_7RK0Z",
+ "4027857851DDDDD81540A7A6B79134AA:VuQSvPVjqCjbln+FWNnnQ2RjoNjs2P8dD57qSDhhKx0=:EID_WrongWay_M47AL",
+ "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:BID_878_BistroSpooky_VPF4T",
+ "7FA066BD68EDBE54C44CEAF5FDE591AA:MqrhrL7xbe11CZPwz1pJTx8M8yUHGe/VHL29VKlKVKg=:EID_LittleEgg_69OX0",
+ "57EC154062C75464BD8A087D89732317:5AEwoCp79njYci8QYF+sLMkGpjDnFCYLSCtz4LD9D78=:BannerToken_018_GalileoD_5XXFQ",
+ "2F2804FC81CA638FC3DFEE5FB922987B:vz4MvtMQubNdmH1BO2E2FnNT3/vSvjbIn7HWNcWIYl8=:BID_272_AssassinSuitFemale",
+ "522BADEC3C1B8FB686B355A760304BF9:4yejFeII+k2XIzKVEF1UPXPHjMamSlHIEljDToNlzvw=",
+ "DE4CBA7A27B818D6B299767036C671A9:o7axeOYDdjXZ4MTWM4Io4XRNfQG2WH9qwPvBSJk8vJM=",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=:BID_875_SunriseCastle_91J3L",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:BID_921_Slither_85LFG",
+ "D1EBFA5EEFFAFC07E39EE2D9986CF8FB:jdM2xx6liOm1miOSVC7txNj6HvWF7/zCq4zxMYFYxug=",
+ "5D6562F1EAD89513C82C2F37A24E7F82:I2c+SQCdDvJpC6z1xniRT+k41KAp0pla+o/H68oXFLQ=:CID_651_Athena_Commando_F_HolidayPJ_C",
+ "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Character_TreasureHunterFashionsFNCS",
+ "E098A699B1A5E20B03B5CBBCDB85D4E3:oKYx1AqjUax4YhKirSQDeyBSQNkSmEKDS7q+U/4KszU=",
+ "BA4D882E7B09657A5E05773F702103CF:PjieN4lF3tRBNjQmWWUAyvZUaV0OrPGPYwrqNT8ZSus=:Wrap_045_Angel",
+ "A724F84D683BDA0424F8573492BEE2F9:NwXCEqmC8gDF+GNbhV1rvVbNkeFtOfjzBHvg1D2UJfU=:Sparks_Bass_HeadphoneJack",
+ "8E1887D55A60F69B33B234242FF49653:YofZaW+CRl0jhVhkp9z2CQWhTPwyjQ6dbHtISkLDfVU=:Wrap_476_Alfredo",
+ "0855EE21AA3E58786648810E4DEA78E5:wD8yk0v2pPNETRa9hPhJjJuMxHWJDF5FtxpPrd9ua4g=:Backpack_KeyChain",
+ "EBFE6788D367D741AF0A4FD098CDFD39:FAeJTGyT49P+dQOmKx+lMYVAxu7qtIPlqSaLAR85zqI=:Wrap_066_AssassinSuit02",
+ "1398A4C2E6C3954EDDC49F85C5AB251B:qF0+04jSaU0kgws/RigbWpwnyPQMDnK+4Vf4G0tmTns=",
+ "59A2ED9719A429D54A0527BD9EFDD2CB:uiAzgzDicrjHVlY+8a4i0p2f+7GkJ1kwmpT84nH6nsg=",
+ "E0FB7B394449CE6450EA90C93D710EB8:NrXwNX6lKuu/kyQuvE74+6Uo04FODoV4ZqxToj/jS6I=:Wrap_088_DriftSummer",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:BID_985_CactusDancerMale",
+ "7FA4F2374FFE075000BC209360056A5A:nywIiZlIL8AIMkwCZfrYoAkpHM3zCwddhfszh++6ejI=:CID_223_Athena_Commando_M_Dieselpunk",
+ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Pickaxe_ID_492_EmbersMale",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:Pickaxe_CoyoteTrail",
+ "C23FA9BDE9342B508B8AABBEEA6699A2:3mRtSSu9PTBlC3NpGAQcFent660Ptni4HbGX+Zj1KIA=:Pickaxe_ID_676_CritterFrenzyMale_B21OE",
+ "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Character_FolkEvening",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_646_QuarrelMale_PTOBI",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_305_Athena_Commando_F_Slither_C_UE2Q9",
+ "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=:Backpack_FearlessFlightMenace",
+ "BAEF248980269F569C6E1FFF2B885DF6:2b6DQGIcab1r7zsw5j3MR84iDmt0g1XBquxJVR/8GxM=:BID_402_TourBus",
+ "E2A2B587160A4C443BF5455EDEC37D7E:+nH3Fe4U8akaQyEoy+g3b6IT6593VPY1PZjwP+d/ydk=",
+ "BFE1F518C16A9F061B140D829ADDB0ED:bHkPYjXd71vacoJ4IisL//zEyVLFh+Di8MUqV9KkpFU=:BID_806_Foray_WG30D",
+ "BF953D81273D8772F12F57646A49430E:JP2vQQulX3OGMjglMYW7PT3KMCMbia3rtHnuEsuEVxA=",
+ "18E7A14F3D3A6501FCDCA85855F808CB:iYqOu2+M8QDG31cRJ8ZHQ7Z5eXpTOSTEvXcgfDSqVTg=:EID_Dreadful",
+ "566C4D92AF66F45DF5E2D7EB43CC27AE:EuAYwU5tQBXzGoSj5BMc7S5yFfe9wZ2qrzx/hIHpnqw=:EID_LunchBox",
+ "476EE53C2EAA24FD1950A9875FB4CF59:LQMwgWwsoSqGyYbBouYaMaN8NZ38Vy5r3Tqa7KA71oQ=:Backpack_FallValleyCharge",
+ "9B730D57F59135CF774023F0DC1A99E7:l2Jy2Q3X1MPar8qMDGSHWWhdsVsYQ7hsqEYFMA6D8fI=",
+ "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Glider_LastVoiceDive",
+ "F1DBEE1A4C88D59EBB63579C7163E7B6:7dSf2Qx4GGgM/q8Cvs54ANwQv6ZbPqjVrE1Fh1V0MSA=:EID_Hurtle",
+ "CB2F74DD1C6D7FB4560BF4AA6B7460EE:1MXyB7YDAZC+p/2Fl+tefE6s3cCdKs+5tXDHEg1JLfg=",
+ "44DB36B2D2B3854669780458D2FE48C4:gtl0smAMRKg8d9TdDH47lUOYCygKzbAPA6/HaXLWy94=:Season17_Magesty_Pickaxe_Schedule",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_910_Athena_Commando_F_York",
+ "A13ABC32168BF8FE80F667ACB4BD5AAF:WsXMYjk1W2VJ8o9Dj7FXsaKvHNeHydr2kJEiwPRIMwU=:EID_Triumphant",
+ "9261CD0F921EAA3CD6AA8C0716FB042B:W+yzeWWxWnA530lwV8nLi2BE+TD5MCXS11th7UphmPQ=:EID_Typhoon_VO9OF",
+ "EB16EA013B751792698E05435797C1ED:y9JgD812Io4mbaJ5i533Ts5SSfyXaGM4JyoimjP+i4M=:BID_245_BaseballKitbashFemale",
+ "22AB4BDC10065AA49B38DE88522DF836:1L8L+oKtSOtIxbm1x0HbDtzquIH6CH8vu1PF4i8jU+w=:CID_449_Athena_Commando_M_BannerD",
+ "7C04002177805455CCA13E61F418D117:cacqp05gISCHgiULNDksrFNlUbhz6NxeW7pEr+xp2FQ=:LoadingScreen_Genius",
+ "ABBCFB5A5EEF4E14C2FB2A379152E402:ZRrlkrmu0l1tGZe5IyUOVa2mEJLbjuQCnoiGaDbmFXg=",
+ "AE9F7B3419C7FBD2414D72E2E1C8A7BA:kpIotniLp60tWfbBitDUrjw6gmJ2Swl+YT3QAkecpRA=:CID_547_Athena_Commando_F_Meteorwoman",
+ "4BA767BD2DC06D215B435AC09A033437:QOfpKnEogmj0tTa5wf49SZH55Sy48QEGP02DbkSg218=:BID_A_009_Grapefruit",
+ "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:Glider_ID_107_IceMaiden",
+ "5A1170F589134C4D68AAA2B5AA6EDA69:bfro7s6Qtde/H7C4zc6MJdpua1mhem8HywLluxBLDrg=:Glider_ID_250_EmbersMale",
+ "98CAB76B2CB8406085C8CDF566FFF5DD:cucOYeadgsZAhkdKC7Klc4/BhUe0SnQtF2cwEScRBxw=",
+ "F044853E82632E827ED91FB4AFBD28DF:LH1pXQ13KEoYfxxylALn8jaS0t/7IrVRVmO8UXieaVU=",
+ "5C25DC4FE406CC6DAAB47D5EBF222355:LH76FBWg3hkWPDgOmXcRY/YD33N/6E4qQxqKUvIp0oA=:EID_Ignite",
+ "BB09F8C7991800CA61A7144E3A6219FA:o+Hvu5rCygQz66xIyk0SANceWaptKHLEls3vZaMW9oc=",
+ "88FA70760D757D80F661FA53B4762EC2:7OtV76cpyOq9dNeM5PVD8TOdRcPx1K3weEPXzlCugu0=:Pickaxe_ID_682_BistroAstronautFemale_A3MD2",
+ "7E5BFF3AFC483F87B5891536C0AF3DFD:dEBFRFQPYg4NndewaW9/rEDpW0N8VFh7srTZDn0aejE=",
+ "73794262E9FAA8543111C22668BFB4E5:2aV01MR1KWGjb4+zNwOKYcTekm5K+PdXPaN3XW7tz4k=",
+ "312398E80AB6209B22CAA2EBAB2DB35B:QZ5uhBnQSeK4b+u9E6PTfw7j2scPMTPX4fFTOJWIwEM=:EID_Shorts",
+ "D979E822DB9DB03D1522C7B6C492BB2F:uB0mQnFz2a19zk2os8iIiyz4tQuXPvdrfcLKaIXil8Q=:Sparks_Guitar_BottlePhone",
+ "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:LoadingScreen_Elevate",
+ "63722D44ECCA0F4178B85F5A6BC4C31B:j42UL0bmfBkli6Aj92wWABwFby5rAplP/Ac6nh9kRvA=",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=",
+ "79F7D9C856E8CF354109D3298F076C06:Ak3TOM0i0Mq/KYxd7SDlSuS7o55USaf+urL6WqnmalY=",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Fig",
+ "4E7938F1FAC98BDF378823116712AC7A:jbZVgprILTQomUdGeJF0PsAFAJxsSCs5cKcXweZMAg0=:BID_586_Tar_DIJGH",
+ "25A2BE0115631B392E3C3217C645540B:GyQ18n64dldycxr5SPLRfWRNnxFB3eQFK07BbTgleUk=",
+ "9DB808E8A3748C92F9B2836D97F12E43:8/7CEcgqMxbP0Njwt+FfkrpLL0re3J/cSvasQ9DuVAo=",
+ "308F587F46CB50450DCA9B9CFD50E120:2nvyeGrxnqL5SJjMPag1d9YiiXfdGYVkL/WJqWYnC2A=:Glider_ID_099_Moth",
+ "6D85E82539341B90944E84FFAAD872FB:mAiBk7KbE2Dnr+yVFyJK1yAwv2eWb+yANFH0z2krQkw=:Wrap_087_BriteBomberSummer",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_939_Athena_Commando_M_Football20_C_9OP0F",
+ "89CD763ACF4C3672A0F74AC0F45C291F:vtcPbnTh2aDOt7LfYpJL+7aF1TaB8LDaLsMoQ47NZec=",
+ "E4D8D083C49828F6BF310ECA74A84F98:NxjtZXHe49xC1zUVs+XKjHbeic3prkFOWmwkaQ1vOFw=",
+ "8D44654E9EA2AAC35E489476B1948E58:Dwb/irSIIGd3tLLPEP5OqJY1D4KfjdP4+uP4+Ht4YOo=:Pickaxe_ShinyStar",
+ "2A236A35ED4833924DF975CEBE4282AF:e4NpefIqezxUVeH+2INzCV08eK4NvFrojB8z1awxm6Q=",
+ "D2FAE1D098B2B4695EB59FAAD504798D:ZUDIqDvGVcpCVuA3h67vdkVbZwLuC0Z1zX33JLyi5xE=:BID_924_LateralMale_Y2INS",
+ "010E6ACF85E4A58BF6F551EFE7B85F61:DwCIH5Dw/1wdiS6gFGmWe4HUgD9kMOEzjbzM/1QshM4=:BID_234_SpeedyMidnight",
+ "54FD9ABD65879452DCB8CE11C1D7F1AF:nV0Vm4NCBl+MkGX8wiqfFrg0viDriL3I2xc4KS7n7fg=:CID_422_Athena_Commando_F_MaskedWarrior",
+ "929B82B3454DF80CC45B11A55400B6E7:jl/KsmshfBxKKnPDHyHNTHOzTE3buCIrBpSUpXJQdL4=:CID_298_Athena_Commando_F_IceMaiden",
+ "7D4C5F196ECABABFD430C68C3FB04C0E:o27sbmbMHSSe9j8hpkaaObpYOnIVkZxtao6IDUUBa5s=:Glider_BraveBuild",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Glider_ID_388_Wayfare",
+ "E176769F750C1A6152A78B04761894E2:w/RNY1G1W4n6wZFfZUaqa7MvEyxXPU42ZRypQ+UcNVY=",
+ "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Backpack_FishBowlBone",
+ "F07BE27DCEFDF52818EE7BA2CD9CA504:lc47A/VahaBWJLQY4V1YyjzJPI5xVErInDaqdwPjv2g=:Pickaxe_ID_200_MoonlightAssassin",
+ "34DD24ED0CE62244E7FFD27EF4C29EB5:jTgMUc1ciLKwXF/PqyFJl6s9Iw5SXYHKiSThOQhG5TE=:BID_938_FoeMale_F4JVS",
+ "9FD68EDC1A5A456225A1C14E1488C573:vfIZFBmmSWgvzSDG/l7N0EGIrANZpUKA7Ofqo+n4fBg=",
+ "C8EDBD039269967B5BE92CCDD8A9D62F:8gR7wuE22djecHDkUAKfbBCtvwwWeVjZxSOBag9drI4=:EID_CoyoteTrail",
+ "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:EID_ScoreCardBurger",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=",
+ "5098C0AED639B6C90A785C727F0DED4B:/YNq7WVNgAmtcY8eS20XBvoz00E1Z/1/Q0BZ8EluHf8=",
+ "E8585F83E40CD4CF0272EA6012055A97:4LrXtLEBhL5JquAu4/kq1Dghb4/355YROt3ciXg+ysE=",
+ "1B1978CC0EC6D4D937800A9E1CA87CA0:OjIDp8UXlfFZCaVJ6GLnMM+98VabjD7EB3J7ahiRNk0=:EID_Gimmick_Female_6CMF4",
+ "FCD2F65146D53215F92F558CBA418191:3cp//Ss4zbgQ6tnnNLBcaTy9fsz3IM6ddZmiQSkX43c=:CID_336_Athena_Commando_M_DragonMask",
+ "06E3CB03E94C4D850CE185166706E868:jDuRIbxnZBnAH/hUrfRX3qnGyIogSWUHrK6nq7Et3pk=:BID_771_Lasso_ZN4VA",
+ "19CAB803EB00118FB3E6B3E5ABA7B234:tRM77TfQWWJ38hNsFLjt7jMNoSOozxqi9PF9/9H3rmU=:Wrap_154_Haunt",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=",
+ "A398C07C0A77D834038E7192FAB52B4B:/+4taU8TYRe14OhUt2cevoUqUOh6ado2hWu45FJ+7yA=",
+ "C5C1E0742C0BFE4264242F3774C13B41:BO5aZnDZhvHsUFLsJD2vtYCQ6iYpX7Lhl565nDsBhaE=",
+ "6AD4E900C2E9E785B0442E0A60E74C66:FbrGkaMoqjq/CaamdJrQUBz/PjBqtA0wFlGj1VOxH6A=:Glider_ID_378_EnsembleSnakeMale",
+ "B3BE1C036099F140800BB7D5FF1D9C49:bLt9+35t2O26OTgiEMuUCvH1kn+lGjTjhaEEoiz4CtE=:Pickaxe_ID_535_ConvoyTarantulaMale_GQ82N",
+ "00AD98CD646E51F9064470AF81753C60:hpnxeheofJRm7KP4G+CZE9/C/iVbil26OM89045T3/U=:EID_Prosper",
+ "40E9F547033360DFC0DD09743229B87C:x0/WK54ohwsadmVGHIisJNyHC8MqlU8bg2H+BsaEBtc=",
+ "56812D9CB607F72A9BDBADEE44ECCD21:pj9dMhJSaj6V2HsA0VWABE7Cs4+eEBz1Kex340gafK8=:Pickaxe_ID_199_ShinyHammer",
+ "42FEDE262B530BFDC25D9E6B8684D1B7:bXloLJVoSi2uTe72cpdsB8pAmUPKzmxwPC2GPhHFVhk=:EID_Layers_BBZ49",
+ "98BCB8B7136162178BF364D6105BB9B7:c1dhB+vWHWRw3YvWpsHRj9Ayj8JjdqYOLnyr0YImxVo=:CID_999_Athena_Commando_M_GlobalFB_E_OISU6",
+ "AEC9FD29ACF48B274A1A573C9ECF4B06:7OT+zOUDq1RjYJKp8gQhbUnYz/qJ19It2X4HduP5y/g=:Pickaxe_ID_249_Squishy1H",
+ "110D116208C62834812C2EDF2F305E49:MwuF5zX7GpQCGL2w+CwkPmGzH3q05YUoLo5udhVMNPg=:CID_718_Athena_Commando_F_LuckyHero",
+ "4EFDA950DA6AA1E6422D2FBF6B89DE85:HDEI+ufmAF1VN2+mYiOFFFDjPVAfkEcmrnyTQh85dmo=:Backpack_SunBurst",
+ "EF7C5225BD60644B313ABEE69182A302:ITNJPJyUEyMw8YrBk89HfKwHTFV6jGJJHt4D8UmpaxI=",
+ "8C623F6A49CFF9ADC7895A466CA1C896:kLmYdLi+jOBs2k+B/UxrCcPSdvuNYTha0xl9+SvUzJU=",
+ "56812D9CB607F72A9BDBADEE44ECCD21:pj9dMhJSaj6V2HsA0VWABE7Cs4+eEBz1Kex340gafK8=:BID_254_ShinyMale",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:Glider_ID_248_York",
+ "CE9D023C0D7DBF7634F2AEF6200BDB36:JyhTmjJnosQmLeGMQXhCtkl/auX+mde5P11MsWEwIqw=:Wrap_DarkAzeala",
+ "8D9CFEEB5299B3F8400B8E2E67B8A1C9:wwFluOAmcnXcGsyJRGJEmuC22cypzH4xThcZASR+IHU=:Glider_HighBeam",
+ "D938886074C83017118B4484AECE11AB:wjHAHm00Vg6n2x5LU91ap0+SFX5ZXXBmax1LyX8Aips=:EID_Alchemy_BZWS8",
+ "3AC8A6B5089F55E17E00AAD8AC3C6406:TlUSkJe3y85fW83rHMy+XuqcZxQduXcB8yftpPoiDvo=:BID_527_Loofah",
+ "54746F2A874802B87CC5E9307EA76399:nOaYcOb6cOggqwc+mRiJ7LJEs0qvaiMhxH/yWXou+Q4=",
+ "FAE51F5AC49A240384D5B57EA08B1F90:oesTf9AVGgX4FVwWzgm++nQEO0aARyuU5rZa1f6hoFs=:Glider_InstantGravel",
+ "4755D9C0E2D1DE1C09B77DEA8B830471:9tUO5yVhvp+/sp7icZaEDw05nMAdS6bYAWYyfQNsxBc=:Glider_ID_209_DonutPlate",
+ "DC487286E8C1CD5FE18AC3FE76034EF2:3h9IwK2qQP8PHVuO1aZI1C34JrJxKBnXJOFcSDSj99M=:Wrap_102_WorldCup2019",
+ "C5C1E0742C0BFE4264242F3774C13B41:BO5aZnDZhvHsUFLsJD2vtYCQ6iYpX7Lhl565nDsBhaE=:EID_Martian_SK4J6",
+ "376B77890B5057EBBE1C3D0CD97BF4C5:UYA853Oz4bzCHoXU73CELJzefJ4EE1VjwEUiXti8xns=:Character_Pencil_Grape",
+ "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:Pickaxe_ID_752_RoverMale_I98VZ",
+ "FE0FA56F4B280D2F0CB2AB899C645F3E:hYi0DrAf6wtw7Zi+PlUi7/vIlIB3psBzEb5piGLEW6s=:CID_220_Athena_Commando_F_Clown",
+ "8DCAE39C7D9690E19F52655F02C613B2:ZZHbiVsbXquLlrtNVHtryLS3Vd1Ego8/8tlDpeUCgfc=:BID_337_MascotMilitiaTomato",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:Pickaxe_ID_850_WayfareMaskFemale",
+ "471CA05DCEE84890F9287E4E0DB31C08:cclx9Dp+FcphJfVZLUAdo21nLGn8pQ7GutQgY4LCOts=:Wrap_Comp24",
+ "5738A14C7E45E1B405CEF920829CB255:xZHlPTz/dxNahrp9IqTZ+tjOZSYMxQb9KZFXlg9N638=:Wrap_180_HolidayTime",
+ "7B1151E3094646DFFD37B6492B117FDB:4WxNHdTgHDEpGjzIV2XIjGO41kyiwggFQpdq8y+o1jY=:BID_733_TheGoldenSkeletonFemale_SG4HF",
+ "D345D95CF72A6C367ED8F9E0A52F1C76:fmdbzNN8Mv1eax/HDrD+njt4pALWVrtiUwbFgmT0NzU=:EID_Goodbye_Upbeat",
+ "B1EB196DD39D0736E7E08F99B07D8B9A:1fDhBY8uhi++l6QQPL2YtxZgUv04OZoMGBrH+yN8yKM=:EID_SandwichBop",
+ "2E5F91AEF58F310AE2044EA39C43BB81:pNy1GtfVzymqacOqXRY14EZEvI5ZSVD5AFxlhxXC5qk=:Wrap_409_CritterManiac_1B4II",
+ "7C469274E430B5E3005EF1799DE618CC:5j5CNw8BI2+kBShT+u7kgw9HyCZ3dOvCMGBO9WScNPQ=:BID_A_061_WayfareFemale",
+ "01079D19DDDEC8BD51AF536A7106906F:QQQwnB63pdEdKEqLYP9QzAaJXakZ3w1Iuai7YU3A+Xs=:CID_A_304_Athena_Commando_F_Slither_B_MO4VZ",
+ "F78569F2AD7950F870965BC647904647:e3+Nhzk8SBfmZWoQThFsZmnyJs2AoJ+LQDgMz45YAUE=:CID_952_Athena_Commando_F_Football20Referee_ZX4IC",
+ "360CD59F6F7B68A441DDED9DB5FD13D7:G6pVAf/ul1HPYh6s2M1l8G4hn62jdwkcbegeLoxL7Y0=:EID_Ashes_MYQ8O",
+ "1937F4ADBC2C38EF4F189DC2B1AE58AB:tWzxKwKEDzI0RsQGl2GvOVqZwxOSOiZaCQkyK1hE+lA=:Backpack_Inspire",
+ "CE60A61FBEAC33EBF231E79C6BBB3D19:y7XCzCCilb1Q+TlLtT2sQCAryt1gIZ9PPI2dtb5whik=:Wrap_FolkEvening",
+ "9E7468047D1781BCB546D5AE215B5073:EYWQj4jWQQnEZ6i1eKfW47bvGqK0ZNt7KFzQO1P6FU8=:Backpack_TimeSquareBite",
+ "2F1A5AFD22512A8B16494629CCA065B2:Un44BCuGtirrKab0E9TeOyDRnWC/Jh1h48+FOn4UrtA=",
+ "457F39EA51FB4C723B442810750CDA4A:V3d05mcuS4uXMBRpy63TIZDLt5hg9njVD0SGhZDsmBw=:LoadingScreen_Sahara",
+ "195439D6DD0FE44ADAE6BF7A44436519:kRCw7VFSPCYqhu7lJlA4kO4YmsqZUzxM6ARm7Ti8ntQ=",
+ "8675F0B46A008B0B6C0ABDD41A619443:9JYZhRB5Kld9h7zVQTbfSyNJvhz9UaJ17HIAPZH8TwQ=",
+ "22B8405FC3BE153C8148422C3F2D3A8A:d/ATMDztVZxwHLUCwOcJWP1/7oPKKGqbBWUBRNZ6dnM=",
+ "F3A99CD0D4F58EECEEB0D112506AD846:ZZtCRPcKk6itVryDavp7uZFIXiZF5CW0O9b+8Zt2Oag=:Pickaxe_ID_645_QuarrelFemale_W3B7A",
+ "C1E73246C58C0BAC3FF50B346684D278:lWvPsfsWVsNVDSOH7JpZULEgoQ+JKrWPuSqIw942mmo=:EID_Marvelous",
+ "95C6C2B37E1D15D60BB5C20D9D47BA31:exdH0xe2v+2t1wyoXpZGLX+iGDIdRxcQ6BG9iqi07Lo=",
+ "5AEDD4DB5DA39071FCFC2404EEB3D02D:qaoe5DQrf1+HPEQRW5zls4KSe7DHbrxXO8OZMsFeo8Y=",
+ "3D9634EBDF17C26278CDFE91EF0130E8:tVvwjIulbvPLmBKlFhBwKSOGqzCu5yu9CqdH5008u5U=:Pickaxe_SkeletonHunterFNCS",
+ "828B24CF7786DF74D8511CA89DEED8CF:nCahv7mQhidmYXSmKif6z7d6bQ60mdPQ7SrdZ7a3GaE=:CID_907_Athena_Commando_M_York_C",
+ "30A1FD89B2D3C155DAF14852A39BA97F:C0IwuJFw9v06OF8XthOhzUd3nHOTCII1gmx/7eepmDo=:BID_947_ZestFemale_1KIDJ",
+ "162FACA3B0E34C1BAF897ECD28D86C84:rKWv3Qcmp+oMK1Zbw7bhPrNSiFNoNZyIlXUW73ZrUnk=",
+ "E0AEF4894E1283946745F7902F7E105A:7MXKJEs903nNbT1oFzykxoHbQNDnOBm6yfadj+mtBDA=:Pickaxe_ID_751_RoverFemale_44TG1",
+ "FC4E841A2B346A848784A3190B5D05B2:a4+ZHXPUacxXOJmJxoJlp4vzzEApO6fWJXvvUYW43yU=:EID_Beyond",
+ "66B8D4B61985C510209FD18445953344:Vq1odf+xCxp2/WBssHZPvUUyI9ay71eVsuyoz/z9zdk=:EID_Spooky",
+ "8033BA4F3E1FB68ABADE271C9BE4EE42:XGwA8RWdavpeScQpqM/aFod3SGTB3PibdGE7iGKR4jg=",
+ "D776CA2A40FD9EC1F8522E9E13E99031:uRYulzQ2zdGG9UisQw2wM9OOM/9JsSWFwFt5d/3okng=:Glider_ID_121_BriteBomberDeluxe",
+ "D7727B4696A62373E9EBD9803F705B3C:XEbXIzCpOuA88jMBtt+XuMt+NaOIWlvfpW9h7i/dFlM=:Wrap_036_EvilSuit",
+ "6782F1D85E7DFD1D835C9B7B2A461001:zwni3LZXkLjSCnwE43DH3DqME9Z3zpCt2XOnx0VCOg0=:Spray_LastVoice",
+ "01FC97F8787B82E027EC64661E0D36AB:Mh1l2LJ3YrgaZtg7sRTd8XeBkVcyA3i089gZKkTr1gM=:Pickaxe_ID_782_CactusDancerFemale"
+]
\ No newline at end of file
diff --git a/responses/quests.json b/responses/quests.json
new file mode 100644
index 0000000..edffa83
--- /dev/null
+++ b/responses/quests.json
@@ -0,0 +1,38757 @@
+{
+ "Daily": [
+ {
+ "templateId": "Quest:AthenaDaily_Outlive_Solo",
+ "objectives": [
+ "daily_athena_outlive_solo_players"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDaily_Outlive_Squad",
+ "objectives": [
+ "daily_athena_outlive_squad_players_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDaily_Outlive",
+ "objectives": [
+ "daily_athena_outlive_players_v3"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDaily_PlayMatches",
+ "objectives": [
+ "daily_athena_play_matches_v3"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDaily_Solo_Top25",
+ "objectives": [
+ "daily_athena_solo_top25_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDaily_Squad_Top6",
+ "objectives": [
+ "daily_athena_squad_top6_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_InteractAmmoCrate",
+ "objectives": [
+ "athena_daily_loot_ammobox_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_InteractTreasureChest",
+ "objectives": [
+ "daily_athena_loot_chest_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerElimination",
+ "objectives": [
+ "athena_daily_kill_players_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerEliminationAssaultRifles",
+ "objectives": [
+ "athena_daily_kill_players_assault_rifles"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerEliminationPistols",
+ "objectives": [
+ "athena_daily_kill_players_pistol_v3"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerEliminationShotguns",
+ "objectives": [
+ "athena_daily_kill_players_shotgun_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSMGs",
+ "objectives": [
+ "athena_daily_kill_players_smg_v2"
+ ]
+ },
+ {
+ "templateId": "Quest:AthenaDailyQuest_PlayerEliminationSniperRifles",
+ "objectives": [
+ "athena_daily_kill_players_sniper_v2"
+ ]
+ }
+ ],
+ "Season03": {
+ "ChallengeBundleSchedules": {
+ "QS03-Season3_Challenge_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season3_challenge_schedule",
+ "granted_bundles": [
+ "QS03-S3_Week1_QuestBundle",
+ "QS03-S3_Week2_QuestBundle",
+ "QS03-S3_Week3_QuestBundle",
+ "QS03-S3_Week4_QuestBundle",
+ "QS03-S3_Week5_QuestBundle",
+ "QS03-S3_Week6_QuestBundle",
+ "QS03-S3_Week7_QuestBundle",
+ "QS03-S3_Week8_QuestBundle",
+ "QS03-S3_Week9_QuestBundle",
+ "QS03-S3_Week10_QuestBundle"
+ ]
+ },
+ "QS03-Season3_Tier_100_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season3_tier_100_schedule",
+ "granted_bundles": [
+ "QS03-S3_Tier_100_QuestBundle"
+ ]
+ },
+ "QS03-Season3_Tier_2_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season3_tier_2_schedule",
+ "granted_bundles": [
+ "QS03-S3_Tier_2_QuestBundle"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS03-S3_Week1_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week1_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Damage_Pistol",
+ "QS03-Quest_BR_Interact_Chests_Location_PleasantPark",
+ "QS03-Quest_BR_Revive",
+ "QS03-Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab",
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_01",
+ "QS03-Quest_BR_Eliminate_Weapon_SniperRifle",
+ "QS03-Quest_BR_Eliminate_Location_FatalFields"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week2_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week2_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Use_Launchpad",
+ "QS03-Quest_BR_Damage_AssaultRifle",
+ "QS03-Quest_BR_Interact_Chests_Location_WailingWoods",
+ "QS03-Quest_BR_Dance_ScavengerHunt_Forbidden",
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_01",
+ "QS03-Quest_BR_Eliminate_Weapon_SMG",
+ "QS03-Quest_BR_Eliminate_Location_GreasyGrove"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week3_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week3_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Collect_BuildingResources",
+ "QS03-Quest_BR_Damage_SuppressedWeapon",
+ "QS03-Quest_BR_Interact_Chests_Location_JunkJunction",
+ "QS03-Quest_BR_Land_Bulleyes_Different",
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_02",
+ "QS03-Quest_BR_Eliminate_Weapon_Crossbow",
+ "QS03-Quest_BR_Eliminate_Location_SaltySprings"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week4_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week4_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Damage_SniperRifle",
+ "QS03-Quest_BR_Interact_Chests_Location_FlushFactory",
+ "QS03-Quest_BR_Interact_SupplyDrops",
+ "QS03-Quest_BR_Visit_IceCreamTrucks_Different",
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_02",
+ "QS03-Quest_BR_Eliminate_Trap",
+ "QS03-Quest_BR_Eliminate_Location_TomatoTown"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week5_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week5_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Use_Bush",
+ "QS03-Quest_BR_Interact_Chests_Location_MoistyMire",
+ "QS03-Quest_BR_Damage_Pickaxe",
+ "QS03-Quest_BR_Visit_GasStations_SingleMatch",
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_03",
+ "QS03-Quest_BR_Eliminate_Weapon_Pistol",
+ "QS03-Quest_BR_Eliminate_Location_TiltedTowers"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week6_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week6_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Damage_SMG",
+ "QS03-Quest_BR_Interact_Chests_Location_AnarchyAcres",
+ "QS03-Quest_BR_Use_CozyCampfire",
+ "QS03-Quest_BR_Visit_MountainPeaks",
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_03",
+ "QS03-Quest_BR_Eliminate_ExplosiveWeapon",
+ "QS03-Quest_BR_Eliminate_Location_RetailRow"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week7_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week7_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Interact_Chests_Location_LonelyLodge",
+ "QS03-Quest_BR_Damage_Shotgun",
+ "QS03-Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch",
+ "QS03-Quest_BR_Interact_GniceGnomes",
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_04",
+ "QS03-Quest_BR_Eliminate_SuppressedWeapon",
+ "QS03-Quest_BR_Eliminate_Location_ShiftyShafts"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week8_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week8_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Use_VendingMachine",
+ "QS03-Quest_BR_Damage_ExplosiveWeapon",
+ "QS03-Quest_BR_Interact_Chests_Location_SnobbyShores",
+ "QS03-Quest_BR_Dance_ScavengerHunt_DanceFloors",
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_05",
+ "QS03-Quest_BR_Eliminate_Weapon_AssaultRifle",
+ "QS03-Quest_BR_Eliminate_Location_DustyDepot"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week9_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week9_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Damage_Enemy_Buildings",
+ "QS03-Quest_BR_Interact_Chests_Location_HauntedHills",
+ "QS03-Quest_BR_Build_Structures",
+ "QS03-Quest_BR_Visit_TacoShops_SingleMatch",
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_05",
+ "QS03-Quest_BR_Eliminate_Weapon_Shotgun",
+ "QS03-Quest_BR_Eliminate_Location_LuckyLanding"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Week10_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_week10_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Interact_Chests_Location_FatalFields",
+ "QS03-Quest_BR_Damage_Headshot",
+ "QS03-Quest_BR_Interact_Chests_Locations_Different",
+ "QS03-Quest_BR_Skydive_Rings",
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_04",
+ "QS03-Quest_BR_Eliminate",
+ "QS03-Quest_BR_Eliminate_Location_PleasantPark"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Tier_100_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_tier_100_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Tier_100_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Interact_Chests_SingleMatch",
+ "QS03-Quest_BR_Play_Min1Elimination",
+ "QS03-Quest_BR_Damage_SingleMatch",
+ "QS03-Quest_BR_Eliminate_Weapon_Pickaxe",
+ "QS03-Quest_BR_Eliminate_Singel_Match_Elemeinations",
+ "QS03-Quest_BR_Place_Top10_Solo",
+ "QS03-Quest_BR_Place_Top3_Squad"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AthenaGlider:glider_id_017_assassin",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS03-S3_Tier_2_QuestBundle": {
+ "templateId": "ChallengeBundle:s3_tier_2_questbundle",
+ "challenge_bundle_schedule_id": "QS03-Season3_Tier_2_Schedule",
+ "grantedquestinstanceids": [
+ "QS03-Quest_BR_Outlive",
+ "QS03-Quest_BR_Play_Min1Friend",
+ "QS03-Quest_BR_Damage",
+ "QS03-Quest_BR_Land_Locations_Different",
+ "QS03-Quest_BR_Play",
+ "QS03-Quest_BR_LevelUp_SeasonLevel_25",
+ "QS03-Quest_BR_Place_Win"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 4000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS03-Quest_BR_Damage_Pistol": {
+ "templateId": "Quest:quest_br_damage_pistol",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_pistol": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_PleasantPark": {
+ "templateId": "Quest:quest_br_interact_chests_location_pleasantpark",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_pleasantpark": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Revive": {
+ "templateId": "Quest:quest_br_revive",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_athena_revive_player": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Visit_ScavengerHunt_LlamaFoxCrab": {
+ "templateId": "Quest:quest_br_visit_scavengerhunt_llamafoxcrab",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_visit_location_crab": 1,
+ "battlepass_visit_location_fox": 1,
+ "battlepass_visit_location_llama": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_01",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_SniperRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_sniperrifle",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_sniper": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_FatalFields": {
+ "templateId": "Quest:quest_br_eliminate_location_fatalfields",
+ "challenge_bundle_id": "QS03-S3_Week1_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_fatalfields": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Use_Launchpad": {
+ "templateId": "Quest:quest_br_use_launchpad",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_jumppad": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_AssaultRifle": {
+ "templateId": "Quest:quest_br_damage_assaultrifle",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_asssult": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_WailingWoods": {
+ "templateId": "Quest:quest_br_interact_chests_location_wailingwoods",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_walingwoods": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Dance_ScavengerHunt_Forbidden": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_forbidden",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_dance_athena_location_forbidden_01": 1,
+ "battlepass_dance_athena_location_forbidden_02": 1,
+ "battlepass_dance_athena_location_forbidden_03": 1,
+ "battlepass_dance_athena_location_forbidden_04": 1,
+ "battlepass_dance_athena_location_forbidden_05": 1,
+ "battlepass_dance_athena_location_forbidden_06": 1,
+ "battlepass_dance_athena_location_forbidden_07": 1,
+ "battlepass_dance_athena_location_forbidden_08": 1,
+ "battlepass_dance_athena_location_forbidden_09": 1,
+ "battlepass_dance_athena_location_forbidden_10": 1,
+ "battlepass_dance_athena_location_forbidden_11": 1,
+ "battlepass_dance_athena_location_forbidden_12": 1,
+ "battlepass_dance_athena_location_forbidden_13": 1,
+ "battlepass_dance_athena_location_forbidden_14": 1,
+ "battlepass_dance_athena_location_forbidden_15": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_01",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_SMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_smg",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_smg": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_GreasyGrove": {
+ "templateId": "Quest:quest_br_eliminate_location_greasygrove",
+ "challenge_bundle_id": "QS03-S3_Week2_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_greasygrove": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Collect_BuildingResources": {
+ "templateId": "Quest:quest_br_collect_buildingresources",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_collect_building_resources": 3000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_damage_suppressedweapon",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_suppressed_weapon": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_JunkJunction": {
+ "templateId": "Quest:quest_br_interact_chests_location_junkjunction",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_junkjunction": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Land_Bulleyes_Different": {
+ "templateId": "Quest:quest_br_land_bulleyes_different",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_athena_land_location_bullseye_01": 1,
+ "battlepass_athena_land_location_bullseye_02": 1,
+ "battlepass_athena_land_location_bullseye_03": 1,
+ "battlepass_athena_land_location_bullseye_04": 1,
+ "battlepass_athena_land_location_bullseye_05": 1,
+ "battlepass_athena_land_location_bullseye_06": 1,
+ "battlepass_athena_land_location_bullseye_07": 1,
+ "battlepass_athena_land_location_bullseye_08": 1,
+ "battlepass_athena_land_location_bullseye_09": 1,
+ "battlepass_athena_land_location_bullseye_10": 1,
+ "battlepass_athena_land_location_bullseye_11": 1,
+ "battlepass_athena_land_location_bullseye_12": 1,
+ "battlepass_athena_land_location_bullseye_13": 1,
+ "battlepass_athena_land_location_bullseye_14": 1,
+ "battlepass_athena_land_location_bullseye_15": 1,
+ "battlepass_athena_land_location_bullseye_16": 1,
+ "battlepass_athena_land_location_bullseye_17": 1,
+ "battlepass_athena_land_location_bullseye_18": 1,
+ "battlepass_athena_land_location_bullseye_19": 1,
+ "battlepass_athena_land_location_bullseye_20": 1,
+ "battlepass_athena_land_location_bullseye_21": 1,
+ "battlepass_athena_land_location_bullseye_22": 1,
+ "battlepass_athena_land_location_bullseye_23": 1,
+ "battlepass_athena_land_location_bullseye_24": 1,
+ "battlepass_athena_land_location_bullseye_25": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_02",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_Crossbow": {
+ "templateId": "Quest:quest_br_eliminate_weapon_crossbow",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_crossbow": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_SaltySprings": {
+ "templateId": "Quest:quest_br_eliminate_location_saltysprings",
+ "challenge_bundle_id": "QS03-S3_Week3_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_saltysprings": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_SniperRifle": {
+ "templateId": "Quest:quest_br_damage_sniperrifle",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_FlushFactory": {
+ "templateId": "Quest:quest_br_interact_chests_location_flushfactory",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_flushfactory": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_SupplyDrops": {
+ "templateId": "Quest:quest_br_interact_supplydrops",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_supply_drop": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Visit_IceCreamTrucks_Different": {
+ "templateId": "Quest:quest_br_visit_icecreamtrucks_different",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_visit_athena_location_icream_01": 1,
+ "battlepass_visit_athena_location_icream_02": 1,
+ "battlepass_visit_athena_location_icream_03": 1,
+ "battlepass_visit_athena_location_icream_04": 1,
+ "battlepass_visit_athena_location_icream_05": 1,
+ "battlepass_visit_athena_location_icream_06": 1,
+ "battlepass_visit_athena_location_icream_07": 1,
+ "battlepass_visit_athena_location_icream_08": 1,
+ "battlepass_visit_athena_location_icream_09": 1,
+ "battlepass_visit_athena_location_icream_10": 1,
+ "battlepass_visit_athena_location_icream_11": 1,
+ "battlepass_visit_athena_location_icream_12": 1,
+ "battlepass_visit_athena_location_icream_13": 1,
+ "battlepass_visit_athena_location_icream_14": 1,
+ "battlepass_visit_athena_location_icream_15": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_02",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Trap": {
+ "templateId": "Quest:quest_br_eliminate_trap",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_trap": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_TomatoTown": {
+ "templateId": "Quest:quest_br_eliminate_location_tomatotown",
+ "challenge_bundle_id": "QS03-S3_Week4_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tomatotown": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Use_Bush": {
+ "templateId": "Quest:quest_br_use_bush",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_use_item_bush": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_MoistyMire": {
+ "templateId": "Quest:quest_br_interact_chests_location_moistymire",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_moistymire": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Visit_GasStations_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_gasstations_singlematch",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_visit_athena_location_gas_station_01": 1,
+ "battlepass_visit_athena_location_gas_station_02": 1,
+ "battlepass_visit_athena_location_gas_station_03": 1,
+ "battlepass_visit_athena_location_gas_station_04": 1,
+ "battlepass_visit_athena_location_gas_station_05": 1,
+ "battlepass_visit_athena_location_gas_station_06": 1,
+ "battlepass_visit_athena_location_gas_station_07": 1,
+ "battlepass_visit_athena_location_gas_station_08": 1,
+ "battlepass_visit_athena_location_gas_station_09": 1,
+ "battlepass_visit_athena_location_gas_station_10": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_03",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_Pistol": {
+ "templateId": "Quest:quest_br_eliminate_weapon_pistol",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pistol": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_TiltedTowers": {
+ "templateId": "Quest:quest_br_eliminate_location_tiltedtowers",
+ "challenge_bundle_id": "QS03-S3_Week5_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tiltedtowers": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_AnarchyAcres": {
+ "templateId": "Quest:quest_br_interact_chests_location_anarchyacres",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_anarchyacres": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Use_CozyCampfire": {
+ "templateId": "Quest:quest_br_use_cozycampfire",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_place_athena_camp_fire": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Visit_MountainPeaks": {
+ "templateId": "Quest:quest_br_visit_mountainpeaks",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_visit_athena_location_mountain_summit_01": 1,
+ "battlepass_visit_athena_location_mountain_summit_02": 1,
+ "battlepass_visit_athena_location_mountain_summit_03": 1,
+ "battlepass_visit_athena_location_mountain_summit_04": 1,
+ "battlepass_visit_athena_location_mountain_summit_05": 1,
+ "battlepass_visit_athena_location_mountain_summit_06": 1,
+ "battlepass_visit_athena_location_mountain_summit_07": 1,
+ "battlepass_visit_athena_location_mountain_summit_08": 1,
+ "battlepass_visit_athena_location_mountain_summit_09": 1,
+ "battlepass_visit_athena_location_mountain_summit_10": 1,
+ "battlepass_visit_athena_location_mountain_summit_11": 1,
+ "battlepass_visit_athena_location_mountain_summit_12": 1,
+ "battlepass_visit_athena_location_mountain_summit_13": 1,
+ "battlepass_visit_athena_location_mountain_summit_14": 1,
+ "battlepass_visit_athena_location_mountain_summit_15": 1,
+ "battlepass_visit_athena_location_mountain_summit_16": 1,
+ "battlepass_visit_athena_location_mountain_summit_17": 1,
+ "battlepass_visit_athena_location_mountain_summit_18": 1,
+ "battlepass_visit_athena_location_mountain_summit_19": 1,
+ "battlepass_visit_athena_location_mountain_summit_20": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_03",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_eliminate_explosiveweapon",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_explosives": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_RetailRow": {
+ "templateId": "Quest:quest_br_eliminate_location_retailrow",
+ "challenge_bundle_id": "QS03-S3_Week6_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_retailrow": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_LonelyLodge": {
+ "templateId": "Quest:quest_br_interact_chests_location_lonelylodge",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_lonelylodge": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_damage_shotgun",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chestammoboxsupplydrop_singlematch",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest": 1,
+ "battlepass_interact_athena_ammobox": 1,
+ "battlepass_interact_athena_supplydrop": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_GniceGnomes": {
+ "templateId": "Quest:quest_br_interact_gnicegnomes",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_gnice_gnome_01": 1,
+ "battlepass_interact_athena_gnice_gnome_02": 1,
+ "battlepass_interact_athena_gnice_gnome_03": 1,
+ "battlepass_interact_athena_gnice_gnome_04": 1,
+ "battlepass_interact_athena_gnice_gnome_05": 1,
+ "battlepass_interact_athena_gnice_gnome_06": 1,
+ "battlepass_interact_athena_gnice_gnome_07": 1,
+ "battlepass_interact_athena_gnice_gnome_08": 1,
+ "battlepass_interact_athena_gnice_gnome_09": 1,
+ "battlepass_interact_athena_gnice_gnome_10": 1,
+ "battlepass_interact_athena_gnice_gnome_11": 1,
+ "battlepass_interact_athena_gnice_gnome_12": 1,
+ "battlepass_interact_athena_gnice_gnome_13": 1,
+ "battlepass_interact_athena_gnice_gnome_14": 1,
+ "battlepass_interact_athena_gnice_gnome_15": 1,
+ "battlepass_interact_athena_gnice_gnome_16": 1,
+ "battlepass_interact_athena_gnice_gnome_17": 1,
+ "battlepass_interact_athena_gnice_gnome_18": 1,
+ "battlepass_interact_athena_gnice_gnome_19": 1,
+ "battlepass_interact_athena_gnice_gnome_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_04",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_suppressedweapon",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_suppressed_weapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_ShiftyShafts": {
+ "templateId": "Quest:quest_br_eliminate_location_shiftyshafts",
+ "challenge_bundle_id": "QS03-S3_Week7_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shiftyshafts": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Use_VendingMachine": {
+ "templateId": "Quest:quest_br_use_vendingmachine",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_vendingmachine": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_damage_explosiveweapon",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_explosives": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_SnobbyShores": {
+ "templateId": "Quest:quest_br_interact_chests_location_snobbyshores",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_snobbyshores": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Dance_ScavengerHunt_DanceFloors": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_dancefloors",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_dance_athena_location_disco_01": 1,
+ "battlepass_dance_athena_location_disco_02": 1,
+ "battlepass_dance_athena_location_disco_03": 1,
+ "battlepass_dance_athena_location_disco_04": 1,
+ "battlepass_dance_athena_location_disco_05": 1,
+ "battlepass_dance_athena_location_disco_06": 1,
+ "battlepass_dance_athena_location_disco_07": 1,
+ "battlepass_dance_athena_location_disco_08": 1,
+ "battlepass_dance_athena_location_disco_09": 1,
+ "battlepass_dance_athena_location_disco_10": 1,
+ "battlepass_dance_athena_location_disco_11": 1,
+ "battlepass_dance_athena_location_disco_12": 1,
+ "battlepass_dance_athena_location_disco_13": 1,
+ "battlepass_dance_athena_location_disco_14": 1,
+ "battlepass_dance_athena_location_disco_15": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_05",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_AssaultRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_assaultrifle",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_assault": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_DustyDepot": {
+ "templateId": "Quest:quest_br_eliminate_location_dustydepot",
+ "challenge_bundle_id": "QS03-S3_Week8_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_dustydepot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_Enemy_Buildings": {
+ "templateId": "Quest:quest_br_damage_enemy_buildings",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_buildings": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_HauntedHills": {
+ "templateId": "Quest:quest_br_interact_chests_location_hauntedhills",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_hauntedhills": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Build_Structures": {
+ "templateId": "Quest:quest_br_build_structures",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_build_athena_structures_any": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Visit_TacoShops_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_tacoshops_singlematch",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_visit_athena_taco_shop_01": 1,
+ "battlepass_visit_athena_taco_shop_02": 1,
+ "battlepass_visit_athena_taco_shop_03": 1,
+ "battlepass_visit_athena_taco_shop_04": 1,
+ "battlepass_visit_athena_taco_shop_05": 1,
+ "battlepass_visit_athena_taco_shop_06": 1,
+ "battlepass_visit_athena_taco_shop_07": 1,
+ "battlepass_visit_athena_taco_shop_08": 1,
+ "battlepass_visit_athena_taco_shop_09": 1,
+ "battlepass_visit_athena_taco_shop_10": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_TreasureMap_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_05",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_Shotgun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_shotgun",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shotgun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_LuckyLanding": {
+ "templateId": "Quest:quest_br_eliminate_location_luckylanding",
+ "challenge_bundle_id": "QS03-S3_Week9_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_luckylanding": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Location_FatalFields": {
+ "templateId": "Quest:quest_br_interact_chests_location_fatalfields",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_fatalfields": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_anarchyacres": 1,
+ "battlepass_interact_chest_athena_location_different_dustydepot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_moistymire": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotown": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 12,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Skydive_Rings": {
+ "templateId": "Quest:quest_br_skydive_rings",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_skydive_athena_rings": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_ScavengerHunt_Triangulate_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_04",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Location_PleasantPark": {
+ "templateId": "Quest:quest_br_eliminate_location_pleasantpark",
+ "challenge_bundle_id": "QS03-S3_Week10_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pleasantpark": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Interact_Chests_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chests_singlematch",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_interact_athena_loot_chest_single_match": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Play_Min1Elimination": {
+ "templateId": "Quest:quest_br_play_min1elimination",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_complete_athena_with_killingblow": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage_SingleMatch": {
+ "templateId": "Quest:quest_br_damage_singlematch",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player_single_match": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Weapon_Pickaxe": {
+ "templateId": "Quest:quest_br_eliminate_weapon_pickaxe",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pickaxe": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Eliminate_Singel_Match_Elemeinations": {
+ "templateId": "Quest:quest_br_eliminate_singel_match_elemeinations",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "killingblow_athena_player_singlematch": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Place_Top10_Solo": {
+ "templateId": "Quest:quest_br_place_top10_solo",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_athena_place_solo_top_10": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Place_Top3_Squad": {
+ "templateId": "Quest:quest_br_place_top3_squad",
+ "challenge_bundle_id": "QS03-S3_Tier_100_QuestBundle",
+ "objectives": {
+ "battlepass_athena_place_squad_top_3": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Outlive": {
+ "templateId": "Quest:quest_br_outlive",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_athena_outlive_players": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Play_Min1Friend": {
+ "templateId": "Quest:quest_br_play_min1friend",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_athena_friend": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Damage": {
+ "templateId": "Quest:quest_br_damage",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_damage_athena_player": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Land_Locations_Different": {
+ "templateId": "Quest:quest_br_land_locations_different",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_land_athena_location_anarchyacres": 1,
+ "battlepass_land_athena_location_dustydepot": 1,
+ "battlepass_land_athena_location_fatalfields": 1,
+ "battlepass_land_athena_location_flushfactory": 1,
+ "battlepass_land_athena_location_greasygrove": 1,
+ "battlepass_land_athena_location_hauntedhills": 1,
+ "battlepass_land_athena_location_junkjunction": 1,
+ "battlepass_land_athena_location_lonelylodge": 1,
+ "battlepass_land_athena_location_lootlake": 1,
+ "battlepass_land_athena_location_moistymire": 1,
+ "battlepass_land_athena_location_pleasantpark": 1,
+ "battlepass_land_athena_location_retailrow": 1,
+ "battlepass_land_athena_location_shiftyshafts": 1,
+ "battlepass_land_athena_location_saltysprings": 1,
+ "battlepass_land_athena_location_snobbyshores": 1,
+ "battlepass_land_athena_location_tiltedtowers": 1,
+ "battlepass_land_athena_location_tomatotown": 1,
+ "battlepass_land_athena_location_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Play": {
+ "templateId": "Quest:quest_br_play",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_athena_play_matches": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_LevelUp_SeasonLevel_25": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_25",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "athena_season_levelup": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS03-Quest_BR_Place_Win": {
+ "templateId": "Quest:quest_br_place_win",
+ "challenge_bundle_id": "QS03-S3_Tier_2_QuestBundle",
+ "objectives": {
+ "battlepass_athena_win_match": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season04": {
+ "ChallengeBundleSchedules": {
+ "QS04-Season4_Challenge_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season4_challenge_schedule",
+ "granted_bundles": [
+ "QS04-QuestBundle_S4_Cumulative",
+ "QS04-QuestBundle_S4_ProgressiveA",
+ "QS04-QuestBundle_S4_Week_001",
+ "QS04-QuestBundle_S4_Week_002",
+ "QS04-QuestBundle_S4_Week_003",
+ "QS04-QuestBundle_S4_Week_004",
+ "QS04-QuestBundle_S4_Week_005",
+ "QS04-QuestBundle_S4_Week_006",
+ "QS04-QuestBundle_S4_Week_007",
+ "QS04-QuestBundle_S4_Week_008",
+ "QS04-QuestBundle_S4_Week_009",
+ "QS04-QuestBundle_S4_Week_010"
+ ]
+ },
+ "QS04-Season4_ProgressiveB_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season4_progressiveb_schedule",
+ "granted_bundles": [
+ "QS04-QuestBundle_S4_ProgressiveB"
+ ]
+ },
+ "QS04-Season4_StarterChallenge_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season4_starterchallenge_schedule",
+ "granted_bundles": [
+ "QS04-QuestBundle_S4_Starter"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS04-QuestBundle_S4_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s4_cumulative",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_01",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_02",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_03",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_04",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_05",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_06",
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_07"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AthenaBackpack:bid_057_visitor",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_ProgressiveA": {
+ "templateId": "ChallengeBundle:questbundle_s4_progressivea",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05"
+ ],
+ "completionRewards": {
+ "5": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_047_carbideblue",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_001",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_SniperRifle",
+ "QS04-Quest_BR_Interact_Chests_Location_HauntedHills",
+ "QS04-Quest_BR_Use_PortaFort",
+ "QS04-Quest_BR_Interact_FORTNITE",
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_01",
+ "QS04-Quest_BR_Eliminate_Weapon_Pistol",
+ "QS04-Quest_BR_Eliminate_Location_FlushFactory",
+ "QS04-Quest_BR_S4W1_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_002",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Interact_Chests_Location_GreasyGrove",
+ "QS04-Quest_BR_Interact_GravityStones",
+ "QS04-Quest_BR_Damage_SuppressedWeapon",
+ "QS04-Quest_BR_Dance_ScavengerHunt_Cameras",
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_01",
+ "QS04-Quest_BR_Eliminate_ExplosiveWeapon",
+ "QS04-Quest_BR_Eliminate_Location_TomatoTown",
+ "QS04-Quest_BR_S4W2_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_003",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Revive",
+ "QS04-Quest_BR_Damage_Pistol",
+ "QS04-Quest_BR_Interact_Chests_Location_LonelyLodge",
+ "QS04-Quest_BR_Interact_RubberDuckies",
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_02",
+ "QS04-Quest_BR_Eliminate_Weapon_SniperRifle",
+ "QS04-Quest_BR_Eliminate_Location_TiltedTowers",
+ "QS04-Quest_BR_S4W3_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_004",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_AssaultRifle",
+ "QS04-Quest_BR_Interact_Chests_Location_WailingWoods",
+ "QS04-Quest_BR_Interact_AmmoBoxes_SingleMatch",
+ "QS04-Quest_BR_Visit_ScavengerHunt_StormCircles",
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_02",
+ "QS04-Quest_BR_Eliminate_Trap",
+ "QS04-Quest_BR_Eliminate_Location_SnobbyShores",
+ "QS04-Quest_BR_S4W4_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_005",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_SMG",
+ "QS04-Quest_BR_Interact_Chests_Location_DustyDivot",
+ "QS04-Quest_BR_Use_VendingMachine",
+ "QS04-Quest_BR_Dance_ScavengerHunt_Platforms",
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_03",
+ "QS04-Quest_BR_Eliminate_Weapon_MinigunLMG",
+ "QS04-Quest_BR_Eliminate_Location_LuckyLanding",
+ "QS04-Quest_BR_S4W5_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_006",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Interact_SupplyDrops",
+ "QS04-Quest_BR_Damage_Shotgun",
+ "QS04-Quest_BR_Interact_Chests_Location_LootLake",
+ "QS04-Quest_BR_Spray_SpecificTargets",
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_03",
+ "QS04-Quest_BR_Eliminate_Weapon_SMG",
+ "QS04-Quest_BR_Eliminate_Location_RetailRow",
+ "QS04-Quest_BR_S4W6_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_007",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_Pickaxe",
+ "QS04-Quest_BR_Interact_Chests_Location_RiskyReels",
+ "QS04-Quest_BR_Interact_ForagedItems",
+ "QS04-Quest_BR_Score_Goals",
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_04",
+ "QS04-Quest_BR_Eliminate_Weapon_AssaultRifle",
+ "QS04-Quest_BR_Eliminate_Location_ShiftyShafts",
+ "QS04-Quest_BR_S4W7_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_008",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_Headshot",
+ "QS04-Quest_BR_Interact_Chests_Location_SaltySprings",
+ "QS04-Quest_BR_Interact_Chests_SingleMatch",
+ "QS04-Quest_BR_Interact_GniceGnomes",
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_04",
+ "QS04-Quest_BR_Eliminate_SuppressedWeapon",
+ "QS04-Quest_BR_Eliminate_Location_PleasantPark",
+ "QS04-Quest_BR_S4W8_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_009",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Damage_ExplosiveWeapon",
+ "QS04-Quest_BR_Interact_Chests_Location_MoistyMire",
+ "QS04-Quest_BR_Use_ShoppingCart",
+ "QS04-Quest_BR_Visit_NamedLocations_SingleMatch",
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_05",
+ "QS04-Quest_BR_Eliminate_Weapon_Shotgun",
+ "QS04-Quest_BR_Eliminate_Location_AnarchyAcres",
+ "QS04-Quest_BR_S4W9_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s4_week_010",
+ "challenge_bundle_schedule_id": "QS04-Season4_Challenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Interact_Chests_Location_JunkJunction",
+ "QS04-Quest_BR_Damage_Enemy_Buildings",
+ "QS04-Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch",
+ "QS04-Quest_BR_Skydive_Rings",
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_05",
+ "QS04-Quest_BR_Eliminate",
+ "QS04-Quest_BR_Eliminate_Location_FatalFields",
+ "QS04-Quest_BR_S4W10_Cumulative_CompleteAll"
+ ],
+ "completionRewards": {
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_ProgressiveB": {
+ "templateId": "ChallengeBundle:questbundle_s4_progressiveb",
+ "challenge_bundle_schedule_id": "QS04-Season4_ProgressiveB_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04",
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05"
+ ],
+ "completionRewards": {
+ "5": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_048_carbideblack",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS04-QuestBundle_S4_Starter": {
+ "templateId": "ChallengeBundle:questbundle_s4_starter",
+ "challenge_bundle_schedule_id": "QS04-Season4_StarterChallenge_Schedule",
+ "grantedquestinstanceids": [
+ "QS04-Quest_BR_Outlive",
+ "QS04-Quest_BR_Play_Min1Friend",
+ "QS04-Quest_BR_Damage",
+ "QS04-Quest_BR_Land_Locations_Different",
+ "QS04-Quest_BR_Play",
+ "QS04-Quest_BR_Play_Min1Elimination",
+ "QS04-Quest_BR_Place_Win"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_01": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_01",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_009_s4cumulative1",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_02": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_02",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token2": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_010_s4cumulative2",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_03": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_03",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token3": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_011_s4cumulative3",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_04": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_04",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token4": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_012_s4cumulative4",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_05": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_05",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token5": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_013_s4cumulative5",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_06": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_06",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token6": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_014_s4cumulative6",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4_Cumulative_CollectTokens_07": {
+ "templateId": "Quest:quest_br_s4_cumulative_collecttokens_07",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Cumulative",
+ "objectives": {
+ "battlepass_cumulative_token7": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_015_s4cumulative7",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_quest7",
+ "quantity": 1
+ },
+ {
+ "templateId": "FortQuest:quest_br_s4_cumulative_final",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_01": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressivea_01",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveA",
+ "objectives": {
+ "athena_season_levelup_progressive_a_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_002_carbideblue_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_02": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressivea_02",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveA",
+ "objectives": {
+ "athena_season_levelup_progressive_a_02": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_003_carbideblue_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_03": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressivea_03",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveA",
+ "objectives": {
+ "athena_season_levelup_progressive_a_03": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_004_carbideblue_stage3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_04": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressivea_04",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveA",
+ "objectives": {
+ "athena_season_levelup_progressive_a_04": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_005_carbideblue_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveA_05": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressivea_05",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveA",
+ "objectives": {
+ "athena_season_levelup_progressive_a_05": 65
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_006_carbideblue_stage5",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_012_carbideblue_emissive1",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_013_carbideblue_emissive2",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_014_carbideblue_emissive3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_SniperRifle": {
+ "templateId": "Quest:quest_br_damage_sniperrifle",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_HauntedHills": {
+ "templateId": "Quest:quest_br_interact_chests_location_hauntedhills",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_hauntedhills": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Use_PortaFort": {
+ "templateId": "Quest:quest_br_use_portafort",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_portafort": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_FORTNITE": {
+ "templateId": "Quest:quest_br_interact_fortnite",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_fortnite_letters_01": 1,
+ "battlepass_interact_athena_fortnite_letters_02": 1,
+ "battlepass_interact_athena_fortnite_letters_03": 1,
+ "battlepass_interact_athena_fortnite_letters_04": 1,
+ "battlepass_interact_athena_fortnite_letters_05": 1,
+ "battlepass_interact_athena_fortnite_letters_06": 1,
+ "battlepass_interact_athena_fortnite_letters_07": 1,
+ "battlepass_interact_athena_fortnite_letters_08": 1,
+ "battlepass_interact_athena_fortnite_letters_09": 1,
+ "battlepass_interact_athena_fortnite_letters_10": 1,
+ "battlepass_interact_athena_fortnite_letters_11": 1,
+ "battlepass_interact_athena_fortnite_letters_12": 1,
+ "battlepass_interact_athena_fortnite_letters_13": 1,
+ "battlepass_interact_athena_fortnite_letters_14": 1,
+ "battlepass_interact_athena_fortnite_letters_15": 1,
+ "battlepass_interact_athena_fortnite_letters_16": 1,
+ "battlepass_interact_athena_fortnite_letters_17": 1,
+ "battlepass_interact_athena_fortnite_letters_18": 1,
+ "battlepass_interact_athena_fortnite_letters_19": 1,
+ "battlepass_interact_athena_fortnite_letters_20": 1
+ },
+ "objectiveCompletionCount": 8,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_01",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_Pistol": {
+ "templateId": "Quest:quest_br_eliminate_weapon_pistol",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pistol": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_FlushFactory": {
+ "templateId": "Quest:quest_br_eliminate_location_flushfactory",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_flushfactory": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W1_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w1_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_001",
+ "objectives": {
+ "battlepass_completed_s4w1_quest1": 1,
+ "battlepass_completed_s4w1_quest2": 1,
+ "battlepass_completed_s4w1_quest3": 1,
+ "battlepass_completed_s4w1_quest4": 1,
+ "battlepass_completed_s4w1_quest5": 1,
+ "battlepass_completed_s4w1_quest6": 1,
+ "battlepass_completed_s4w1_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_GreasyGrove": {
+ "templateId": "Quest:quest_br_interact_chests_location_greasygrove",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_greasygrove": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_GravityStones": {
+ "templateId": "Quest:quest_br_interact_gravitystones",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_gravitystones": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_damage_suppressedweapon",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_suppressed_weapon": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Dance_ScavengerHunt_Cameras": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_cameras",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_dance_athena_location_cameras_01": 1,
+ "battlepass_dance_athena_location_cameras_02": 1,
+ "battlepass_dance_athena_location_cameras_03": 1,
+ "battlepass_dance_athena_location_cameras_04": 1,
+ "battlepass_dance_athena_location_cameras_05": 1,
+ "battlepass_dance_athena_location_cameras_06": 1,
+ "battlepass_dance_athena_location_cameras_07": 1,
+ "battlepass_dance_athena_location_cameras_08": 1,
+ "battlepass_dance_athena_location_cameras_09": 1,
+ "battlepass_dance_athena_location_cameras_10": 1,
+ "battlepass_dance_athena_location_cameras_11": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_01",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_eliminate_explosiveweapon",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_explosives": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_TomatoTown": {
+ "templateId": "Quest:quest_br_eliminate_location_tomatotown",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tomatotown": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W2_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w2_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_002",
+ "objectives": {
+ "battlepass_completed_s4w2_quest1": 1,
+ "battlepass_completed_s4w2_quest2": 1,
+ "battlepass_completed_s4w2_quest3": 1,
+ "battlepass_completed_s4w2_quest4": 1,
+ "battlepass_completed_s4w2_quest5": 1,
+ "battlepass_completed_s4w2_quest6": 1,
+ "battlepass_completed_s4w2_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Revive": {
+ "templateId": "Quest:quest_br_revive",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_athena_revive_player": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_Pistol": {
+ "templateId": "Quest:quest_br_damage_pistol",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_pistol": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_LonelyLodge": {
+ "templateId": "Quest:quest_br_interact_chests_location_lonelylodge",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_lonelylodge": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_RubberDuckies": {
+ "templateId": "Quest:quest_br_interact_rubberduckies",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_rubberduckies_01": 1,
+ "battlepass_interact_athena_rubberduckies_02": 1,
+ "battlepass_interact_athena_rubberduckies_03": 1,
+ "battlepass_interact_athena_rubberduckies_04": 1,
+ "battlepass_interact_athena_rubberduckies_05": 1,
+ "battlepass_interact_athena_rubberduckies_06": 1,
+ "battlepass_interact_athena_rubberduckies_07": 1,
+ "battlepass_interact_athena_rubberduckies_08": 1,
+ "battlepass_interact_athena_rubberduckies_09": 1,
+ "battlepass_interact_athena_rubberduckies_10": 1,
+ "battlepass_interact_athena_rubberduckies_11": 1,
+ "battlepass_interact_athena_rubberduckies_12": 1,
+ "battlepass_interact_athena_rubberduckies_13": 1,
+ "battlepass_interact_athena_rubberduckies_14": 1,
+ "battlepass_interact_athena_rubberduckies_15": 1,
+ "battlepass_interact_athena_rubberduckies_16": 1,
+ "battlepass_interact_athena_rubberduckies_17": 1,
+ "battlepass_interact_athena_rubberduckies_18": 1,
+ "battlepass_interact_athena_rubberduckies_19": 1,
+ "battlepass_interact_athena_rubberduckies_20": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_02",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_SniperRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_sniperrifle",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_sniper": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_TiltedTowers": {
+ "templateId": "Quest:quest_br_eliminate_location_tiltedtowers",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tiltedtowers": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W3_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w3_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_003",
+ "objectives": {
+ "battlepass_completed_s4w3_quest1": 1,
+ "battlepass_completed_s4w3_quest2": 1,
+ "battlepass_completed_s4w3_quest3": 1,
+ "battlepass_completed_s4w3_quest4": 1,
+ "battlepass_completed_s4w3_quest5": 1,
+ "battlepass_completed_s4w3_quest6": 1,
+ "battlepass_completed_s4w3_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_AssaultRifle": {
+ "templateId": "Quest:quest_br_damage_assaultrifle",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_asssult": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_WailingWoods": {
+ "templateId": "Quest:quest_br_interact_chests_location_wailingwoods",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_walingwoods": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_AmmoBoxes_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_ammoboxes_singlematch",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "athena_battlepass_loot_ammobox_singlematch": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Visit_ScavengerHunt_StormCircles": {
+ "templateId": "Quest:quest_br_visit_scavengerhunt_stormcircles",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_findcenter_location_stormcircle": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_02",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Trap": {
+ "templateId": "Quest:quest_br_eliminate_trap",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_trap": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_SnobbyShores": {
+ "templateId": "Quest:quest_br_eliminate_location_snobbyshores",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_snobbyshores": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W4_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w4_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_004",
+ "objectives": {
+ "battlepass_completed_s4w4_quest1": 1,
+ "battlepass_completed_s4w4_quest2": 1,
+ "battlepass_completed_s4w4_quest3": 1,
+ "battlepass_completed_s4w4_quest4": 1,
+ "battlepass_completed_s4w4_quest5": 1,
+ "battlepass_completed_s4w4_quest6": 1,
+ "battlepass_completed_s4w4_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_DustyDivot": {
+ "templateId": "Quest:quest_br_interact_chests_location_dustydivot",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_dustydivot": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Use_VendingMachine": {
+ "templateId": "Quest:quest_br_use_vendingmachine",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_vendingmachine": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Dance_ScavengerHunt_Platforms": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_platforms",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_dance_athena_scavengerhunt_platforms": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_03",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_MinigunLMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_minigunlmg",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_minigunlmg": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_LuckyLanding": {
+ "templateId": "Quest:quest_br_eliminate_location_luckylanding",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_luckylanding": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W5_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w5_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_005",
+ "objectives": {
+ "battlepass_completed_s4w5_quest1": 1,
+ "battlepass_completed_s4w5_quest2": 1,
+ "battlepass_completed_s4w5_quest3": 1,
+ "battlepass_completed_s4w5_quest4": 1,
+ "battlepass_completed_s4w5_quest5": 1,
+ "battlepass_completed_s4w5_quest6": 1,
+ "battlepass_completed_s4w5_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_SupplyDrops": {
+ "templateId": "Quest:quest_br_interact_supplydrops",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_supply_drop": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_damage_shotgun",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_LootLake": {
+ "templateId": "Quest:quest_br_interact_chests_location_lootlake",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_lootlake": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Spray_SpecificTargets": {
+ "templateId": "Quest:quest_br_spray_specifictargets",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_spray_athena_heroposters_01": 1,
+ "battlepass_spray_athena_heroposters_02": 1,
+ "battlepass_spray_athena_heroposters_03": 1,
+ "battlepass_spray_athena_heroposters_04": 1,
+ "battlepass_spray_athena_heroposters_05": 1,
+ "battlepass_spray_athena_heroposters_06": 1,
+ "battlepass_spray_athena_heroposters_07": 1,
+ "battlepass_spray_athena_heroposters_08": 1,
+ "battlepass_spray_athena_heroposters_09": 1,
+ "battlepass_spray_athena_heroposters_10": 1,
+ "battlepass_spray_athena_heroposters_11": 1,
+ "battlepass_spray_athena_heroposters_12": 1,
+ "battlepass_spray_athena_heroposters_13": 1,
+ "battlepass_spray_athena_heroposters_14": 1,
+ "battlepass_spray_athena_heroposters_15": 1,
+ "battlepass_spray_athena_heroposters_16": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_03",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_SMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_smg",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_smg": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_RetailRow": {
+ "templateId": "Quest:quest_br_eliminate_location_retailrow",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_retailrow": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W6_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w6_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_006",
+ "objectives": {
+ "battlepass_completed_s4w6_quest1": 1,
+ "battlepass_completed_s4w6_quest2": 1,
+ "battlepass_completed_s4w6_quest3": 1,
+ "battlepass_completed_s4w6_quest4": 1,
+ "battlepass_completed_s4w6_quest5": 1,
+ "battlepass_completed_s4w6_quest6": 1,
+ "battlepass_completed_s4w6_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_RiskyReels": {
+ "templateId": "Quest:quest_br_interact_chests_location_riskyreels",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_riskyreels": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ForagedItems": {
+ "templateId": "Quest:quest_br_interact_forageditems",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_forgeditems": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Score_Goals": {
+ "templateId": "Quest:quest_br_score_goals",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_athena_score_goals_01": 1,
+ "battlepass_athena_score_goals_02": 1,
+ "battlepass_athena_score_goals_03": 1,
+ "battlepass_athena_score_goals_04": 1,
+ "battlepass_athena_score_goals_05": 1,
+ "battlepass_athena_score_goals_06": 1,
+ "battlepass_athena_score_goals_07": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_04",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_AssaultRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_assaultrifle",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_assault": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_ShiftyShafts": {
+ "templateId": "Quest:quest_br_eliminate_location_shiftyshafts",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shiftyshafts": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W7_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w7_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_007",
+ "objectives": {
+ "battlepass_completed_s4w7_quest1": 1,
+ "battlepass_completed_s4w7_quest2": 1,
+ "battlepass_completed_s4w7_quest3": 1,
+ "battlepass_completed_s4w7_quest4": 1,
+ "battlepass_completed_s4w7_quest5": 1,
+ "battlepass_completed_s4w7_quest6": 1,
+ "battlepass_completed_s4w7_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_SaltySprings": {
+ "templateId": "Quest:quest_br_interact_chests_location_saltysprings",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_saltysprings": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chests_singlematch",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_loot_chest_single_match": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_GniceGnomes": {
+ "templateId": "Quest:quest_br_interact_gnicegnomes",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_gnice_gnome_01": 1,
+ "battlepass_interact_athena_gnice_gnome_02": 1,
+ "battlepass_interact_athena_gnice_gnome_03": 1,
+ "battlepass_interact_athena_gnice_gnome_04": 1,
+ "battlepass_interact_athena_gnice_gnome_05": 1,
+ "battlepass_interact_athena_gnice_gnome_06": 1,
+ "battlepass_interact_athena_gnice_gnome_07": 1,
+ "battlepass_interact_athena_gnice_gnome_08": 1,
+ "battlepass_interact_athena_gnice_gnome_09": 1,
+ "battlepass_interact_athena_gnice_gnome_10": 1,
+ "battlepass_interact_athena_gnice_gnome_11": 1,
+ "battlepass_interact_athena_gnice_gnome_12": 1,
+ "battlepass_interact_athena_gnice_gnome_13": 1,
+ "battlepass_interact_athena_gnice_gnome_14": 1,
+ "battlepass_interact_athena_gnice_gnome_15": 1,
+ "battlepass_interact_athena_gnice_gnome_16": 1,
+ "battlepass_interact_athena_gnice_gnome_17": 1,
+ "battlepass_interact_athena_gnice_gnome_18": 1,
+ "battlepass_interact_athena_gnice_gnome_19": 1,
+ "battlepass_interact_athena_gnice_gnome_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_04",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_suppressedweapon",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_suppressed_weapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_PleasantPark": {
+ "templateId": "Quest:quest_br_eliminate_location_pleasantpark",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pleasantpark": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W8_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w8_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_008",
+ "objectives": {
+ "battlepass_completed_s4w8_quest1": 1,
+ "battlepass_completed_s4w8_quest2": 1,
+ "battlepass_completed_s4w8_quest3": 1,
+ "battlepass_completed_s4w8_quest4": 1,
+ "battlepass_completed_s4w8_quest5": 1,
+ "battlepass_completed_s4w8_quest6": 1,
+ "battlepass_completed_s4w8_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_damage_explosiveweapon",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_player_explosives": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_MoistyMire": {
+ "templateId": "Quest:quest_br_interact_chests_location_moistymire",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_moistymire": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Use_ShoppingCart": {
+ "templateId": "Quest:quest_br_use_shoppingcart",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_athena_use_shoppingcart": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Visit_NamedLocations_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_namedlocations_singlematch",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_visit_athena_location_mountain_summit_01": 1,
+ "battlepass_visit_athena_location_mountain_summit_02": 1,
+ "battlepass_visit_athena_location_mountain_summit_03": 1,
+ "battlepass_visit_athena_location_mountain_summit_04": 1,
+ "battlepass_visit_athena_location_mountain_summit_05": 1,
+ "battlepass_visit_athena_location_mountain_summit_06": 1,
+ "battlepass_visit_athena_location_mountain_summit_07": 1,
+ "battlepass_visit_athena_location_mountain_summit_08": 1,
+ "battlepass_visit_athena_location_mountain_summit_09": 1,
+ "battlepass_visit_athena_location_mountain_summit_10": 1,
+ "battlepass_visit_athena_location_mountain_summit_11": 1,
+ "battlepass_visit_athena_location_mountain_summit_12": 1,
+ "battlepass_visit_athena_location_mountain_summit_13": 1,
+ "battlepass_visit_athena_location_mountain_summit_14": 1,
+ "battlepass_visit_athena_location_mountain_summit_15": 1,
+ "battlepass_visit_athena_location_mountain_summit_16": 1,
+ "battlepass_visit_athena_location_mountain_summit_17": 1,
+ "battlepass_visit_athena_location_mountain_summit_18": 1,
+ "battlepass_visit_athena_location_mountain_summit_19": 1,
+ "battlepass_visit_athena_location_mountain_summit_20": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_TreasureMap_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_05",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Weapon_Shotgun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_shotgun",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shotgun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_AnarchyAcres": {
+ "templateId": "Quest:quest_br_eliminate_location_anarchyacres",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_anarchyacres": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W9_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w9_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_009",
+ "objectives": {
+ "battlepass_completed_s4w9_quest1": 1,
+ "battlepass_completed_s4w9_quest2": 1,
+ "battlepass_completed_s4w9_quest3": 1,
+ "battlepass_completed_s4w9_quest4": 1,
+ "battlepass_completed_s4w9_quest5": 1,
+ "battlepass_completed_s4w9_quest6": 1,
+ "battlepass_completed_s4w9_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_Chests_Location_JunkJunction": {
+ "templateId": "Quest:quest_br_interact_chests_location_junkjunction",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_junkjunction": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage_Enemy_Buildings": {
+ "templateId": "Quest:quest_br_damage_enemy_buildings",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player_buildings": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ChestAmmoBoxSupplyDrop_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chestammoboxsupplydrop_singlematch",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest": 1,
+ "battlepass_interact_athena_ammobox": 1,
+ "battlepass_interact_athena_supplydrop": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Skydive_Rings": {
+ "templateId": "Quest:quest_br_skydive_rings",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_skydive_athena_rings": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Interact_ScavengerHunt_Triangulate_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_05",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Eliminate_Location_FatalFields": {
+ "templateId": "Quest:quest_br_eliminate_location_fatalfields",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_fatalfields": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_S4W10_Cumulative_CompleteAll": {
+ "templateId": "Quest:quest_br_s4w10_cumulative_completeall",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Week_010",
+ "objectives": {
+ "battlepass_completed_s4w10_quest1": 1,
+ "battlepass_completed_s4w10_quest2": 1,
+ "battlepass_completed_s4w10_quest3": 1,
+ "battlepass_completed_s4w10_quest4": 1,
+ "battlepass_completed_s4w10_quest5": 1,
+ "battlepass_completed_s4w10_quest6": 1,
+ "battlepass_completed_s4w10_quest7": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "Token:athenabattlepass_s4_weeklychallenge_token",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_01": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressiveb_01",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveB",
+ "objectives": {
+ "athena_season_levelup_progressive_b_01": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_007_carbideblack_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_02": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressiveb_02",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveB",
+ "objectives": {
+ "athena_season_levelup_progressive_b_02": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_008_carbideblack_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_03": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressiveb_03",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveB",
+ "objectives": {
+ "athena_season_levelup_progressive_b_03": 45
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_009_carbideblack_stage3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_04": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressiveb_04",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveB",
+ "objectives": {
+ "athena_season_levelup_progressive_b_04": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_010_carbideblack_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_LevelUp_SeasonLevel_ProgressiveB_05": {
+ "templateId": "Quest:quest_br_levelup_seasonlevel_progressiveb_05",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_ProgressiveB",
+ "objectives": {
+ "athena_season_levelup_progressive_b_05": 80
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:vtid_011_carbideblack_stage5",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_016_carbideblack_emissive1",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_017_carbideblack_emissive2",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:vtid_018_carbideblack_emissive3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Outlive": {
+ "templateId": "Quest:quest_br_outlive",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_athena_outlive_players": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Play_Min1Friend": {
+ "templateId": "Quest:quest_br_play_min1friend",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_athena_friend": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Damage": {
+ "templateId": "Quest:quest_br_damage",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_damage_athena_player": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Land_Locations_Different": {
+ "templateId": "Quest:quest_br_land_locations_different",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_land_athena_location_anarchyacres": 1,
+ "battlepass_land_athena_location_dustydepot": 1,
+ "battlepass_land_athena_location_fatalfields": 1,
+ "battlepass_land_athena_location_flushfactory": 1,
+ "battlepass_land_athena_location_greasygrove": 1,
+ "battlepass_land_athena_location_hauntedhills": 1,
+ "battlepass_land_athena_location_junkjunction": 1,
+ "battlepass_land_athena_location_lonelylodge": 1,
+ "battlepass_land_athena_location_lootlake": 1,
+ "battlepass_land_athena_location_moistymire": 1,
+ "battlepass_land_athena_location_pleasantpark": 1,
+ "battlepass_land_athena_location_retailrow": 1,
+ "battlepass_land_athena_location_shiftyshafts": 1,
+ "battlepass_land_athena_location_saltysprings": 1,
+ "battlepass_land_athena_location_snobbyshores": 1,
+ "battlepass_land_athena_location_tiltedtowers": 1,
+ "battlepass_land_athena_location_tomatotown": 1,
+ "battlepass_land_athena_location_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Play": {
+ "templateId": "Quest:quest_br_play",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_athena_play_matches": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Play_Min1Elimination": {
+ "templateId": "Quest:quest_br_play_min1elimination",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_complete_athena_with_killingblow": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS04-Quest_BR_Place_Win": {
+ "templateId": "Quest:quest_br_place_win",
+ "challenge_bundle_id": "QS04-QuestBundle_S4_Starter",
+ "objectives": {
+ "battlepass_athena_win_match": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season05": {
+ "ChallengeBundleSchedules": {
+ "QS05-Schedule_LTM_Heist": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_heist",
+ "granted_bundles": [
+ "QS05-QuestBundle_LTM_Heist"
+ ]
+ },
+ "QS05-Season5_Free_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season5_free_schedule",
+ "granted_bundles": [
+ "QS05-QuestBundle_S5_Week_001",
+ "QS05-QuestBundle_S5_Week_002",
+ "QS05-QuestBundle_S5_Week_003",
+ "QS05-QuestBundle_S5_Week_004",
+ "QS05-QuestBundle_S5_Week_005",
+ "QS05-QuestBundle_S5_Week_006",
+ "QS05-QuestBundle_S5_Week_007",
+ "QS05-QuestBundle_S5_Week_008",
+ "QS05-QuestBundle_S5_Week_009",
+ "QS05-QuestBundle_S5_Week_010"
+ ]
+ },
+ "QS05-Season5_Paid_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season5_paid_schedule",
+ "granted_bundles": [
+ "QS05-QuestBundle_S5_Cumulative"
+ ]
+ },
+ "QS05-Season5_ProgressiveA_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season5_progressivea_schedule",
+ "granted_bundles": [
+ "QS05-QuestBundle_S5_ProgressiveA"
+ ]
+ },
+ "QS05-Season5_ProgressiveB_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season5_progressiveb_schedule",
+ "granted_bundles": [
+ "QS05-QuestBundle_S5_ProgressiveB"
+ ]
+ },
+ "QS05-Schedule_Birthday2018_BR": {
+ "templateId": "ChallengeBundleSchedule:schedule_birthday2018_br",
+ "granted_bundles": [
+ "QS05-QuestBundle_Birthday2018_BR"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS05-QuestBundle_LTM_Heist": {
+ "templateId": "ChallengeBundle:questbundle_ltm_heist",
+ "challenge_bundle_schedule_id": "QS05-Schedule_LTM_Heist",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Heist_Play_Matches",
+ "QS05-Quest_BR_Heist_Damage_DiamondCarriers",
+ "QS05-Quest_BR_Heist_PickupDiamond_DifferentMatches"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_092_bling",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_001",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Damage_SMG",
+ "QS05-Quest_BR_Interact_SupplyLlamas",
+ "QS05-Quest_BR_Eliminate_ThrownWeapon",
+ "QS05-Quest_BR_Interact_Chests_Location_SnobbyShores",
+ "QS05-Quest_BR_Interact_Floating_Object",
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_01",
+ "QS05-Quest_BR_Eliminate_Location_RetailRow"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_002",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Damage_AssaultRifle",
+ "QS05-Quest_BR_Interact_AmmoBoxes_SingleMatch",
+ "QS05-Quest_BR_Eliminate_Location_ParadisePalms",
+ "QS05-Quest_BR_Score_Baskets",
+ "QS05-Quest_BR_Interact_Chests_Location_LootLake",
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_01",
+ "QS05-Quest_BR_Eliminate_Weapon_SniperRifle"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_003",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Damage_SingleMatch",
+ "QS05-Quest_BR_Use_Launchpad",
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_02",
+ "QS05-Quest_BR_Interact_Chests_Location_FatalFields",
+ "QS05-Quest_BR_Destroy_SpecificTargets",
+ "QS05-Quest_BR_Eliminate_Location_HauntedHills",
+ "QS05-Quest_BR_Eliminate_ExplosiveWeapon"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_004",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Build_Structures",
+ "QS05-Quest_BR_Touch_FlamingRings_Vehicle",
+ "QS05-Quest_BR_Eliminate_Location_DustyDivot",
+ "QS05-Quest_BR_Damage_SniperRifle",
+ "QS05-Quest_BR_Interact_Chests_Location_FlushFactory",
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_02",
+ "QS05-Quest_BR_Eliminate_Weapon_Pistol"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_005",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Interact_Chests_Location_JunkJunction",
+ "QS05-Quest_BR_Use_RiftPortals",
+ "QS05-Quest_BR_Eliminate_SingleMatch",
+ "QS05-Quest_BR_Damage_ThrownWeapons",
+ "QS05-Quest_BR_Score_TeeToGreen",
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_03",
+ "QS05-Quest_BR_Eliminate_Location_ShiftyShafts"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_006",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Damage_Headshot",
+ "QS05-Quest_BR_Collect_BuildingResources",
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_03",
+ "QS05-Quest_BR_Interact_Chests_Location_LonelyLodge",
+ "QS05-Quest_BR_Timed_Trials",
+ "QS05-Quest_BR_Eliminate_Weapon_MinigunLMG",
+ "QS05-Quest_BR_Eliminate_Location_TiltedTowers"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 6000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_007",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Visit_NamedLocations_SingleMatch",
+ "QS05-Quest_BR_Interact_SupplyDrops",
+ "QS05-Quest_BR_Eliminate_Weapon_SMG",
+ "QS05-Quest_BR_Damage_Enemy_Buildings_C4",
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_A",
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_04",
+ "QS05-Quest_BR_Eliminate_Location_LazyLinks"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 7000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_008",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Use_Trap",
+ "QS05-Quest_BR_Interact_Chests_Location_WailingWoods",
+ "QS05-Quest_BR_Eliminate_Weapon_Shotgun",
+ "QS05-Quest_BR_Damage_Pickaxe",
+ "QS05-Quest_BR_Use_RiftPortal_DifferentLocations",
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_04",
+ "QS05-Quest_BR_Eliminate_QuestChain_01_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 8000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_009",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Damage_ExplosiveWeapon",
+ "QS05-Quest_BR_Score_StylePoints_Vehicle",
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_05",
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_A",
+ "QS05-Quest_BR_Visit_StoneHeads",
+ "QS05-Quest_BR_Eliminate_Weapon_AssaultRifle",
+ "QS05-Quest_BR_Eliminate_Location_TomatoTemple"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 9000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s5_week_010",
+ "challenge_bundle_schedule_id": "QS05-Season5_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Interact_JigsawPuzzle",
+ "QS05-Quest_BR_Interact_ForagedItems",
+ "QS05-Quest_BR_Eliminate",
+ "QS05-Quest_BR_Interact_Chests_Location_SaltySprings",
+ "QS05-Quest_BR_Damage",
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_05",
+ "QS05-Quest_BR_Eliminate_QuestChain_02_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s5_cumulative",
+ "challenge_bundle_schedule_id": "QS05-Season5_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_01",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_02",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_03",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_04",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_05",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_06",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_07",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_08",
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_09"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "Token:athenamysterytokenseason5",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "AthenaCharacter:cid_200_athena_commando_m_darkpaintballer",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "AthenaBackpack:bid_100_darkpaintballer",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_ProgressiveA": {
+ "templateId": "ChallengeBundle:questbundle_s5_progressivea",
+ "challenge_bundle_schedule_id": "QS05-Season5_ProgressiveA_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_01",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_02",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_03",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_04",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_05"
+ ],
+ "completionRewards": {
+ "4": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_068_drift",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_S5_ProgressiveB": {
+ "templateId": "ChallengeBundle:questbundle_s5_progressiveb",
+ "challenge_bundle_schedule_id": "QS05-Season5_ProgressiveB_Schedule",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_01",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_02",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_03",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_04",
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_05"
+ ],
+ "completionRewards": {
+ "4": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_069_darkviking",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS05-QuestBundle_Birthday2018_BR": {
+ "templateId": "ChallengeBundle:questbundle_birthday2018_br",
+ "challenge_bundle_schedule_id": "QS05-Schedule_Birthday2018_BR",
+ "grantedquestinstanceids": [
+ "QS05-Quest_BR_Play_Birthday",
+ "QS05-Quest_BR_Damage_Birthday",
+ "QS05-Quest_BR_Dance_ScavengerHunt_BirthdayCakes"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaBackpack:bid_084_birthday2018",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_birthdaychallengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS05-Quest_BR_Heist_Play_Matches": {
+ "templateId": "Quest:quest_br_heist_play_matches",
+ "challenge_bundle_id": "QS05-QuestBundle_LTM_Heist",
+ "objectives": {
+ "ltm_heistbundle_athena_play_matches": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Heist_Damage_DiamondCarriers": {
+ "templateId": "Quest:quest_br_heist_damage_diamondcarriers",
+ "challenge_bundle_id": "QS05-QuestBundle_LTM_Heist",
+ "objectives": {
+ "ltm_heistbundle_damage_athena_player_withdiamond": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_044_bling",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Heist_PickupDiamond_DifferentMatches": {
+ "templateId": "Quest:quest_br_heist_pickupdiamond_differentmatches",
+ "challenge_bundle_id": "QS05-QuestBundle_LTM_Heist",
+ "objectives": {
+ "ltm_heistbundle_athena_pickupdiamond_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_021_bling",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_SupplyLlamas": {
+ "templateId": "Quest:quest_br_interact_supplyllamas",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_open_athena_supply_llama": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_ThrownWeapon": {
+ "templateId": "Quest:quest_br_eliminate_thrownweapon",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_thrownweapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_SnobbyShores": {
+ "templateId": "Quest:quest_br_interact_chests_location_snobbyshores",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_snobbyshores": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Floating_Object": {
+ "templateId": "Quest:quest_br_interact_floating_object",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_athena_generic_collect_a_01": 1,
+ "battlepass_athena_generic_collect_a_02": 1,
+ "battlepass_athena_generic_collect_a_03": 1,
+ "battlepass_athena_generic_collect_a_04": 1,
+ "battlepass_athena_generic_collect_a_05": 1,
+ "battlepass_athena_generic_collect_a_06": 1,
+ "battlepass_athena_generic_collect_a_07": 1,
+ "battlepass_athena_generic_collect_a_08": 1,
+ "battlepass_athena_generic_collect_a_09": 1,
+ "battlepass_athena_generic_collect_a_10": 1,
+ "battlepass_athena_generic_collect_a_11": 1,
+ "battlepass_athena_generic_collect_a_12": 1,
+ "battlepass_athena_generic_collect_a_13": 1,
+ "battlepass_athena_generic_collect_a_14": 1,
+ "battlepass_athena_generic_collect_a_15": 1,
+ "battlepass_athena_generic_collect_a_16": 1,
+ "battlepass_athena_generic_collect_a_17": 1,
+ "battlepass_athena_generic_collect_a_18": 1,
+ "battlepass_athena_generic_collect_a_19": 1,
+ "battlepass_athena_generic_collect_a_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_01",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_RetailRow": {
+ "templateId": "Quest:quest_br_eliminate_location_retailrow",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_retailrow": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_AssaultRifle": {
+ "templateId": "Quest:quest_br_damage_assaultrifle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_asssult": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_AmmoBoxes_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_ammoboxes_singlematch",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "athena_battlepass_loot_ammobox_singlematch": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_ParadisePalms": {
+ "templateId": "Quest:quest_br_eliminate_location_paradisepalms",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_paradisepalms": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Score_Baskets": {
+ "templateId": "Quest:quest_br_score_baskets",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_athena_score_basket_01": 1,
+ "battlepass_athena_score_basket_02": 1,
+ "battlepass_athena_score_basket_03": 1,
+ "battlepass_athena_score_basket_04": 1,
+ "battlepass_athena_score_basket_05": 1,
+ "battlepass_athena_score_basket_06": 1,
+ "battlepass_athena_score_basket_07": 1,
+ "battlepass_athena_score_basket_08": 1,
+ "battlepass_athena_score_basket_09": 1,
+ "battlepass_athena_score_basket_10": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_LootLake": {
+ "templateId": "Quest:quest_br_interact_chests_location_lootlake",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_lootlake": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_01",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_SniperRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_sniperrifle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_sniper": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_SingleMatch": {
+ "templateId": "Quest:quest_br_damage_singlematch",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_single_match": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Use_Launchpad": {
+ "templateId": "Quest:quest_br_use_launchpad",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_jumppad": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_02",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_FatalFields": {
+ "templateId": "Quest:quest_br_interact_chests_location_fatalfields",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_fatalfields": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Destroy_SpecificTargets": {
+ "templateId": "Quest:quest_br_destroy_specifictargets",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_destroy_specifictargets": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_HauntedHills": {
+ "templateId": "Quest:quest_br_eliminate_location_hauntedhills",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_hauntedhills": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_eliminate_explosiveweapon",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_explosives": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Build_Structures": {
+ "templateId": "Quest:quest_br_build_structures",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_build_athena_structures_any": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Touch_FlamingRings_Vehicle": {
+ "templateId": "Quest:quest_br_touch_flamingrings_vehicle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_touch_flamingrings_vehicle_01": 1,
+ "battlepass_touch_flamingrings_vehicle_02": 1,
+ "battlepass_touch_flamingrings_vehicle_03": 1,
+ "battlepass_touch_flamingrings_vehicle_04": 1,
+ "battlepass_touch_flamingrings_vehicle_05": 1,
+ "battlepass_touch_flamingrings_vehicle_06": 1,
+ "battlepass_touch_flamingrings_vehicle_07": 1,
+ "battlepass_touch_flamingrings_vehicle_08": 1,
+ "battlepass_touch_flamingrings_vehicle_09": 1,
+ "battlepass_touch_flamingrings_vehicle_10": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_DustyDivot": {
+ "templateId": "Quest:quest_br_eliminate_location_dustydivot",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_dustydivot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_SniperRifle": {
+ "templateId": "Quest:quest_br_damage_sniperrifle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_FlushFactory": {
+ "templateId": "Quest:quest_br_interact_chests_location_flushfactory",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_flushfactory": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_02",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_Pistol": {
+ "templateId": "Quest:quest_br_eliminate_weapon_pistol",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pistol": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_JunkJunction": {
+ "templateId": "Quest:quest_br_interact_chests_location_junkjunction",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_junkjunction": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Use_RiftPortals": {
+ "templateId": "Quest:quest_br_use_riftportals",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_touch_athena_riftportal": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_SingleMatch": {
+ "templateId": "Quest:quest_br_eliminate_singlematch",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_ThrownWeapons": {
+ "templateId": "Quest:quest_br_damage_thrownweapons",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_thrownweapon": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Score_TeeToGreen": {
+ "templateId": "Quest:quest_br_score_teetogreen",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_athena_score_hole_01": 1,
+ "battlepass_athena_score_hole_02": 1,
+ "battlepass_athena_score_hole_03": 1,
+ "battlepass_athena_score_hole_04": 1,
+ "battlepass_athena_score_hole_05": 1,
+ "battlepass_athena_score_hole_06": 1,
+ "battlepass_athena_score_hole_07": 1,
+ "battlepass_athena_score_hole_08": 1,
+ "battlepass_athena_score_hole_09": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_03",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_ShiftyShafts": {
+ "templateId": "Quest:quest_br_eliminate_location_shiftyshafts",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shiftyshafts": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Collect_BuildingResources": {
+ "templateId": "Quest:quest_br_collect_buildingresources",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_collect_building_resources": 3000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_03",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_LonelyLodge": {
+ "templateId": "Quest:quest_br_interact_chests_location_lonelylodge",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_lonelylodge": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Timed_Trials": {
+ "templateId": "Quest:quest_br_timed_trials",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_complete_timed_trials_01": 1,
+ "battlepass_complete_timed_trials_02": 1,
+ "battlepass_complete_timed_trials_03": 1,
+ "battlepass_complete_timed_trials_04": 1,
+ "battlepass_complete_timed_trials_05": 1,
+ "battlepass_complete_timed_trials_06": 1,
+ "battlepass_complete_timed_trials_07": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_MinigunLMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_minigunlmg",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_minigunlmg": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_TiltedTowers": {
+ "templateId": "Quest:quest_br_eliminate_location_tiltedtowers",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tiltedtowers": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Visit_NamedLocations_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_namedlocations_singlematch",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_mountain_summit_01": 1,
+ "battlepass_visit_athena_location_mountain_summit_02": 1,
+ "battlepass_visit_athena_location_mountain_summit_03": 1,
+ "battlepass_visit_athena_location_mountain_summit_04": 1,
+ "battlepass_visit_athena_location_mountain_summit_05": 1,
+ "battlepass_visit_athena_location_mountain_summit_06": 1,
+ "battlepass_visit_athena_location_mountain_summit_07": 1,
+ "battlepass_visit_athena_location_mountain_summit_08": 1,
+ "battlepass_visit_athena_location_mountain_summit_09": 1,
+ "battlepass_visit_athena_location_mountain_summit_10": 1,
+ "battlepass_visit_athena_location_mountain_summit_11": 1,
+ "battlepass_visit_athena_location_mountain_summit_12": 1,
+ "battlepass_visit_athena_location_mountain_summit_13": 1,
+ "battlepass_visit_athena_location_mountain_summit_14": 1,
+ "battlepass_visit_athena_location_mountain_summit_15": 1,
+ "battlepass_visit_athena_location_mountain_summit_16": 1,
+ "battlepass_visit_athena_location_mountain_summit_17": 1,
+ "battlepass_visit_athena_location_mountain_summit_18": 1,
+ "battlepass_visit_athena_location_mountain_summit_19": 1,
+ "battlepass_visit_athena_location_mountain_summit_20": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_SupplyDrops": {
+ "templateId": "Quest:quest_br_interact_supplydrops",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_supply_drop": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_SMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_smg",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_smg": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_Enemy_Buildings_C4": {
+ "templateId": "Quest:quest_br_damage_enemy_buildings_c4",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_buildings_c4": 8000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_E": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_e",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_D": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_d",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_greasygrove": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_e",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_C": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_c",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_luckylanding": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_B": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_b",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_retailrow": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_01_A": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_a",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_pleasantpark": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_04",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_LazyLinks": {
+ "templateId": "Quest:quest_br_eliminate_location_lazylinks",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_lazylinks": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Use_Trap": {
+ "templateId": "Quest:quest_br_use_trap",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_place_athena_trap": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_WailingWoods": {
+ "templateId": "Quest:quest_br_interact_chests_location_wailingwoods",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_walingwoods": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_Shotgun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_shotgun",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shotgun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Use_RiftPortal_DifferentLocations": {
+ "templateId": "Quest:quest_br_use_riftportal_differentlocations",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_athena_use_location_riftportal_01": 1,
+ "battlepass_athena_use_location_riftportal_02": 1,
+ "battlepass_athena_use_location_riftportal_03": 1,
+ "battlepass_athena_use_location_riftportal_04": 1,
+ "battlepass_athena_use_location_riftportal_05": 1,
+ "battlepass_athena_use_location_riftportal_06": 1,
+ "battlepass_athena_use_location_riftportal_07": 1,
+ "battlepass_athena_use_location_riftportal_08": 1,
+ "battlepass_athena_use_location_riftportal_09": 1,
+ "battlepass_athena_use_location_riftportal_10": 1,
+ "battlepass_athena_use_location_riftportal_11": 1,
+ "battlepass_athena_use_location_riftportal_12": 1,
+ "battlepass_athena_use_location_riftportal_13": 1,
+ "battlepass_athena_use_location_riftportal_14": 1,
+ "battlepass_athena_use_location_riftportal_15": 1,
+ "battlepass_athena_use_location_riftportal_16": 1,
+ "battlepass_athena_use_location_riftportal_17": 1,
+ "battlepass_athena_use_location_riftportal_18": 1,
+ "battlepass_athena_use_location_riftportal_19": 1,
+ "battlepass_athena_use_location_riftportal_20": 1,
+ "battlepass_athena_use_location_riftportal_21": 1,
+ "battlepass_athena_use_location_riftportal_22": 1,
+ "battlepass_athena_use_location_riftportal_23": 1,
+ "battlepass_athena_use_location_riftportal_24": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_04",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_01_C": {
+ "templateId": "Quest:quest_br_eliminate_questchain_01_c",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_fatalfields": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_01_B": {
+ "templateId": "Quest:quest_br_eliminate_questchain_01_b",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_lonelylodge": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_01_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_01_A": {
+ "templateId": "Quest:quest_br_eliminate_questchain_01_a",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_greasygrove": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_01_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_damage_explosiveweapon",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_player_explosives": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Score_StylePoints_Vehicle": {
+ "templateId": "Quest:quest_br_score_stylepoints_vehicle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_athena_score_stylepoints_vehicle": 150000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_TreasureMap_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_05",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_E": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_e",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_riskyreels": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_D": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_d",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_tiltedtowers": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_e",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_C": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_c",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_lazylinks": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_B": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_b",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_shiftyshafts": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_QuestChain_02_A": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_a",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_hauntedhills": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_02_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Visit_StoneHeads": {
+ "templateId": "Quest:quest_br_visit_stoneheads",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_visit_athena_location_stonehead_01": 1,
+ "battlepass_visit_athena_location_stonehead_02": 1,
+ "battlepass_visit_athena_location_stonehead_03": 1,
+ "battlepass_visit_athena_location_stonehead_04": 1,
+ "battlepass_visit_athena_location_stonehead_05": 1,
+ "battlepass_visit_athena_location_stonehead_06": 1,
+ "battlepass_visit_athena_location_stonehead_07": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Weapon_AssaultRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_assaultrifle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_assault": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_Location_TomatoTemple": {
+ "templateId": "Quest:quest_br_eliminate_location_tomatotemple",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tomatotemple": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_JigsawPuzzle": {
+ "templateId": "Quest:quest_br_interact_jigsawpuzzle",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_pieces_01": 1,
+ "battlepass_interact_athena_pieces_02": 1,
+ "battlepass_interact_athena_pieces_03": 1,
+ "battlepass_interact_athena_pieces_04": 1,
+ "battlepass_interact_athena_pieces_05": 1,
+ "battlepass_interact_athena_pieces_06": 1,
+ "battlepass_interact_athena_pieces_07": 1,
+ "battlepass_interact_athena_pieces_08": 1,
+ "battlepass_interact_athena_pieces_09": 1,
+ "battlepass_interact_athena_pieces_10": 1,
+ "battlepass_interact_athena_fortnite_letters_11": 1,
+ "battlepass_interact_athena_pieces_12": 1,
+ "battlepass_interact_athena_pieces_13": 1,
+ "battlepass_interact_athena_pieces_14": 1,
+ "battlepass_interact_athena_pieces_15": 1,
+ "battlepass_interact_athena_pieces_16": 1,
+ "battlepass_interact_athena_pieces_17": 1,
+ "battlepass_interact_athena_pieces_18": 1,
+ "battlepass_interact_athena_pieces_19": 1,
+ "battlepass_interact_athena_pieces_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ForagedItems": {
+ "templateId": "Quest:quest_br_interact_forageditems",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_forgeditems": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_Chests_Location_SaltySprings": {
+ "templateId": "Quest:quest_br_interact_chests_location_saltysprings",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_saltysprings": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage": {
+ "templateId": "Quest:quest_br_damage",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Interact_ScavengerHunt_Triangulate_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_05",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_02_C": {
+ "templateId": "Quest:quest_br_eliminate_questchain_02_c",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_luckylanding": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_02_B": {
+ "templateId": "Quest:quest_br_eliminate_questchain_02_b",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_02_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Eliminate_QuestChain_02_A": {
+ "templateId": "Quest:quest_br_eliminate_questchain_02_a",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_pleasantpark": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_02_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest1": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest1",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_01": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_01",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_027_s5cumulative1",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest2": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest2",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_02": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_02",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token2": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_028_s5cumulative2",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest3": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest3",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_03": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_03",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token3": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_029_s5cumulative3",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest4": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest4",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_04": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_04",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token4": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_030_s5cumulative4",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest5": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest5",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_05": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_05",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token5": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_031_s5cumulative5",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest6": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest6",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_06": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_06",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token6": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_032_s5cumulative6",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest7": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest7",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_07": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_07",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token7": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_033_s5cumulative7",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest7",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest8": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest8",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason05crown",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_08": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_08",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token8": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_047_s5cumulative8",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest8",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Quest9": {
+ "templateId": "Quest:quest_br_s5_cumulative_quest9",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_interact_s5_cumulative_quest_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason05glyph",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_Final": {
+ "templateId": "Quest:quest_br_s5_cumulative_final",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_completed_s5_cumulative_quest1": 1,
+ "battlepass_completed_s5_cumulative_quest2": 1,
+ "battlepass_completed_s5_cumulative_quest3": 1,
+ "battlepass_completed_s5_cumulative_quest4": 1,
+ "battlepass_completed_s5_cumulative_quest5": 1,
+ "battlepass_completed_s5_cumulative_quest6": 1,
+ "battlepass_completed_s5_cumulative_quest7": 1,
+ "battlepass_completed_s5_cumulative_quest8": 1,
+ "battlepass_completed_s5_cumulative_quest9": 1
+ },
+ "objectiveCompletionCount": 9,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_049_s5cumulative10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Cumulative_CollectTokens_09": {
+ "templateId": "Quest:quest_br_s5_cumulative_collecttokens_09",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_Cumulative",
+ "objectives": {
+ "battlepass_season5_cumulative_token9": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_048_s5cumulative9",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_quest9",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s5_cumulative_final",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_01": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressivea_01",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveA",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_a_01": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_019_drift_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_02": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressivea_02",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveA",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_a_02": 25000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_020_drift_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_03": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressivea_03",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveA",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_a_03": 50000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_021_drift_stage3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_04": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressivea_04",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveA",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_a_04": 100000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_022_drift_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveA_05": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressivea_05",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveA",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_a_05": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_023_drift_stage5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_01": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressiveb_01",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveB",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_b_01": 35000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_027_darkviking_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_02": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressiveb_02",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveB",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_b_02": 75000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_028_darkviking_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_03": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressiveb_03",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveB",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_b_03": 125000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_029_darkviking_stage3",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaBackpack:bid_073_darkviking",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_04": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressiveb_04",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveB",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_b_04": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_030_darkviking_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_S5_Gain_SeasonXP_ProgressiveB_05": {
+ "templateId": "Quest:quest_br_s5_gain_seasonxp_progressiveb_05",
+ "challenge_bundle_id": "QS05-QuestBundle_S5_ProgressiveB",
+ "objectives": {
+ "athena_s5_season_gain_xp_progressive_b_05": 500000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_031_darkviking_stage5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Play_Birthday": {
+ "templateId": "Quest:quest_br_play_birthday",
+ "challenge_bundle_id": "QS05-QuestBundle_Birthday2018_BR",
+ "objectives": {
+ "birthdaybundle_athena_play_matches": 14
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Damage_Birthday": {
+ "templateId": "Quest:quest_br_damage_birthday",
+ "challenge_bundle_id": "QS05-QuestBundle_Birthday2018_BR",
+ "objectives": {
+ "birthdaybundle_damage_athena_player": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:emoji_birthday2018",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS05-Quest_BR_Dance_ScavengerHunt_BirthdayCakes": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_birthdaycakes",
+ "challenge_bundle_id": "QS05-QuestBundle_Birthday2018_BR",
+ "objectives": {
+ "birthdaybundle_dance_location_birthdaycake_01": 1,
+ "birthdaybundle_dance_location_birthdaycake_02": 1,
+ "birthdaybundle_dance_location_birthdaycake_03": 1,
+ "birthdaybundle_dance_location_birthdaycake_04": 1,
+ "birthdaybundle_dance_location_birthdaycake_05": 1,
+ "birthdaybundle_dance_location_birthdaycake_06": 1,
+ "birthdaybundle_dance_location_birthdaycake_07": 1,
+ "birthdaybundle_dance_location_birthdaycake_08": 1,
+ "birthdaybundle_dance_location_birthdaycake_09": 1,
+ "birthdaybundle_dance_location_birthdaycake_10": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_040_birthday2018",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season06": {
+ "ChallengeBundleSchedules": {
+ "QS06-Schedule_Fortnitemares": {
+ "templateId": "ChallengeBundleSchedule:schedule_fortnitemares",
+ "granted_bundles": [
+ "QS06-QuestBundle_Fortnitemares_Part1",
+ "QS06-QuestBundle_Fortnitemares_Part2",
+ "QS06-QuestBundle_Fortnitemares_Part3",
+ "QS06-QuestBundle_Fortnitemares_Part4"
+ ]
+ },
+ "QS06-Schedule_LTM_LilKevin": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_lilkevin",
+ "granted_bundles": [
+ "QS06-QuestBundle_LTM_LilKevin"
+ ]
+ },
+ "QS06-Season6_Free_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season6_free_schedule",
+ "granted_bundles": [
+ "QS06-QuestBundle_S6_Week_001",
+ "QS06-QuestBundle_S6_Week_002",
+ "QS06-QuestBundle_S6_Week_003",
+ "QS06-QuestBundle_S6_Week_004",
+ "QS06-QuestBundle_S6_Week_005",
+ "QS06-QuestBundle_S6_Week_006",
+ "QS06-QuestBundle_S6_Week_007",
+ "QS06-QuestBundle_S6_Week_008",
+ "QS06-QuestBundle_S6_Week_009",
+ "QS06-QuestBundle_S6_Week_010"
+ ]
+ },
+ "QS06-Season6_Paid_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season6_paid_schedule",
+ "granted_bundles": [
+ "QS06-QuestBundle_S6_Cumulative"
+ ]
+ },
+ "QS06-Season6_ProgressiveA_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season6_progressivea_schedule",
+ "granted_bundles": [
+ "QS06-QuestBundle_S6_ProgressiveA"
+ ]
+ },
+ "QS06-Season6_ProgressiveB_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season6_progressiveb_schedule",
+ "granted_bundles": [
+ "QS06-QuestBundle_S6_ProgressiveB"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS06-QuestBundle_Fortnitemares_Part1": {
+ "templateId": "ChallengeBundle:questbundle_fortnitemares_part1",
+ "challenge_bundle_schedule_id": "QS06-Schedule_Fortnitemares",
+ "grantedquestinstanceids": [
+ "QS06-Quest_FNM_Elim_AI",
+ "QS06-Quest_FNM_Dam_PistolAR_AI",
+ "QS06-Quest_FNM_Visit_CorruptedAreas",
+ "QS06-Quest_FNM_Dance_ScavengerHunt_Gargoyles"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaDance:emoji_fiery",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_fortnitemareschallenges",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_Fortnitemares_Part2": {
+ "templateId": "ChallengeBundle:questbundle_fortnitemares_part2",
+ "challenge_bundle_schedule_id": "QS06-Schedule_Fortnitemares",
+ "grantedquestinstanceids": [
+ "QS06-Quest_FNM_Elim_AI_Fiend",
+ "QS06-Quest_FNM_Dam_ShotgunSMG_AI",
+ "QS06-Quest_FNM_Eliminate_Location_CorruptedAreas",
+ "QS06-Quest_FNM_Destroy_ScavengerHunt_GhostDecos"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaDance:spid_063_cowboy",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_fortnitemareschallenges",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_Fortnitemares_Part3": {
+ "templateId": "ChallengeBundle:questbundle_fortnitemares_part3",
+ "challenge_bundle_schedule_id": "QS06-Schedule_Fortnitemares",
+ "grantedquestinstanceids": [
+ "QS06-Quest_FNM_Elim_AI_Brute",
+ "QS06-Quest_FNM_Dam_ExplosiveWeapons_AI",
+ "QS06-Quest_FNM_Interact_Chests_Location_CorruptedAreas",
+ "QS06-Quest_FNM_Visit_Chain1_WailingWoods"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_31_greenflame",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_fortnitemareschallenges",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_Fortnitemares_Part4": {
+ "templateId": "ChallengeBundle:questbundle_fortnitemares_part4",
+ "challenge_bundle_schedule_id": "QS06-Schedule_Fortnitemares",
+ "grantedquestinstanceids": [
+ "QS06-Quest_FNM_Elim_AI_Elite",
+ "QS06-Quest_FNM_Damage_MonsterSpawners",
+ "QS06-Quest_FNM_Dam_AI_SingleMatch",
+ "QS06-Quest_FNM_Visit_CorruptedAreas_SingleMatch",
+ "QS06-Quest_FNM_Destroy_MonsterSpawners",
+ "QS06-Quest_FNM_CompleteQuests"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaGlider:glider_id_088_evilcowboy",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_fortnitemareschallenges",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_LTM_LilKevin": {
+ "templateId": "ChallengeBundle:questbundle_ltm_lilkevin",
+ "challenge_bundle_schedule_id": "QS06-Schedule_LTM_LilKevin",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_LilKevin_Play_Matches",
+ "QS06-Quest_BR_LilKevin_Gain_XP",
+ "QS06-Quest_BR_LilKevin_Outlive_Opponents"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaBackpack:bid_147_lilkev",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_fortnitemareschallenges",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_001",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Collect_LegendaryItem_DifferentMatches",
+ "QS06-Quest_BR_Heal_CozyCampfire_",
+ "QS06-Quest_BR_Interact_Chests_ChainSearch",
+ "QS06-Quest_BR_Heal_Shields",
+ "QS06-Quest_BR_Land_Junk_Chain_01A",
+ "QS06-Quest_BR_Dance_ScavengerHunt_Streetlights",
+ "QS06-Quest_BR_Eliminate_Location_Different"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_002",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Visit_SevenSeals",
+ "QS06-Quest_BR_Interact_SpookyMist_DifferentMatches",
+ "QS06-Quest_BR_Damage_AR_Chain_A",
+ "QS06-Quest_BR_Eliminate_MinDistance",
+ "QS06-Quest_BR_Damage_Pistol",
+ "QS06-Quest_BR_Eliminate_Weapon_SMG",
+ "QS06-Quest_BR_Damage_Sniper_Hunting_Chain_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_003",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Revive_DifferentMatches",
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_A",
+ "QS06-Quest_BR_Eliminate_Trap",
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_A",
+ "QS06-Quest_BR_HitPlayer_With_TomatoEmote",
+ "QS06-Quest_BR_Timed_Trials",
+ "QS06-Quest_BR_Eliminate"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_004",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Use_PortaFort",
+ "QS06-Quest_BR_Interact_AmmoBox_Locations_Different",
+ "QS06-Quest_BR_RingDoorbell_DifferentHouses",
+ "QS06-Quest_BR_Land_Chain_02A",
+ "QS06-Quest_BR_Dance_ScavengerHunt_Locations_Chain_01A",
+ "QS06-Quest_BR_Shoot_SpecificTargets",
+ "QS06-Quest_BR_Eliminate_Location_SevenSeals"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_005",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_RecordSpeed_RadarSigns",
+ "QS06-Quest_BR_Touch_FlamingRings_Vehicle",
+ "QS06-Quest_BR_Damage_Chain_Shotgun_A",
+ "QS06-Quest_BR_Eliminate_MaxDistance",
+ "QS06-Quest_BR_Damage_SMG",
+ "QS06-Quest_BR_Eliminate_Weapon_Minigun",
+ "QS06-Quest_BR_Damage_Chain_Pistol_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_006",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Use_FreezeTrap",
+ "QS06-Quest_BR_Interact_Chests_Locations_Different",
+ "QS06-Quest_BR_Eliminate_Weapon_Shotgun",
+ "QS06-Quest_BR_Land_Chain_03A",
+ "QS06-Quest_BR_Damage_Pickaxe",
+ "QS06-Quest_BR_PianoChain_Visit_Map1",
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Grey"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 6000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_007",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Interact_AmmoBoxes_SingleMatch",
+ "QS06-Quest_BR_Damage_Headshot",
+ "QS06-Quest_BR_Damage_SingleMatch_Chain_1",
+ "QS06-Quest_BR_Destroy_TreesRocksCars_Chain_01_A",
+ "QS06-Quest_BR_Skydive_Rings",
+ "QS06-Quest_BR_Interact_HealingItems_QuestChain_01_A",
+ "QS06-Quest_BR_Eliminate_Location_PleasantPark"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 7000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_008",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchA",
+ "QS06-Quest_BR_Dance_FishTrophy_DifferentNamedLocations",
+ "QS06-Quest_BR_Eliminate_SixShooter_HeavyAssault",
+ "QS06-Quest_BR_Destroy_SpecificTargets",
+ "QS06-Quest_BR_TrickPoint_Vehicle",
+ "QS06-Quest_BR_Visit_NamedLocations_SingleMatch",
+ "QS06-Quest_BR_Use_HookPadRift_Chain_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 8000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_009",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_TrickPoint__Airtime_Vehicle",
+ "QS06-Quest_BR_ScavengerHunt_PopBalloons_on_Clowns_DifferentLocations",
+ "QS06-Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_A",
+ "QS06-Quest_BR_Damage_ThrownWeapons",
+ "QS06-Quest_BR_Damage_Enemy_Buildings_TNT",
+ "QS06-Quest_BR_Eliminate_Weapon_Rocket_GrenadeLaucher",
+ "QS06-Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 9000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s6_week_010",
+ "challenge_bundle_schedule_id": "QS06-Season6_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_Build_Structures",
+ "QS06-Quest_BR_Visit_ScavengerHunt_Three_Locs",
+ "QS06-Quest_BR_Interact_Chests_Location_TiltedOrParadise",
+ "QS06-Quest_BR_Place_MountedTurret",
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_A",
+ "QS06-Quest_BR_Timed_Trials_Vehicle",
+ "QS06-Quest_BR_Eliminate_QuestChain_03_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s6_cumulative",
+ "challenge_bundle_schedule_id": "QS06-Season6_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_01",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_02",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_03",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_04",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_05",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_06",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_07",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_08",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_09",
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_10"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "Token:athenamysterytokenseason6",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "AthenaCharacter:cid_267_athena_commando_m_robotred",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "AthenaBackpack:bid_148_robotred",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_ProgressiveA": {
+ "templateId": "ChallengeBundle:questbundle_s6_progressivea",
+ "challenge_bundle_schedule_id": "QS06-Season6_ProgressiveA_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_01",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_02",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_03",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_04",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_05",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_01",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_02",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_03"
+ ],
+ "completionRewards": {
+ "5": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_104_cowgirl",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS06-QuestBundle_S6_ProgressiveB": {
+ "templateId": "ChallengeBundle:questbundle_s6_progressiveb",
+ "challenge_bundle_schedule_id": "QS06-Season6_ProgressiveB_Schedule",
+ "grantedquestinstanceids": [
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_01",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_02",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_03",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_04",
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_05",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_01",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_02",
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_03"
+ ],
+ "completionRewards": {
+ "5": [
+ {
+ "templateId": "AthenaBackpack:bid_120_werewolf",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS06-Quest_FNM_Elim_AI": {
+ "templateId": "Quest:quest_fnm_elim_ai",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part1",
+ "objectives": {
+ "fortnitemares_killingblow_athena_ai": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Dam_PistolAR_AI": {
+ "templateId": "Quest:quest_fnm_dam_pistolar_ai",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part1",
+ "objectives": {
+ "fortnitemares_damage_athena_ai_ar_pistol": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Visit_CorruptedAreas": {
+ "templateId": "Quest:quest_fnm_visit_corruptedareas",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part1",
+ "objectives": {
+ "fortnitemares_visit_athena_location_seals": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Dance_ScavengerHunt_Gargoyles": {
+ "templateId": "Quest:quest_fnm_dance_scavengerhunt_gargoyles",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part1",
+ "objectives": {
+ "fortnitemares_dance_location_gargoyles_01": 1,
+ "fortnitemares_dance_location_gargoyles_02": 1,
+ "fortnitemares_dance_location_gargoyles_03": 1,
+ "fortnitemares_dance_location_gargoyles_04": 1,
+ "fortnitemares_dance_location_gargoyles_05": 1,
+ "fortnitemares_dance_location_gargoyles_06": 1,
+ "fortnitemares_dance_location_gargoyles_07": 1,
+ "fortnitemares_dance_location_gargoyles_08": 1,
+ "fortnitemares_dance_location_gargoyles_09": 1,
+ "fortnitemares_dance_location_gargoyles_10": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Elim_AI_Fiend": {
+ "templateId": "Quest:quest_fnm_elim_ai_fiend",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part2",
+ "objectives": {
+ "fortnitemares_killingblow_athena_ai_fiend": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Dam_ShotgunSMG_AI": {
+ "templateId": "Quest:quest_fnm_dam_shotgunsmg_ai",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part2",
+ "objectives": {
+ "fortnitemares_damage_athena_ai_shotgun_smg": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Eliminate_Location_CorruptedAreas": {
+ "templateId": "Quest:quest_fnm_eliminate_location_corruptedareas",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part2",
+ "objectives": {
+ "fortnitemares_killingblow_athena_player_sevenseals": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Destroy_ScavengerHunt_GhostDecos": {
+ "templateId": "Quest:quest_fnm_destroy_scavengerhunt_ghostdecos",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part2",
+ "objectives": {
+ "fortnitemares_destroy_ghostdecos_location_junkjunction": 1,
+ "fortnitemares_destroy_ghostdecos_location_lazylinks": 1,
+ "fortnitemares_destroy_ghostdecos_location_riskyreels": 1,
+ "fortnitemares_destroy_ghostdecos_location_wailingwoods": 1,
+ "fortnitemares_destroy_ghostdecos_location_lonelylodge": 1,
+ "fortnitemares_destroy_ghostdecos_location_tomatotemple": 1,
+ "fortnitemares_destroy_ghostdecos_location_leakylake": 1,
+ "fortnitemares_destroy_ghostdecos_location_hauntedhills": 1,
+ "fortnitemares_destroy_ghostdecos_location_snobbyshores": 1,
+ "fortnitemares_destroy_ghostdecos_location_tiltedtowers": 1,
+ "fortnitemares_destroy_ghostdecos_location_dustydivot": 1,
+ "fortnitemares_destroy_ghostdecos_location_retailrow": 1,
+ "fortnitemares_destroy_ghostdecos_location_paradisepalms": 1,
+ "fortnitemares_destroy_ghostdecos_location_saltysprings": 1,
+ "fortnitemares_destroy_ghostdecos_location_shiftyshafts": 1,
+ "fortnitemares_destroy_ghostdecos_location_greasygrove": 1,
+ "fortnitemares_destroy_ghostdecos_location_flushfactory": 1,
+ "fortnitemares_destroy_ghostdecos_location_fatalfields": 1,
+ "fortnitemares_destroy_ghostdecos_location_luckylanding": 1,
+ "fortnitemares_destroy_ghostdecos_location_pleasantpark": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Elim_AI_Brute": {
+ "templateId": "Quest:quest_fnm_elim_ai_brute",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_killingblow_athena_ai_brute": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Dam_ExplosiveWeapons_AI": {
+ "templateId": "Quest:quest_fnm_dam_explosiveweapons_ai",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_damage_athena_ai_explosive_weapons": 2000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Interact_Chests_Location_CorruptedAreas": {
+ "templateId": "Quest:quest_fnm_interact_chests_location_corruptedareas",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_interact_athena_treasurechest_sevenseals": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Visit_Chain3_HauntedHills": {
+ "templateId": "Quest:quest_fnm_visit_chain3_hauntedhills",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_visit_chain_location_hauntedhills": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 200
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Visit_Chain2_FatalFields": {
+ "templateId": "Quest:quest_fnm_visit_chain2_fatalfields",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_visit_chain_location_fatalfields": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 150
+ },
+ {
+ "templateId": "Quest:quest_fnm_visit_chain3_hauntedhills",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Visit_Chain1_WailingWoods": {
+ "templateId": "Quest:quest_fnm_visit_chain1_wailingwoods",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part3",
+ "objectives": {
+ "fortnitemares_visit_chain_location_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 150
+ },
+ {
+ "templateId": "Quest:quest_fnm_visit_chain2_fatalfields",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Elim_AI_Elite": {
+ "templateId": "Quest:quest_fnm_elim_ai_elite",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_killingblow_athena_ai_elite": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Damage_MonsterSpawners": {
+ "templateId": "Quest:quest_fnm_damage_monsterspawners",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_damage_monsterspawner": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Dam_AI_SingleMatch": {
+ "templateId": "Quest:quest_fnm_dam_ai_singlematch",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_damage_athena_ai_single_match": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Visit_CorruptedAreas_SingleMatch": {
+ "templateId": "Quest:quest_fnm_visit_corruptedareas_singlematch",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_visit_athena_location_seal_01": 1,
+ "fortnitemares_visit_athena_location_seal_02": 1,
+ "fortnitemares_visit_athena_location_seal_03": 1,
+ "fortnitemares_visit_athena_location_seal_04": 1,
+ "fortnitemares_visit_athena_location_seal_05": 1,
+ "fortnitemares_visit_athena_location_seal_06": 1,
+ "fortnitemares_visit_athena_location_seal_07": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_Destroy_MonsterSpawners": {
+ "templateId": "Quest:quest_fnm_destroy_monsterspawners",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_destroy_monsterspawner": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenafortnitemares_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_FNM_CompleteQuests": {
+ "templateId": "Quest:quest_fnm_completequests",
+ "challenge_bundle_id": "QS06-QuestBundle_Fortnitemares_Part4",
+ "objectives": {
+ "fortnitemares_quest_completequests_tokens": 14
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_LilKevin_Play_Matches": {
+ "templateId": "Quest:quest_br_lilkevin_play_matches",
+ "challenge_bundle_id": "QS06-QuestBundle_LTM_LilKevin",
+ "objectives": {
+ "ltm_lil_kevin_athena_play_matches": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_LilKevin_Gain_XP": {
+ "templateId": "Quest:quest_br_lilkevin_gain_xp",
+ "challenge_bundle_id": "QS06-QuestBundle_LTM_LilKevin",
+ "objectives": {
+ "athena_season_xp_gained": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_LilKevin_Outlive_Opponents": {
+ "templateId": "Quest:quest_br_lilkevin_outlive_opponents",
+ "challenge_bundle_id": "QS06-QuestBundle_LTM_LilKevin",
+ "objectives": {
+ "ltm_lil_kevin_athena_outlive": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Collect_LegendaryItem_DifferentMatches": {
+ "templateId": "Quest:quest_br_collect_legendaryitem_differentmatches",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_collect_legendaryitem_differentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Heal_CozyCampfire_": {
+ "templateId": "Quest:quest_br_heal_cozycampfire_",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_heal_athena_camp_fire": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_SupplyLlamas_ChainSearch": {
+ "templateId": "Quest:quest_br_interact_supplyllamas_chainsearch",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_open_athena_supply_llama_chainsearch": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_SupplyDrops_ChainSearch": {
+ "templateId": "Quest:quest_br_interact_supplydrops_chainsearch",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_interact_athena_supply_drop_chainsearch": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_interact_supplyllamas_chainsearch",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_ChainSearch": {
+ "templateId": "Quest:quest_br_interact_chests_chainsearch",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_chain_search_chests": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_interact_supplydrops_chainsearch",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Heal_Shields": {
+ "templateId": "Quest:quest_br_heal_shields",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_heal_athena_shields": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Flush_Chain_01E": {
+ "templateId": "Quest:quest_br_land_flush_chain_01e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_land_athena_location_flush_chain_01e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Fatal_Chain_01D": {
+ "templateId": "Quest:quest_br_land_fatal_chain_01d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_land_athena_location_fatal_chain_01d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_flush_chain_01e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Tilted_Chain_01C": {
+ "templateId": "Quest:quest_br_land_tilted_chain_01c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_land_athena_location_tilted_chain_01c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_fatal_chain_01d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Tomato_Chain_01B": {
+ "templateId": "Quest:quest_br_land_tomato_chain_01b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_land_athena_location_tomato_chain_01b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_tilted_chain_01c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Junk_Chain_01A": {
+ "templateId": "Quest:quest_br_land_junk_chain_01a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_land_athena_location_junk_chain_01a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_tomato_chain_01b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Dance_ScavengerHunt_Streetlights": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_streetlights",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_dance_athena_location_streetlights_01": 1,
+ "battlepass_dance_athena_location_streetlights_02": 1,
+ "battlepass_dance_athena_location_streetlights_03": 1,
+ "battlepass_dance_athena_location_streetlights_04": 1,
+ "battlepass_dance_athena_location_streetlights_05": 1,
+ "battlepass_dance_athena_location_streetlights_06": 1,
+ "battlepass_dance_athena_location_streetlights_07": 1,
+ "battlepass_dance_athena_location_streetlights_08": 1,
+ "battlepass_dance_athena_location_streetlights_09": 1,
+ "battlepass_dance_athena_location_streetlights_10": 1,
+ "battlepass_dance_athena_location_streetlights_11": 1,
+ "battlepass_dance_athena_location_streetlights_12": 1,
+ "battlepass_dance_athena_location_streetlights_13": 1,
+ "battlepass_dance_athena_location_streetlights_14": 1,
+ "battlepass_dance_athena_location_streetlights_15": 1,
+ "battlepass_dance_athena_location_streetlights_16": 1,
+ "battlepass_dance_athena_location_streetlights_17": 1,
+ "battlepass_dance_athena_location_streetlights_18": 1,
+ "battlepass_dance_athena_location_streetlights_19": 1,
+ "battlepass_dance_athena_location_streetlights_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Location_Different": {
+ "templateId": "Quest:quest_br_eliminate_location_different",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_different_junkjunction": 1,
+ "battlepass_killingblow_athena_player_different_hauntedhills": 1,
+ "battlepass_killingblow_athena_player_different_pleasantpartk": 1,
+ "battlepass_killingblow_athena_player_different_lootlake": 1,
+ "battlepass_killingblow_athena_player_different_lazylinks": 1,
+ "battlepass_killingblow_athena_player_different_tomatotemple": 1,
+ "battlepass_killingblow_athena_player_different_riskyreels": 1,
+ "battlepass_killingblow_athena_player_different_wailingwoods": 1,
+ "battlepass_killingblow_athena_player_different_snobbyshores": 1,
+ "battlepass_killingblow_athena_player_different_greasygrove": 1,
+ "battlepass_killingblow_athena_player_different_tiltedtowers": 1,
+ "battlepass_killingblow_athena_player_different_shiftyshafts": 1,
+ "battlepass_killingblow_athena_player_different_dustydivot": 1,
+ "battlepass_killingblow_athena_player_different_saltysprings": 1,
+ "battlepass_killingblow_athena_player_different_retailrow": 1,
+ "battlepass_killingblow_athena_player_different_lonelylodge": 1,
+ "battlepass_killingblow_athena_player_different_flushfactory": 1,
+ "battlepass_killingblow_athena_player_different_luckylanding": 1,
+ "battlepass_killingblow_athena_player_different_fatalfields": 1,
+ "battlepass_killingblow_athena_player_different_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_SevenSeals": {
+ "templateId": "Quest:quest_br_visit_sevenseals",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_seal_01": 1,
+ "battlepass_visit_athena_location_seal_02": 1,
+ "battlepass_visit_athena_location_seal_03": 1,
+ "battlepass_visit_athena_location_seal_04": 1,
+ "battlepass_visit_athena_location_seal_05": 1,
+ "battlepass_visit_athena_location_seal_06": 1,
+ "battlepass_visit_athena_location_seal_07": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_SpookyMist_DifferentMatches": {
+ "templateId": "Quest:quest_br_interact_spookymist_differentmatches",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_interact_athena_spookymist": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_ARSilenced_Chain_C": {
+ "templateId": "Quest:quest_br_damage_arsilenced_chain_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_ar_silenced_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_ARBurst_Chain_B": {
+ "templateId": "Quest:quest_br_damage_arburst_chain_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_ar_burst_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_arsilenced_chain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_AR_Chain_A": {
+ "templateId": "Quest:quest_br_damage_ar_chain_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_ar_standard_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_arburst_chain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_MinDistance": {
+ "templateId": "Quest:quest_br_eliminate_mindistance",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_players_mindistance": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Pistol": {
+ "templateId": "Quest:quest_br_damage_pistol",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_pistol": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_SMG": {
+ "templateId": "Quest:quest_br_eliminate_weapon_smg",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_smg": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Sniper_Heavy_Chain_C": {
+ "templateId": "Quest:quest_br_damage_sniper_heavy_chain_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper_heavy_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Sniper_Bolt_Chain_B": {
+ "templateId": "Quest:quest_br_damage_sniper_bolt_chain_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper_bolt_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_sniper_heavy_chain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Sniper_Hunting_Chain_A": {
+ "templateId": "Quest:quest_br_damage_sniper_hunting_chain_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper_hunting_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_sniper_bolt_chain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Revive_DifferentMatches": {
+ "templateId": "Quest:quest_br_revive_differentmatches",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_athena_revive_player_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_E": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_D": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_greasygrove": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_e",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_C": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_luckylanding": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_B": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_retailrow": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_QuestChain_01_A": {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_questchain_pleasantpark": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_chests_questchain_01_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Trap": {
+ "templateId": "Quest:quest_br_eliminate_trap",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_trap": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_E": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_snobbyshores_chain_01": 1,
+ "battlepass_visit_athena_location_saltysprings_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_D": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_lucklanding_chain_01": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_greasygrove_chain_01": 1,
+ "battlepass_visit_athena_location_lootlake_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_paradisepalms_chain_01": 1,
+ "battlepass_visit_athena_location_dustydivot_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_TwoNamedLocs_Chain_01_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_riskyreels_chain_01": 1,
+ "battlepass_visit_athena_location_wailingwoods_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_HitPlayer_With_TomatoEmote": {
+ "templateId": "Quest:quest_br_hitplayer_with_tomatoemote",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_athena_hitplayer_tomatoemote": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Timed_Trials": {
+ "templateId": "Quest:quest_br_timed_trials",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_complete_timed_trials_01": 1,
+ "battlepass_complete_timed_trials_02": 1,
+ "battlepass_complete_timed_trials_03": 1,
+ "battlepass_complete_timed_trials_04": 1,
+ "battlepass_complete_timed_trials_05": 1,
+ "battlepass_complete_timed_trials_06": 1,
+ "battlepass_complete_timed_trials_07": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Use_PortaFort": {
+ "templateId": "Quest:quest_br_use_portafort",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_portafort": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_AmmoBox_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_ammobox_locations_different",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_interact_ammo_athena_location_different_lazylinks": 1,
+ "battlepass_interact_ammo_athena_location_different_dustydivot": 1,
+ "battlepass_interact_ammo_athena_location_different_fatalfields": 1,
+ "battlepass_interact_ammo_athena_location_different_flushfactory": 1,
+ "battlepass_interact_ammo_athena_location_different_greasygrove": 1,
+ "battlepass_interact_ammo_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_ammo_athena_location_different_junkjunction": 1,
+ "battlepass_interact_ammo_athena_location_different_luckylanding": 1,
+ "battlepass_interact_ammo_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_ammo_athena_location_different_lootlake": 1,
+ "battlepass_interact_ammo_athena_location_different_paradisepalms": 1,
+ "battlepass_interact_ammo_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_ammo_athena_location_different_retailrow": 1,
+ "battlepass_interact_ammo_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_ammo_athena_location_different_saltysprings": 1,
+ "battlepass_interact_ammo_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_ammo_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_ammo_athena_location_different_tomatotown": 1,
+ "battlepass_interact_ammo_athena_location_different_wailingwoods": 1,
+ "battlepass_interact_ammo_athena_location_different_riskyreels": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_RingDoorbell_DifferentHouses": {
+ "templateId": "Quest:quest_br_ringdoorbell_differenthouses",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_ringdoorbell_differenthouses": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_02E": {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_paradise_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_02D": {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_pleasant_chain_02d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_02C": {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_dusty_chain_02c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_02B": {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_wailing_chain_02b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_02A": {
+ "templateId": "Quest:quest_br_land_chain_02a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_greasy_chain_02a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Dance_ScavengerHunt_Locations_Chain_01C": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_locations_chain_01c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_dance_athena_location_01c_throne": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Dance_ScavengerHunt_Locations_Chain_01B": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_locations_chain_01b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_dance_athena_location_chain_01b_pinktree": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_locations_chain_01c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Dance_ScavengerHunt_Locations_Chain_01A": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_locations_chain_01a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_dance_athena_location_chain_01a_clocktower": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_locations_chain_01b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Shoot_SpecificTargets": {
+ "templateId": "Quest:quest_br_shoot_specifictargets",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_shoot_specifictargets_01": 1,
+ "battlepass_shoot_specifictargets_02": 1,
+ "battlepass_shoot_specifictargets_03": 1,
+ "battlepass_shoot_specifictargets_04": 1,
+ "battlepass_shoot_specifictargets_05": 1,
+ "battlepass_shoot_specifictargets_06": 1,
+ "battlepass_shoot_specifictargets_07": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Location_SevenSeals": {
+ "templateId": "Quest:quest_br_eliminate_location_sevenseals",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_sevenseals": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_RecordSpeed_RadarSigns": {
+ "templateId": "Quest:quest_br_recordspeed_radarsigns",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_br_recordspeed_radarsigns_01": 1,
+ "battlepass_br_recordspeed_radarsigns_02": 1,
+ "battlepass_br_recordspeed_radarsigns_03": 1,
+ "battlepass_br_recordspeed_radarsigns_04": 1,
+ "battlepass_br_recordspeed_radarsigns_05": 1,
+ "battlepass_br_recordspeed_radarsigns_06": 1,
+ "battlepass_br_recordspeed_radarsigns_07": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Touch_FlamingRings_Vehicle": {
+ "templateId": "Quest:quest_br_touch_flamingrings_vehicle",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_touch_flamingrings_vehicle_01": 1,
+ "battlepass_touch_flamingrings_vehicle_02": 1,
+ "battlepass_touch_flamingrings_vehicle_03": 1,
+ "battlepass_touch_flamingrings_vehicle_04": 1,
+ "battlepass_touch_flamingrings_vehicle_05": 1,
+ "battlepass_touch_flamingrings_vehicle_06": 1,
+ "battlepass_touch_flamingrings_vehicle_07": 1,
+ "battlepass_touch_flamingrings_vehicle_08": 1,
+ "battlepass_touch_flamingrings_vehicle_09": 1,
+ "battlepass_touch_flamingrings_vehicle_10": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Shotgun_C": {
+ "templateId": "Quest:quest_br_damage_chain_shotgun_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun_c_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Shotgun_B": {
+ "templateId": "Quest:quest_br_damage_chain_shotgun_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun_b_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_shotgun_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Shotgun_A": {
+ "templateId": "Quest:quest_br_damage_chain_shotgun_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun_a_chain": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_shotgun_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_MaxDistance": {
+ "templateId": "Quest:quest_br_eliminate_maxdistance",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_players_maxdistance": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_Minigun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_minigun",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_minigun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Pistol_C": {
+ "templateId": "Quest:quest_br_damage_chain_pistol_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_pistol_c": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Pistol_B": {
+ "templateId": "Quest:quest_br_damage_chain_pistol_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_pistol_b": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_pistol_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Pistol_A": {
+ "templateId": "Quest:quest_br_damage_chain_pistol_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_pistol_a": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_pistol_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Use_FreezeTrap": {
+ "templateId": "Quest:quest_br_use_freezetrap",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_place_athena_trap_freeze": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_anarchyacres": 1,
+ "battlepass_interact_chest_athena_location_different_dustydepot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_moistymire": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotown": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 12,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_Shotgun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_shotgun",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shotgun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_03E": {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_leaky_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_03D": {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_haunted_chain_03d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_03C": {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_retail_chain_03c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_03B": {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_risky_chain_03b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_03A": {
+ "templateId": "Quest:quest_br_land_chain_03a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_shifty_chain_03a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_PianoChain_Play_Piano2": {
+ "templateId": "Quest:quest_br_pianochain_play_piano2",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_piano_chain_play_piano_2": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_PianoChain_Visit_Map2": {
+ "templateId": "Quest:quest_br_pianochain_visit_map2",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_piano_chain_visit_map2": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_pianochain_play_piano2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_PianoChain_Play_Piano1": {
+ "templateId": "Quest:quest_br_pianochain_play_piano1",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_piano_chain_play_piano_1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_pianochain_visit_map2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_PianoChain_Visit_Map1": {
+ "templateId": "Quest:quest_br_pianochain_visit_map1",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_piano_chain_visit_map1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_pianochain_play_piano1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Gold": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_gold",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_goldrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Purple": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_purple",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_epicrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_gold",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Blue": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_blue",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_bluerarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_purple",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Green": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_green",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_greenrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_blue",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_RarityChain_Grey": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_grey",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_greyrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_green",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_AmmoBoxes_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_ammoboxes_singlematch",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_loot_ammobox_singlematch": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_SingleMatch_Chain_3": {
+ "templateId": "Quest:quest_br_damage_singlematch_chain_3",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_singlematch_chain_3": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_SingleMatch_Chain_2": {
+ "templateId": "Quest:quest_br_damage_singlematch_chain_2",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_singlematch_chain_2": 400
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_singlematch_chain_3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_SingleMatch_Chain_1": {
+ "templateId": "Quest:quest_br_damage_singlematch_chain_1",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_singlematch_chain_1": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_damage_singlematch_chain_2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Destroy_TreesRocksCars_Chain_01_C": {
+ "templateId": "Quest:quest_br_destroy_treesrockscars_chain_01_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_destroy_athena_treesrockscars_cars": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Destroy_TreesRocksCars_Chain_01_B": {
+ "templateId": "Quest:quest_br_destroy_treesrockscars_chain_01_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_destroy_athena_treesrockscars_rocks": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_destroy_treesrockscars_chain_01_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Destroy_TreesRocksCars_Chain_01_A": {
+ "templateId": "Quest:quest_br_destroy_treesrockscars_chain_01_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_destroy_athena_treesrockscars_trees": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_destroy_treesrockscars_chain_01_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Skydive_Rings": {
+ "templateId": "Quest:quest_br_skydive_rings",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_skydive_athena_rings": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_HealingItems_QuestChain_01_D": {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_01_d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_heal_player_slurpjuice": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_HealingItems_QuestChain_01_C": {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_01_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_heal_player_medkit": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_01_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_HealingItems_Chain_01_B": {
+ "templateId": "Quest:quest_br_interact_healingitems_chain_01_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_heal_player_bandage": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_01_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_HealingItems_QuestChain_01_A": {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_01_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "athena_battlepass_interact_athena_forageditems_apples": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_interact_healingitems_chain_01_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Location_PleasantPark": {
+ "templateId": "Quest:quest_br_eliminate_location_pleasantpark",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pleasantpark": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchE": {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematche",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_e0": 1,
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_e1": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchD": {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchd",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_d0": 1,
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_d1": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematche",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchC": {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchc",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_c0": 1,
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_c1": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchB": {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchb",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_b0": 1,
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_b1": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_Chain_LonelyRetailJunkPleasantFlushFatalHauntedLazyTomatoShifty_SingleMatchA": {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematcha",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_chain_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_a0": 1,
+ "battlepass_chain_visit_lonelyretailjunkfleasantflushfatalhauntedlazytomatoshifty_singlematch_a1": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_chain_lonelyretailjunkpleasantflushfatalhauntedlazytomatoshifty_singlematchb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Dance_FishTrophy_DifferentNamedLocations": {
+ "templateId": "Quest:quest_br_dance_fishtrophy_differentnamedlocations",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_dance_athena_location_00": 1,
+ "battlepass_dance_athena_location_01": 1,
+ "battlepass_dance_athena_location_02": 1,
+ "battlepass_dance_athena_location_03": 1,
+ "battlepass_dance_athena_location_04": 1,
+ "battlepass_dance_athena_location_05": 1,
+ "battlepass_dance_athena_location_06": 1,
+ "battlepass_dance_athena_location_07": 1,
+ "battlepass_dance_athena_location_08": 1,
+ "battlepass_dance_athena_location_09": 1,
+ "battlepass_dance_athena_location_10": 1,
+ "battlepass_dance_athena_location_11": 1,
+ "battlepass_dance_athena_location_12": 1,
+ "battlepass_dance_athena_location_13": 1,
+ "battlepass_dance_athena_location_14": 1,
+ "battlepass_dance_athena_location_15": 1,
+ "battlepass_dance_athena_location_16": 1,
+ "battlepass_dance_athena_location_17": 1,
+ "battlepass_dance_athena_location_18": 1,
+ "battlepass_dance_athena_location_19": 1,
+ "battlepass_dance_athena_location_20": 1,
+ "battlepass_dance_athena_location_21": 1,
+ "battlepass_dance_athena_location_22": 1,
+ "battlepass_dance_athena_location_23": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_SixShooter_HeavyAssault": {
+ "templateId": "Quest:quest_br_eliminate_sixshooter_heavyassault",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_sixshooter_heavyassault": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Destroy_SpecificTargets": {
+ "templateId": "Quest:quest_br_destroy_specifictargets",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_destroy_specifictargets": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_TrickPoint_Vehicle": {
+ "templateId": "Quest:quest_br_trickpoint_vehicle",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_score_athena_trick_point_vehicle": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_NamedLocations_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_namedlocations_singlematch",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_location_mountain_summit_01": 1,
+ "battlepass_visit_athena_location_mountain_summit_02": 1,
+ "battlepass_visit_athena_location_mountain_summit_03": 1,
+ "battlepass_visit_athena_location_mountain_summit_04": 1,
+ "battlepass_visit_athena_location_mountain_summit_05": 1,
+ "battlepass_visit_athena_location_mountain_summit_06": 1,
+ "battlepass_visit_athena_location_mountain_summit_07": 1,
+ "battlepass_visit_athena_location_mountain_summit_08": 1,
+ "battlepass_visit_athena_location_mountain_summit_09": 1,
+ "battlepass_visit_athena_location_mountain_summit_10": 1,
+ "battlepass_visit_athena_location_mountain_summit_11": 1,
+ "battlepass_visit_athena_location_mountain_summit_12": 1,
+ "battlepass_visit_athena_location_mountain_summit_13": 1,
+ "battlepass_visit_athena_location_mountain_summit_14": 1,
+ "battlepass_visit_athena_location_mountain_summit_15": 1,
+ "battlepass_visit_athena_location_mountain_summit_16": 1,
+ "battlepass_visit_athena_location_mountain_summit_17": 1,
+ "battlepass_visit_athena_location_mountain_summit_18": 1,
+ "battlepass_visit_athena_location_mountain_summit_19": 1,
+ "battlepass_visit_athena_location_mountain_summit_20": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Use_HookPadRift_Chain_C": {
+ "templateId": "Quest:quest_br_use_hookpadrift_chain_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_hookpadrift_chain_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Use_HookPadRift_Chain_B": {
+ "templateId": "Quest:quest_br_use_hookpadrift_chain_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_hookpadrift_chain_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_use_hookpadrift_chain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Use_HookPadRift_Chain_A": {
+ "templateId": "Quest:quest_br_use_hookpadrift_chain_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_008",
+ "objectives": {
+ "battlepass_hookpadrift_chain_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_use_hookpadrift_chain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_TrickPoint__Airtime_Vehicle": {
+ "templateId": "Quest:quest_br_trickpoint__airtime_vehicle",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_trick_point_airtime_vehicle": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_ScavengerHunt_PopBalloons_on_Clowns_DifferentLocations": {
+ "templateId": "Quest:quest_br_scavengerhunt_popballoons_on_clowns_differentlocations",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_popballoons_athena_differentlocations_00": 1,
+ "battlepass_popballoons_athena_differentlocations_01": 1,
+ "battlepass_popballoons_athena_differentlocations_02": 1,
+ "battlepass_popballoons_athena_differentlocations_03": 1,
+ "battlepass_popballoons_athena_differentlocations_04": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_D": {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_C": {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_c": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_B": {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_b": 75
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chain_Shroom_SmShld_ShldPotion_ChugJug_A": {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_interact_athena_chain_shroom_smshld_shldpot_chugjug_a": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_chain_shroom_smshld_shldpotion_chugjug_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_ThrownWeapons": {
+ "templateId": "Quest:quest_br_damage_thrownweapons",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_player_thrownweapon": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Enemy_Buildings_TNT": {
+ "templateId": "Quest:quest_br_damage_enemy_buildings_tnt",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_enemy_building_tnt": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_Weapon_Rocket_GrenadeLaucher": {
+ "templateId": "Quest:quest_br_eliminate_weapon_rocket_grenadelaucher",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_rocket_or_grenadelauncher_rocket": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_C": {
+ "templateId": "Quest:quest_br_damage_chain_grenage_grenadelauncher_rocket_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_c": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_B": {
+ "templateId": "Quest:quest_br_damage_chain_grenage_grenadelauncher_rocket_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_b": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_grenage_grenadelauncher_rocket_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Damage_Chain_Grenage_GrenadeLauncher_Rocket_A": {
+ "templateId": "Quest:quest_br_damage_chain_grenage_grenadelauncher_rocket_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_chain_grenage_grenadegauncher_rocket_a": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_grenage_grenadelauncher_rocket_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Build_Structures": {
+ "templateId": "Quest:quest_br_build_structures",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_build_athena_structures_any": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Visit_ScavengerHunt_Three_Locs": {
+ "templateId": "Quest:quest_br_visit_scavengerhunt_three_locs",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_visit_location_vikingship": 1,
+ "battlepass_visit_location_camel": 1,
+ "battlepass_visit_location_crashed_battlebus": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Interact_Chests_Location_TiltedOrParadise": {
+ "templateId": "Quest:quest_br_interact_chests_location_tiltedorparadise",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_tilted_or_paradise": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Place_MountedTurret": {
+ "templateId": "Quest:quest_br_place_mountedturret",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_place_athena_trap_mounted_turret": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_E": {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_e",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_land_chain_lazysnobbyluckylonelysalty_e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_D": {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_d",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_land_chain_lazysnobbyluckylonelysalty_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_C": {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_land_chain_lazysnobbyluckylonelysalty_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_B": {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_land_chain_lazysnobbyluckylonelysalty_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Land_Chain_LazySnobbyLuckyLonelySalty_A": {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_land_chain_lazysnobbyluckylonelysalty_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_lazysnobbyluckylonelysalty_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Timed_Trials_Vehicle": {
+ "templateId": "Quest:quest_br_timed_trials_vehicle",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "complete_timed_trial_vehicle_01": 1,
+ "complete_timed_trial_vehicle_02": 1,
+ "complete_timed_trial_vehicle_03": 1,
+ "complete_timed_trial_vehicle_04": 1,
+ "complete_timed_trial_vehicle_05": 1,
+ "complete_timed_trial_vehicle_06": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_QuestChain_03_C": {
+ "templateId": "Quest:quest_br_eliminate_questchain_03_c",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_03_pistol": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_QuestChain_03_B": {
+ "templateId": "Quest:quest_br_eliminate_questchain_03_b",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_03_assaultrifle": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_03_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_Eliminate_QuestChain_03_A": {
+ "templateId": "Quest:quest_br_eliminate_questchain_03_a",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_questchain_03_shotgun": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_questchain_03_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest1": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest1",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_01": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_01",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_062_s6cumulative01",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest2": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest2",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason06werewolf",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_02": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_02",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token2": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_063_s6cumulative02",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest3": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest3",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_03": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_03",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token3": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_064_s6cumulative03",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest4": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest4",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason06tattered",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_04": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_04",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token4": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_065_s6cumulative04",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest5": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest5",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_05": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_05",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token5": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_066_s6cumulative05",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest6": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest6",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason06gravestone",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_06": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_06",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token6": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_067_s6cumulative06",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest7": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest7",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_07": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_07",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token7": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_068_s6cumulative07",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest7",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest8": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest8",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason06robotshoulderlogo",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_08": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_08",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token8": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_069_s6cumulative08",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest8",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest9": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest9",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_09": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_09",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token9": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_070_s6cumulative09",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest9",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_Quest10": {
+ "templateId": "Quest:quest_br_s6_cumulative_quest10",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_interact_s6_cumulative_quest_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason06llamadj",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Cumulative_CollectTokens_10": {
+ "templateId": "Quest:quest_br_s6_cumulative_collecttokens_10",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_Cumulative",
+ "objectives": {
+ "battlepass_season6_cumulative_token10": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_071_s6cumulative10",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s6_cumulative_quest10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_01": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressivea_01",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_season_xp_gained": 20000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_041_cowgirl_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_02": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressivea_02",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_season_xp_gained": 50000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_042_cowgirl_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_03": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressivea_03",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_season_xp_gained": 90000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_043_cowgirl_stage3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_04": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressivea_04",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_season_xp_gained": 140000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_044_cowgirl_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveA_05": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressivea_05",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_season_xp_gained": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_045_cowgirl_stage5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_01": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressivea_01",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_a_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_046_cowgirl_color1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_02": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressivea_02",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_a_02": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_047_cowgirl_color2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveA_03": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressivea_03",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveA",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_a_03": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_048_cowgirl_color3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_01": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressiveb_01",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_season_xp_gained": 30000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_037_werewolf_stage1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_02": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressiveb_02",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_season_xp_gained": 70000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_038_werewolf_stage2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_03": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressiveb_03",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_season_xp_gained": 120000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_049_werewolf_stage3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_04": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressiveb_04",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_season_xp_gained": 180000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_050_werewolf_stage4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Gain_SeasonXP_ProgressiveB_05": {
+ "templateId": "Quest:quest_br_s6_gain_seasonxp_progressiveb_05",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_season_xp_gained": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_051_werewolf_stage5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_01": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressiveb_01",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_b_01": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_039_werewolf_color1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_02": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressiveb_02",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_b_02": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_040_werewolf_color2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS06-Quest_BR_S6_Complete_WeeklyChallenges_ProgressiveB_03": {
+ "templateId": "Quest:quest_br_s6_complete_weeklychallenges_progressiveb_03",
+ "challenge_bundle_id": "QS06-QuestBundle_S6_ProgressiveB",
+ "objectives": {
+ "athena_s6_season_complete_weeklychallenges_progressive_b_03": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_040_werewolf_color3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season07": {
+ "ChallengeBundleSchedules": {
+ "QS07-Schedule_14DaysOfFortnite": {
+ "templateId": "ChallengeBundleSchedule:schedule_14daysoffortnite",
+ "granted_bundles": [
+ "QS07-QuestBundle_14DaysOfFortnite"
+ ]
+ },
+ "QS07-Schedule_Festivus": {
+ "templateId": "ChallengeBundleSchedule:schedule_festivus",
+ "granted_bundles": [
+ "QS07-QuestBundle_Festivus"
+ ]
+ },
+ "QS07-Schedule_WinterDeimos": {
+ "templateId": "ChallengeBundleSchedule:schedule_winterdeimos",
+ "granted_bundles": [
+ "QS07-QuestBundle_WinterDeimos"
+ ]
+ },
+ "QS07-Season7_Free_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_free_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_Week_001",
+ "QS07-QuestBundle_S7_Week_002",
+ "QS07-QuestBundle_S7_Week_003",
+ "QS07-QuestBundle_S7_Week_004",
+ "QS07-QuestBundle_S7_Week_005",
+ "QS07-QuestBundle_S7_Week_006",
+ "QS07-QuestBundle_S7_Week_007",
+ "QS07-QuestBundle_S7_Week_008",
+ "QS07-QuestBundle_S7_Week_009",
+ "QS07-QuestBundle_S7_Week_010"
+ ]
+ },
+ "QS07-Season7_IceKing_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_iceking_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_IceKing"
+ ]
+ },
+ "QS07-Season7_OT_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_ot_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_Overtime"
+ ]
+ },
+ "QS07-Season7_Paid_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_paid_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_Cumulative"
+ ]
+ },
+ "QS07-Season7_ProgressiveA_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_progressivea_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_ArcticSniper",
+ "QS07-QuestBundle_S7_NeonCat"
+ ]
+ },
+ "QS07-Season7_SgtWinter_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season7_sgtwinter_schedule",
+ "granted_bundles": [
+ "QS07-QuestBundle_S7_SgtWinter"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS07-QuestBundle_14DaysOfFortnite": {
+ "templateId": "ChallengeBundle:questbundle_14daysoffortnite",
+ "challenge_bundle_schedule_id": "QS07-Schedule_14DaysOfFortnite",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_FDF_Play_Creative_Mode",
+ "QS07-Quest_BR_FDF_Visit_Giant_Candy_Canes",
+ "QS07-Quest_BR_FDF_Play_Match_Friends",
+ "QS07-Quest_BR_FDF_HitPlayer_With_Snowball",
+ "QS07-Quest_BR_FDF_Fly_Biplane_Rings",
+ "QS07-Quest_BR_FDF_Interact_Goose_Eggs",
+ "QS07-Quest_BR_FDF_Use_Porta_Gift",
+ "QS07-Quest_BR_FDF_Damage_Weapons_Different",
+ "QS07-Quest_BR_FDF_Dance_Christmas_Trees",
+ "QS07-Quest_BR_FDF_TrickPoint_Vehicle_Snowboard",
+ "QS07-Quest_BR_FDF_Thank_Bus_Driver_DifferentMatches",
+ "QS07-Quest_BR_FDF_Destory_Snowflake_Decorations",
+ "QS07-Quest_BR_FDF_Use_Tool_Creative_Mode",
+ "QS07-Quest_BR_FDF_Interact_Chests_Search"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:br14daysribbon",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_Festivus": {
+ "templateId": "ChallengeBundle:questbundle_festivus",
+ "challenge_bundle_schedule_id": "QS07-Schedule_Festivus",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Festivus_Interact_Poster",
+ "QS07-Quest_BR_Festivus_Visit_Stage",
+ "QS07-Quest_BR_Festivus_Dance_Three_Locations"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brfestivus",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_festivus",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_WinterDeimos": {
+ "templateId": "ChallengeBundle:questbundle_winterdeimos",
+ "challenge_bundle_schedule_id": "QS07-Schedule_WinterDeimos",
+ "grantedquestinstanceids": [
+ "QS07-Quest_FNWD_CompleteQuests",
+ "QS07-Quest_FNWD_Elim_AI_Fiend",
+ "QS07-Quest_FNWD_Dam_ExplosiveWeapons_AI",
+ "QS07-Quest_FNWD_Elim_AI_Brute",
+ "QS07-Quest_FNWD_Dam_PistolAR_AI",
+ "QS07-Quest_FNWD_Elim_AI_Throwers",
+ "QS07-Quest_FNWD_Elim_AI_Golden",
+ "QS07-Quest_FNWD_Dam_AI_SingleMatch",
+ "QS07-Quest_FNWD_Destroy_IceFragments_DifferentMatches",
+ "QS07-Quest_FNWD_Elim_AI_Elite",
+ "QS07-Quest_FNWD_Dam_ShotgunSMG_AI",
+ "QS07-Quest_FNWD_Elim_AI",
+ "QS07-Quest_FNWD_Dam_AI"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaGlider:glider_id_114_icequeen",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_001",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Collect_Item_All_Rarity",
+ "QS07-Quest_BR_Dance_ScavengerHunt_Forbidden",
+ "QS07-Quest_BR_Play_Min1Elimination",
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_A",
+ "QS07-Quest_BR_Damage_Headshot",
+ "QS07-Quest_BR_Interact_Chain_Chests_Search_A",
+ "QS07-Quest_BR_Eliminate_Location_Different"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_002",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Interact_Chests_Locations_Different",
+ "QS07-Quest_BR_Damage_Weapons_Different",
+ "QS07-Quest_BR_Eliminate_TwoLocations_01",
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_A",
+ "QS07-Quest_BR_PianoChain_Play_Piano1",
+ "QS07-Quest_BR_Dance_ScavengerHunt_DanceOff_Abandoned_Mansion",
+ "QS07-Quest_BR_Eliminate_MinDistance"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_003",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Use_Zipline_DifferentMatches",
+ "QS07-Quest_BR_Land_Chain_01_A",
+ "QS07-Quest_BR_Eliminate_WeaponRarity_Legendary",
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_PolarTomato",
+ "QS07-Quest_BR_RingDoorbell_DifferentHouses",
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_01",
+ "QS07-Quest_BR_Chain_WeaponDamage_01_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_004",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Use_Biplane",
+ "QS07-Quest_BR_Interact_Fireworks",
+ "QS07-Quest_BR_Eliminate_Location_ExpeditionOutposts",
+ "QS07-Quest_BR_Chain_Destroy_ChairsPolesPalettes_Chairs",
+ "QS07-Quest_BR_Damage_Pickaxe",
+ "QS07-Quest_BR_Eliminate_TwoLocations_03",
+ "QS07-Quest_BR_Chain_Interact_NOMS_01"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_005",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Land_Chain_02A",
+ "QS07-Quest_BR_Damage_Enemy_Buildings",
+ "QS07-Quest_BR_Eliminate_SuppressedWeapon",
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_A",
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_ParadiseWailing",
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_02",
+ "QS07-Quest_BR_Eliminate_MaxDistance"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_006",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Interact_AmmoBox_Locations_Different",
+ "QS07-Quest_BR_Interact_GniceGnomes",
+ "QS07-Quest_BR_Eliminate_TwoLocations_02",
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_02_A",
+ "QS07-Quest_BR_Throw_PuckToy_MinDistance",
+ "QS07-Quest_BR_Damage_Chain_02_A",
+ "QS07-Quest_BR_Damage_Weapons_Different_AllTypes"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 6000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_007",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Visit_ExplorerOutposts",
+ "QS07-Quest_BR_Use_RiftPortals",
+ "QS07-Quest_BR_Eliminate_Weapon_Pistol",
+ "QS07-Quest_BR_Land_Chain_03A",
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_LeakyFrosty",
+ "QS07-Quest_BR_Destroy_Biplanes",
+ "QS07-Quest_BR_Damage_Chain_03_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 7000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_008",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Use_Campfire_Or_Launchpad",
+ "QS07-Quest_BR_Build_Structures",
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_03",
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_04_A",
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_ShiftyLonely",
+ "QS07-Quest_BR_Damage_Passenger_Vehicle",
+ "QS07-Quest_BR_Eliminate_ExplosiveWeapon"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 8000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_009",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Use_Snowman",
+ "QS07-Quest_BR_Land_Chain_04A",
+ "QS07-Quest_BR_Eliminate_TwoLocations_04",
+ "QS07-Quest_BR_Destroy_GoldBalloons",
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_A",
+ "QS07-Quest_BR_Eliminate_Weapon_Shotgun",
+ "QS07-Quest_BR_Timed_Trials_Stormwing"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 9000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s7_week_010",
+ "challenge_bundle_schedule_id": "QS07-Season7_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_Use_Turret_Or_DamageTrap",
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_LazyDusty",
+ "QS07-Quest_BR_Eliminate_Weapon_AssaultRifle",
+ "QS07-Quest_BR_Damage_ScopedWeapon",
+ "QS07-Quest_BR_Shoot_SpecificTargets_Chain_A",
+ "QS07-Quest_BR_Visit_ExplorerOutposts_SingleMatch",
+ "QS07-Quest_BR_Hit_Enemies_Boogie_ChillerGrenade"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_IceKing": {
+ "templateId": "ChallengeBundle:questbundle_s7_iceking",
+ "challenge_bundle_schedule_id": "QS07-Season7_IceKing_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_IceKing_Outlive_01",
+ "QS07-Quest_BR_S7_IceKing_Outlive_02",
+ "QS07-Quest_BR_S7_IceKing_Outlive_03",
+ "QS07-Quest_BR_S7_IceKing_Outlive_04",
+ "QS07-Quest_BR_S7_IceKing_Outlive_05",
+ "QS07-Quest_BR_S7_IceKing_Outlive_06"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07completioniceking",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Overtime": {
+ "templateId": "ChallengeBundle:questbundle_s7_overtime",
+ "challenge_bundle_schedule_id": "QS07-Season7_OT_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_01",
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_03",
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_05",
+ "QS07-Quest_BR_OT_CompleteChallenges",
+ "QS07-Quest_BR_OT_Play_Featured_Creative",
+ "QS07-Quest_BR_Damage_Assault_Or_Pistol",
+ "QS07-Quest_BR_OT_Search_Motel_RVPark",
+ "QS07-Quest_BR_OT_Top15_Duos_WithFriend",
+ "QS07-Quest_BR_OT_RegainHealth_Campfire_DifferentMatches",
+ "QS07-Quest_BR_Visit_NamedLocations",
+ "QS07-Quest_BR_OT_Search_SupplyDrop_DifferentMatches",
+ "QS07-Quest_BR_Revive_DifferentMatches",
+ "QS07-Quest_BR_OT_Visit_Waterfalls",
+ "QS07-Quest_BR_Damage_Shotgun_Or_SMG",
+ "QS07-Quest_BR_OT_Search_Chests_Ammo_TheBlock",
+ "QS07-Quest_BR_OT_Top10_Squads_WithFriend",
+ "QS07-Quest_BR_OT_Play_DriftboardLTM_WithFriend",
+ "QS07-Quest_BR_OT_Thank_Bus_Driver_DifferentMatches",
+ "QS07-Quest_BR_OT_Search_Chests_Ammo_Racetrack_Danceclub",
+ "QS07-Quest_BR_OT_Outlast_75_SingleMatch"
+ ],
+ "completionRewards": {
+ "13": [
+ {
+ "templateId": "HomebaseBannerIcon:brs7overtime",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_overtime",
+ "giftBoxFormatData": {}
+ }
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s7_cumulative",
+ "challenge_bundle_schedule_id": "QS07-Season7_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_Cumulative_Complete_WeeklyChallenges_01",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_001",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_002",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_003",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_004",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_005",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_006",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_007",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_008",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_009",
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_010"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07completionseason7",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_ArcticSniper": {
+ "templateId": "ChallengeBundle:questbundle_s7_arcticsniper",
+ "challenge_bundle_schedule_id": "QS07-Season7_ProgressiveA_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_01",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_02",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_03",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_04",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_05",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_06",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_07",
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_08",
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_01",
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_02",
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_03"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07completionarcticsniper",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_NeonCat": {
+ "templateId": "ChallengeBundle:questbundle_s7_neoncat",
+ "challenge_bundle_schedule_id": "QS07-Season7_ProgressiveA_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_01",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_02",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_03",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_04",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_05",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_06",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_07",
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_08",
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_01",
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_02",
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_03"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07completionneoncat",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS07-QuestBundle_S7_SgtWinter": {
+ "templateId": "ChallengeBundle:questbundle_s7_sgtwinter",
+ "challenge_bundle_schedule_id": "QS07-Season7_SgtWinter_Schedule",
+ "grantedquestinstanceids": [
+ "QS07-Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_01",
+ "QS07-Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_02"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07completionsgtwinter",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS07-Quest_BR_FDF_Play_Creative_Mode": {
+ "templateId": "Quest:quest_br_fdf_play_creative_mode",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_play_athena_creative_mode": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_s",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:spid_082_ornament",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Visit_Giant_Candy_Canes": {
+ "templateId": "Quest:quest_br_fdf_visit_giant_candy_canes",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_visit_athena_giant_candy_cane_01": 1,
+ "fdf_visit_athena_giant_candy_cane_02": 1,
+ "fdf_visit_athena_giant_candy_cane_03": 1,
+ "fdf_visit_athena_giant_candy_cane_04": 1,
+ "fdf_visit_athena_giant_candy_cane_05": 1,
+ "fdf_visit_athena_giant_candy_cane_06": 1,
+ "fdf_visit_athena_giant_candy_cane_07": 1,
+ "fdf_visit_athena_giant_candy_cane_08": 1,
+ "fdf_visit_athena_giant_candy_cane_09": 1,
+ "fdf_visit_athena_giant_candy_cane_10": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_m",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaLoadingScreen:lsid_072_winterlauncher",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Play_Match_Friends": {
+ "templateId": "Quest:quest_br_fdf_play_match_friends",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_play_athena_match_friends": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_l",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:toy_011_snowball",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_HitPlayer_With_Snowball": {
+ "templateId": "Quest:quest_br_fdf_hitplayer_with_snowball",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_hitplayer_athena_snowball": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_s",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:emoji_snowman",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Fly_Biplane_Rings": {
+ "templateId": "Quest:quest_br_fdf_fly_biplane_rings",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_fly_athena_biplane_rings_01": 1,
+ "fdf_fly_athena_biplane_rings_02": 1,
+ "fdf_fly_athena_biplane_rings_03": 1,
+ "fdf_fly_athena_biplane_rings_04": 1,
+ "fdf_fly_athena_biplane_rings_05": 1,
+ "fdf_fly_athena_biplane_rings_06": 1,
+ "fdf_fly_athena_biplane_rings_07": 1,
+ "fdf_fly_athena_biplane_rings_08": 1,
+ "fdf_fly_athena_biplane_rings_09": 1,
+ "fdf_fly_athena_biplane_rings_10": 1,
+ "fdf_fly_athena_biplane_rings_11": 1,
+ "fdf_fly_athena_biplane_rings_12": 1,
+ "fdf_fly_athena_biplane_rings_13": 1,
+ "fdf_fly_athena_biplane_rings_14": 1,
+ "fdf_fly_athena_biplane_rings_15": 1,
+ "fdf_fly_athena_biplane_rings_16": 1,
+ "fdf_fly_athena_biplane_rings_17": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_l",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaBackpack:bid_192_winterholidayfemale",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Interact_Goose_Eggs": {
+ "templateId": "Quest:quest_br_fdf_interact_goose_eggs",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_interact_athena_goose_eggs_01": 1,
+ "fdf_interact_athena_goose_eggs_02": 1,
+ "fdf_interact_athena_goose_eggs_03": 1,
+ "fdf_interact_athena_goose_eggs_04": 1,
+ "fdf_interact_athena_goose_eggs_05": 1,
+ "fdf_interact_athena_goose_eggs_06": 1,
+ "fdf_interact_athena_goose_eggs_07": 1,
+ "fdf_interact_athena_goose_eggs_08": 1,
+ "fdf_interact_athena_goose_eggs_09": 1,
+ "fdf_interact_athena_goose_eggs_10": 1,
+ "fdf_interact_athena_goose_eggs_11": 1,
+ "fdf_interact_athena_goose_eggs_12": 1,
+ "fdf_interact_athena_goose_eggs_13": 1,
+ "fdf_interact_athena_goose_eggs_14": 1,
+ "fdf_interact_athena_goose_eggs_15": 1,
+ "fdf_interact_athena_goose_eggs_16": 1,
+ "fdf_interact_athena_goose_eggs_17": 1,
+ "fdf_interact_athena_goose_eggs_18": 1,
+ "fdf_interact_athena_goose_eggs_19": 1,
+ "fdf_interact_athena_goose_eggs_20": 1
+ },
+ "objectiveCompletionCount": 6,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_m",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaLoadingScreen:lsid_094_holidayspecial",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Use_Porta_Gift": {
+ "templateId": "Quest:quest_br_fdf_use_porta_gift",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_use_athena_portagift": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_xl",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaBackpack:petcarrier_006_gingerbread",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Damage_Weapons_Different": {
+ "templateId": "Quest:quest_br_fdf_damage_weapons_different",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_damage_athena_weapons_different_assault_standard": 1,
+ "fdf_damage_athena_weapons_different_minigun": 1,
+ "fdf_damage_athena_weapons_different_assault_burst": 1,
+ "fdf_damage_athena_weapons_different_assault_scoped": 1,
+ "fdf_damage_athena_weapons_different_grenade_launcher": 1,
+ "fdf_damage_athena_weapons_different_rocket_launcher": 1,
+ "fdf_damage_athena_weapons_different_quad_launcher": 1,
+ "fdf_damage_athena_weapons_different_pistol_handcannon": 1,
+ "fdf_damage_athena_weapons_different_pistol_standard": 1,
+ "fdf_damage_athena_weapons_different_pistol_suppressed": 1,
+ "fdf_damage_athena_weapons_different_shotgun_tactical": 1,
+ "fdf_damage_athena_weapons_different_shotgun_heavy": 1,
+ "fdf_damage_athena_weapons_different_shotgun_pump": 1,
+ "fdf_damage_athena_weapons_different_sniper_bolt": 1,
+ "fdf_damage_athena_weapons_different_sniper_hunting": 1,
+ "fdf_damage_athena_weapons_different_assault_thermal": 1,
+ "fdf_damage_athena_weapons_different_smg_pdw": 1,
+ "fdf_damage_athena_weapons_different_sniper_heavy": 1,
+ "fdf_damage_athena_weapons_different_assault_silenced": 1,
+ "fdf_damage_athena_weapons_different_pistol_sixshooter": 1,
+ "fdf_damage_athena_weapons_different_assault_heavy": 1,
+ "fdf_damage_athena_weapons_different_sword": 1,
+ "fdf_damage_athena_weapons_different_sniper_silenced": 1,
+ "fdf_damage_athena_weapons_different_grenade_standard": 1,
+ "fdf_damage_athena_weapons_different_grenade_gas": 1,
+ "fdf_damage_athena_weapons_different_grenade_tnt": 1,
+ "fdf_damage_athena_weapons_different_trap_spike": 1,
+ "fdf_damage_athena_weapons_different_turret": 1,
+ "fdf_damage_athena_weapons_different_smg_mp": 1
+ },
+ "objectiveCompletionCount": 8,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_l",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:eid_taketheelf",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Dance_Christmas_Trees": {
+ "templateId": "Quest:quest_br_fdf_dance_christmas_trees",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_dance_athena_christmas_tree_01": 1,
+ "fdf_dance_athena_christmas_tree_02": 1,
+ "fdf_dance_athena_christmas_tree_03": 1,
+ "fdf_dance_athena_christmas_tree_04": 1,
+ "fdf_dance_athena_christmas_tree_05": 1,
+ "fdf_dance_athena_christmas_tree_06": 1,
+ "fdf_dance_athena_christmas_tree_07": 1,
+ "fdf_dance_athena_christmas_tree_08": 1,
+ "fdf_dance_athena_christmas_tree_09": 1,
+ "fdf_dance_athena_christmas_tree_10": 1,
+ "fdf_dance_athena_christmas_tree_11": 1,
+ "fdf_dance_athena_christmas_tree_12": 1,
+ "fdf_dance_athena_christmas_tree_13": 1,
+ "fdf_dance_athena_christmas_tree_14": 1,
+ "fdf_dance_athena_christmas_tree_15": 1,
+ "fdf_dance_athena_christmas_tree_16": 1,
+ "fdf_dance_athena_christmas_tree_17": 1,
+ "fdf_dance_athena_christmas_tree_18": 1,
+ "fdf_dance_athena_christmas_tree_19": 1,
+ "fdf_dance_athena_christmas_tree_20": 1
+ },
+ "objectiveCompletionCount": 9,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_s",
+ "quantity": 1
+ },
+ {
+ "templateId": "Token:athenatoken_brseason07_14days",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:br14dayssnowglobe",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_TrickPoint_Vehicle_Snowboard": {
+ "templateId": "Quest:quest_br_fdf_trickpoint_vehicle_snowboard",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_tickpoint_athena_vehicle_dustydivot": 1,
+ "fdf_tickpoint_athena_vehicle_fatalfields": 1,
+ "fdf_tickpoint_athena_vehicle_flushfactory": 1,
+ "fdf_tickpoint_athena_vehicle_frostyflights": 1,
+ "fdf_tickpoint_athena_vehicle_greasygrove": 1,
+ "fdf_tickpoint_athena_vehicle_happyhamlet": 1,
+ "fdf_tickpoint_athena_vehicle_hauntedhills": 1,
+ "fdf_tickpoint_athena_vehicle_junkjunction": 1,
+ "fdf_tickpoint_athena_vehicle_lazylinks": 1,
+ "fdf_tickpoint_athena_vehicle_lonelylodge": 1,
+ "fdf_tickpoint_athena_vehicle_lootlake": 1,
+ "fdf_tickpoint_athena_vehicle_lucklanding": 1,
+ "fdf_tickpoint_athena_vehicle_moistymire": 1,
+ "fdf_tickpoint_athena_vehicle_paradisepalms": 1,
+ "fdf_tickpoint_athena_vehicle_pleasantpark": 1,
+ "fdf_tickpoint_athena_vehicle_polarpeak": 1,
+ "fdf_tickpoint_athena_vehicle_retailrow": 1,
+ "fdf_tickpoint_athena_vehicle_riskyreels": 1,
+ "fdf_tickpoint_athena_vehicle_saltysprings": 1,
+ "fdf_tickpoint_athena_vehicle_shiftyshafts": 1,
+ "fdf_tickpoint_athena_vehicle_snobbyshores": 1,
+ "fdf_tickpoint_athena_vehicle_tiltedtowers": 1,
+ "fdf_tickpoint_athena_vehicle_tomatotemple": 1,
+ "fdf_tickpoint_athena_vehicle_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_s",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:spid_083_winter",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Thank_Bus_Driver_DifferentMatches": {
+ "templateId": "Quest:quest_br_fdf_thank_bus_driver_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_thank_athena_bus_driver_differentmatches": 11
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_l",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_143_flintlockwinter",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Destory_Snowflake_Decorations": {
+ "templateId": "Quest:quest_br_fdf_destory_snowflake_decorations",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_destroy_athena_snowflake_decor": 12
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_s",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaDance:emoji_snowflake",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Use_Tool_Creative_Mode": {
+ "templateId": "Quest:quest_br_fdf_use_tool_creative_mode",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_use_athena_tool_creative_mode": 13
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_m",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaItemWrap:wrap_009_newyears",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_FDF_Interact_Chests_Search": {
+ "templateId": "Quest:quest_br_fdf_interact_chests_search",
+ "challenge_bundle_id": "QS07-QuestBundle_14DaysOfFortnite",
+ "objectives": {
+ "fdf_interact_athena_chests": 14
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_br14dayspresent_xl",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaGlider:glider_id_106_fortnitedj",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Festivus_Interact_Poster": {
+ "templateId": "Quest:quest_br_festivus_interact_poster",
+ "challenge_bundle_id": "QS07-QuestBundle_Festivus",
+ "objectives": {
+ "athena_festivus_interact_poster": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_084_festivus",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Festivus_Visit_Stage": {
+ "templateId": "Quest:quest_br_festivus_visit_stage",
+ "challenge_bundle_id": "QS07-QuestBundle_Festivus",
+ "objectives": {
+ "athena_festivus_visit_stage": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_squishymedley",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Festivus_Dance_Three_Locations": {
+ "templateId": "Quest:quest_br_festivus_dance_three_locations",
+ "challenge_bundle_id": "QS07-QuestBundle_Festivus",
+ "objectives": {
+ "athena_festivus_dance_3_locations_a": 1,
+ "athena_festivus_dance_3_locations_b": 1,
+ "athena_festivus_dance_3_locations_c": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_154_squishy",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_CompleteQuests": {
+ "templateId": "Quest:quest_fnwd_completequests",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_quest_completequests_tokens": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_010_blueemissive",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI_Fiend": {
+ "templateId": "Quest:quest_fnwd_elim_ai_fiend",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai_fiend": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Dam_ExplosiveWeapons_AI": {
+ "templateId": "Quest:quest_fnwd_dam_explosiveweapons_ai",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_damage_athena_ai_explosive_weapons": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI_Brute": {
+ "templateId": "Quest:quest_fnwd_elim_ai_brute",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai_brute": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Dam_PistolAR_AI": {
+ "templateId": "Quest:quest_fnwd_dam_pistolar_ai",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_damage_athena_ai_ar_pistol": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI_Throwers": {
+ "templateId": "Quest:quest_fnwd_elim_ai_throwers",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai_throwers": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI_Golden": {
+ "templateId": "Quest:quest_fnwd_elim_ai_golden",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai_golden": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Dam_AI_SingleMatch": {
+ "templateId": "Quest:quest_fnwd_dam_ai_singlematch",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_damage_athena_ai_single_match": 2000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Destroy_IceFragments_DifferentMatches": {
+ "templateId": "Quest:quest_fnwd_destroy_icefragments_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_destroy_monsterspawner": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI_Elite": {
+ "templateId": "Quest:quest_fnwd_elim_ai_elite",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai_elite": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Dam_ShotgunSMG_AI": {
+ "templateId": "Quest:quest_fnwd_dam_shotgunsmg_ai",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_damage_athena_ai_shotgun_smg": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Elim_AI": {
+ "templateId": "Quest:quest_fnwd_elim_ai",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_killingblow_athena_ai": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_FNWD_Dam_AI": {
+ "templateId": "Quest:quest_fnwd_dam_ai",
+ "challenge_bundle_id": "QS07-QuestBundle_WinterDeimos",
+ "objectives": {
+ "winter_deimos_damage_athena_ai": 20000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athenawinterdeimos_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Collect_Item_All_Rarity": {
+ "templateId": "Quest:quest_br_collect_item_all_rarity",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_collect_all_rarity_common": 1,
+ "battlepass_collect_all_rarity_uncommon": 1,
+ "battlepass_collect_all_rarity_rare": 1,
+ "battlepass_collect_all_rarity_very_rare": 1,
+ "battlepass_collect_all_super_rare": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_ScavengerHunt_Forbidden": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_forbidden",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_dance_athena_location_forbidden_01": 1,
+ "battlepass_dance_athena_location_forbidden_02": 1,
+ "battlepass_dance_athena_location_forbidden_03": 1,
+ "battlepass_dance_athena_location_forbidden_04": 1,
+ "battlepass_dance_athena_location_forbidden_05": 1,
+ "battlepass_dance_athena_location_forbidden_06": 1,
+ "battlepass_dance_athena_location_forbidden_07": 1,
+ "battlepass_dance_athena_location_forbidden_08": 1,
+ "battlepass_dance_athena_location_forbidden_09": 1,
+ "battlepass_dance_athena_location_forbidden_10": 1,
+ "battlepass_dance_athena_location_forbidden_11": 1,
+ "battlepass_dance_athena_location_forbidden_12": 1,
+ "battlepass_dance_athena_location_forbidden_13": 1,
+ "battlepass_dance_athena_location_forbidden_14": 1,
+ "battlepass_dance_athena_location_forbidden_15": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Play_Min1Elimination": {
+ "templateId": "Quest:quest_br_play_min1elimination",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_complete_athena_with_killingblow": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_C": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_B": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_A": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chain_Chests_Search_C": {
+ "templateId": "Quest:quest_br_interact_chain_chests_search_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_chain_chests_search_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chain_Chests_Search_B": {
+ "templateId": "Quest:quest_br_interact_chain_chests_search_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_chain_chests_search_b": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_interact_chain_chests_search_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chain_Chests_Search_A": {
+ "templateId": "Quest:quest_br_interact_chain_chests_search_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_chain_chests_search_a": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_interact_chain_chests_search_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_Location_Different": {
+ "templateId": "Quest:quest_br_eliminate_location_different",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_different_junkjunction": 1,
+ "battlepass_killingblow_athena_player_different_hauntedhills": 1,
+ "battlepass_killingblow_athena_player_different_pleasantpartk": 1,
+ "battlepass_killingblow_athena_player_different_lootlake": 1,
+ "battlepass_killingblow_athena_player_different_lazylinks": 1,
+ "battlepass_killingblow_athena_player_different_tomatotemple": 1,
+ "battlepass_killingblow_athena_player_different_riskyreels": 1,
+ "battlepass_killingblow_athena_player_different_wailingwoods": 1,
+ "battlepass_killingblow_athena_player_different_snobbyshores": 1,
+ "battlepass_killingblow_athena_player_different_greasygrove": 1,
+ "battlepass_killingblow_athena_player_different_tiltedtowers": 1,
+ "battlepass_killingblow_athena_player_different_shiftyshafts": 1,
+ "battlepass_killingblow_athena_player_different_dustydivot": 1,
+ "battlepass_killingblow_athena_player_different_saltysprings": 1,
+ "battlepass_killingblow_athena_player_different_retailrow": 1,
+ "battlepass_killingblow_athena_player_different_lonelylodge": 1,
+ "battlepass_killingblow_athena_player_different_flushfactory": 1,
+ "battlepass_killingblow_athena_player_different_luckylanding": 1,
+ "battlepass_killingblow_athena_player_different_fatalfields": 1,
+ "battlepass_killingblow_athena_player_different_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_anarchyacres": 1,
+ "battlepass_interact_chest_athena_location_different_dustydepot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_moistymire": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotown": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 12,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Weapons_Different": {
+ "templateId": "Quest:quest_br_damage_weapons_different",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_weapons_different_pistol": 1,
+ "battlepass_damage_athena_weapons_different_assault": 1,
+ "battlepass_damage_athena_weapons_different_shotgun": 1,
+ "battlepass_damage_athena_weapons_different_sniper": 1,
+ "battlepass_damage_athena_weapons_different_explosives": 1,
+ "battlepass_damage_athena_weapons_different_smg": 1,
+ "battlepass_damage_athena_weapons_different_minigun": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_TwoLocations_01": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_snobbyshores": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_E": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_snobbyshores_chain_01": 1,
+ "battlepass_visit_athena_location_saltysprings_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_D": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_lucklanding_chain_01": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_greasygrove_chain_01": 1,
+ "battlepass_visit_athena_location_lootlake_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_paradisepalms_chain_01": 1,
+ "battlepass_visit_athena_location_dustydivot_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_01_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_riskyreels_chain_01": 1,
+ "battlepass_visit_athena_location_wailingwoods_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_PianoChain_Play_Piano2": {
+ "templateId": "Quest:quest_br_pianochain_play_piano2",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_piano_chain_play_piano_2": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_PianoChain_Visit_Map2": {
+ "templateId": "Quest:quest_br_pianochain_visit_map2",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_piano_chain_visit_map2": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_pianochain_play_piano2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_PianoChain_Play_Piano1": {
+ "templateId": "Quest:quest_br_pianochain_play_piano1",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_piano_chain_play_piano_1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_pianochain_visit_map2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_ScavengerHunt_DanceOff_Abandoned_Mansion": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_danceoff_abandoned_mansion",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_danceoff_athena_scavengerhunt_abandoned_mansion": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_MinDistance": {
+ "templateId": "Quest:quest_br_eliminate_mindistance",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_players_mindistance": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_Zipline_DifferentMatches": {
+ "templateId": "Quest:quest_br_use_zipline_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_use_item_zipline": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_01_E": {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_land_athena_chain_tilted_01_e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_01_D": {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_01_C": {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_land_athena_chain_lucky_01_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_01_B": {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_land_athena_chain_pleasant_01_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_01_A": {
+ "templateId": "Quest:quest_br_land_chain_01_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_a_": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_WeaponRarity_Legendary": {
+ "templateId": "Quest:quest_br_eliminate_weaponrarity_legendary",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_goldrarity": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_PolarTomato": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_polartomato",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_polartomato": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_RingDoorbell_DifferentHouses": {
+ "templateId": "Quest:quest_br_ringdoorbell_differenthouses",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_ringdoorbell_differenthouses": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_WeaponDamage_01_C": {
+ "templateId": "Quest:quest_br_chain_weapondamage_01_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_snipers_chain_01": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_WeaponDamage_01_B": {
+ "templateId": "Quest:quest_br_chain_weapondamage_01_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_pistols_chain_01": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_chain_weapondamage_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_WeaponDamage_01_A": {
+ "templateId": "Quest:quest_br_chain_weapondamage_01_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_shotguns_chain_01": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_chain_weapondamage_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_Biplane": {
+ "templateId": "Quest:quest_br_use_biplane",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "battlepass_athena_use_biplane": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Fireworks": {
+ "templateId": "Quest:quest_br_interact_fireworks",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "battlepass_interact_athena_fireworks_01": 1,
+ "battlepass_interact_athena_fireworks_02": 1,
+ "battlepass_interact_athena_fireworks_03": 1,
+ "battlepass_interact_athena_fireworks_04": 1,
+ "battlepass_interact_athena_fireworks_05": 1,
+ "battlepass_interact_athena_fireworks_06": 1,
+ "battlepass_interact_athena_fireworks_07": 1,
+ "battlepass_interact_athena_fireworks_08": 1,
+ "battlepass_interact_athena_fireworks_09": 1,
+ "battlepass_interact_athena_fireworks_10": 1,
+ "battlepass_interact_athena_fireworks_11": 1,
+ "battlepass_interact_athena_fireworks_12": 1,
+ "battlepass_interact_athena_fireworks_13": 1,
+ "battlepass_interact_athena_fireworks_14": 1,
+ "battlepass_interact_athena_fireworks_15": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_Location_ExpeditionOutposts": {
+ "templateId": "Quest:quest_br_eliminate_location_expeditionoutposts",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_expeditionoutposts": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Destroy_ChairsPolesPalettes_WoodPalettes": {
+ "templateId": "Quest:quest_br_chain_destroy_chairspolespalettes_woodpalettes",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_destroy_chairspolespalettes_woodenpalettes": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Destroy_ChairsPolesPalettes_TelephonePoles": {
+ "templateId": "Quest:quest_br_chain_destroy_chairspolespalettes_telephonepoles",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_destroy_chairspolespalettes_telephonepoles": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_chain_destroy_chairspolespalettes_woodpalettes",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Destroy_ChairsPolesPalettes_Chairs": {
+ "templateId": "Quest:quest_br_chain_destroy_chairspolespalettes_chairs",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_destroy_chairspolespalettes_chairs": 80
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_chain_destroy_chairspolespalettes_telephonepoles",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_TwoLocations_03": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_happy_or_pleasant": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Visit_NOMS_05": {
+ "templateId": "Quest:quest_br_chain_visit_noms_05",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_visit_noms_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Interact_NOMS_04": {
+ "templateId": "Quest:quest_br_chain_interact_noms_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_interact_noms_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_visit_noms_05",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Interact_NOMS_03": {
+ "templateId": "Quest:quest_br_chain_interact_noms_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_interact_noms_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_interact_noms_04",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Interact_NOMS_02": {
+ "templateId": "Quest:quest_br_chain_interact_noms_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_interact_noms_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_interact_noms_03",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Chain_Interact_NOMS_01": {
+ "templateId": "Quest:quest_br_chain_interact_noms_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_004",
+ "objectives": {
+ "athena_battlepass_interact_noms_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_interact_noms_02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_02E": {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_land_athena_location_paradise_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_02D": {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_land_athena_location_pleasant_chain_02d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_02C": {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_land_athena_location_dusty_chain_02c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_02B": {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_land_athena_location_wailing_chain_02b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_02A": {
+ "templateId": "Quest:quest_br_land_chain_02a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_land_athena_location_greasy_chain_02a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Enemy_Buildings": {
+ "templateId": "Quest:quest_br_damage_enemy_buildings",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_buildings": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_suppressedweapon",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_suppressed_weapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_C": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_02_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_02_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_B": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_02_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_02_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_02_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_02_A": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_02_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_02_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_02_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_ParadiseWailing": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_paradisewailing",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_wailing_or_paradise": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_MaxDistance": {
+ "templateId": "Quest:quest_br_eliminate_maxdistance",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_players_maxdistance": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_AmmoBox_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_ammobox_locations_different",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_interact_ammo_athena_location_different_lazylinks": 1,
+ "battlepass_interact_ammo_athena_location_different_dustydivot": 1,
+ "battlepass_interact_ammo_athena_location_different_fatalfields": 1,
+ "battlepass_interact_ammo_athena_location_different_flushfactory": 1,
+ "battlepass_interact_ammo_athena_location_different_greasygrove": 1,
+ "battlepass_interact_ammo_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_ammo_athena_location_different_junkjunction": 1,
+ "battlepass_interact_ammo_athena_location_different_luckylanding": 1,
+ "battlepass_interact_ammo_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_ammo_athena_location_different_lootlake": 1,
+ "battlepass_interact_ammo_athena_location_different_paradisepalms": 1,
+ "battlepass_interact_ammo_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_ammo_athena_location_different_retailrow": 1,
+ "battlepass_interact_ammo_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_ammo_athena_location_different_saltysprings": 1,
+ "battlepass_interact_ammo_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_ammo_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_ammo_athena_location_different_tomatotown": 1,
+ "battlepass_interact_ammo_athena_location_different_wailingwoods": 1,
+ "battlepass_interact_ammo_athena_location_different_riskyreels": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_GniceGnomes": {
+ "templateId": "Quest:quest_br_interact_gnicegnomes",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_gnice_gnome_01": 1,
+ "battlepass_interact_athena_gnice_gnome_02": 1,
+ "battlepass_interact_athena_gnice_gnome_03": 1,
+ "battlepass_interact_athena_gnice_gnome_04": 1,
+ "battlepass_interact_athena_gnice_gnome_05": 1,
+ "battlepass_interact_athena_gnice_gnome_06": 1,
+ "battlepass_interact_athena_gnice_gnome_07": 1,
+ "battlepass_interact_athena_gnice_gnome_08": 1,
+ "battlepass_interact_athena_gnice_gnome_09": 1,
+ "battlepass_interact_athena_gnice_gnome_10": 1,
+ "battlepass_interact_athena_gnice_gnome_11": 1,
+ "battlepass_interact_athena_gnice_gnome_12": 1,
+ "battlepass_interact_athena_gnice_gnome_13": 1,
+ "battlepass_interact_athena_gnice_gnome_14": 1,
+ "battlepass_interact_athena_gnice_gnome_15": 1,
+ "battlepass_interact_athena_gnice_gnome_16": 1,
+ "battlepass_interact_athena_gnice_gnome_17": 1,
+ "battlepass_interact_athena_gnice_gnome_18": 1,
+ "battlepass_interact_athena_gnice_gnome_19": 1,
+ "battlepass_interact_athena_gnice_gnome_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_TwoLocations_02": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_lucky_tilted": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_02_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_visit_athena_location_lazylinks_chain_02": 1,
+ "battlepass_visit_athena_location_shiftyshafts_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_02_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_visit_athena_location_luckylanding_chain_02": 1,
+ "battlepass_visit_athena_location_retailrow_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_02_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_visit_athena_location_polarpeak_chain_02": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Throw_PuckToy_MinDistance": {
+ "templateId": "Quest:quest_br_throw_pucktoy_mindistance",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_athena_slidepuck_mindistance": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_02_C": {
+ "templateId": "Quest:quest_br_damage_chain_02_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_pistol_thrownweapons": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_02_B": {
+ "templateId": "Quest:quest_br_damage_chain_02_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_02_ar": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_02_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_02_A": {
+ "templateId": "Quest:quest_br_damage_chain_02_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_02_smg": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_02_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Weapons_Different_AllTypes": {
+ "templateId": "Quest:quest_br_damage_weapons_different_alltypes",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_006",
+ "objectives": {
+ "damage_athena_weapons_different_assault_standard": 1,
+ "damage_athena_weapons_different_minigun": 1,
+ "damage_athena_weapons_different_assault_burst": 1,
+ "damage_athena_weapons_different_assault_scoped": 1,
+ "damage_athena_weapons_different_grenade_launcher": 1,
+ "damage_athena_weapons_different_rocket_launcher": 1,
+ "damage_athena_weapons_different_quad_launcher": 1,
+ "damage_athena_weapons_different_pistol_handcannon": 1,
+ "damage_athena_weapons_different_pistol_standard": 1,
+ "damage_athena_weapons_different_pistol_suppressed": 1,
+ "damage_athena_weapons_different_shotgun_tactical": 1,
+ "damage_athena_weapons_different_shotgun_heavy": 1,
+ "damage_athena_weapons_different_shotgun_pump": 1,
+ "damage_athena_weapons_different_sniper_bolt": 1,
+ "damage_athena_weapons_different_sniper_hunting": 1,
+ "damage_athena_weapons_different_assault_thermal": 1,
+ "damage_athena_weapons_different_smg_pdw": 1,
+ "damage_athena_weapons_different_sniper_heavy": 1,
+ "damage_athena_weapons_different_assault_silenced": 1,
+ "damage_athena_weapons_different_pistol_sixshooter": 1,
+ "damage_athena_weapons_different_assault_heavy": 1,
+ "damage_athena_weapons_different_sword": 1,
+ "damage_athena_weapons_different_sniper_silenced": 1,
+ "damage_athena_weapons_different_grenade_standard": 1,
+ "damage_athena_weapons_different_grenade_gas": 1,
+ "damage_athena_weapons_different_grenade_tnt": 1,
+ "damage_athena_weapons_different_trap_spike": 1,
+ "damage_athena_weapons_different_turret": 1,
+ "damage_athena_weapons_different_crossbow": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaDance:eid_taketheelf",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_ExplorerOutposts": {
+ "templateId": "Quest:quest_br_visit_exploreroutposts",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_expeditionoutpost_a": 1,
+ "battlepass_visit_athena_expeditionoutpost_b": 1,
+ "battlepass_visit_athena_expeditionoutpost_c": 1,
+ "battlepass_visit_athena_expeditionoutpost_d": 1,
+ "battlepass_visit_athena_expeditionoutpost_e": 1,
+ "battlepass_visit_athena_expeditionoutpost_f": 1,
+ "battlepass_visit_athena_expeditionoutpost_g": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_RiftPortals": {
+ "templateId": "Quest:quest_br_use_riftportals",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_touch_athena_riftportal": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_Weapon_Pistol": {
+ "templateId": "Quest:quest_br_eliminate_weapon_pistol",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_pistol": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_03E": {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_land_athena_location_leaky_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_03D": {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_land_athena_location_haunted_chain_03d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_03C": {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_land_athena_location_retail_chain_03c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_03B": {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_land_athena_location_risky_chain_03b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_03A": {
+ "templateId": "Quest:quest_br_land_chain_03a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_land_athena_location_shifty_chain_03a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_LeakyFrosty": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_leakyfrosty",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_leaky_frosty": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Destroy_Biplanes": {
+ "templateId": "Quest:quest_br_destroy_biplanes",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "athena_battlepass_destroy_athena_biplanes": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_03_C": {
+ "templateId": "Quest:quest_br_damage_chain_03_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_03_c": 400
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_03_B": {
+ "templateId": "Quest:quest_br_damage_chain_03_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_03_b": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_03_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Chain_03_A": {
+ "templateId": "Quest:quest_br_damage_chain_03_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_03_a": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_03_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_Campfire_Or_Launchpad": {
+ "templateId": "Quest:quest_br_use_campfire_or_launchpad",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_place_athena_campfire_or_launchpad": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Build_Structures": {
+ "templateId": "Quest:quest_br_build_structures",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_build_athena_structures_any": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_ScavengerHunt_Triangulate_03": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_triangulate_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_04_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_location_haunted_chain_04": 1,
+ "battlepass_visit_athena_location_wailing_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_04_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_location_junk_chain_04": 1,
+ "battlepass_visit_athena_location_lootlake_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_TwoNamedLocs_Chain_04_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_location_paradise_chain_04": 1,
+ "battlepass_visit_athena_location_salty_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_ShiftyLonely": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_shiftylonely",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_shiftylonely": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Passenger_Vehicle": {
+ "templateId": "Quest:quest_br_damage_passenger_vehicle",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_damage_athena_player_passenger_vehicle": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_eliminate_explosiveweapon",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_explosives": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_Snowman": {
+ "templateId": "Quest:quest_br_use_snowman",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "athena_battlepass_use_item_snowman": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_04E": {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_dustydivot_04e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_04D": {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_shiftyshafts_04d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_04C": {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_hauntedhills_04c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_04B": {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_frostyflights_04b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Land_Chain_04A": {
+ "templateId": "Quest:quest_br_land_chain_04a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_retail_04a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_TwoLocations_04": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_junk_or_retail": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Destroy_GoldBalloons": {
+ "templateId": "Quest:quest_br_destroy_goldballoons",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_destroy_goldballoon_01": 1,
+ "battlepass_destroy_goldballoon_02": 1,
+ "battlepass_destroy_goldballoon_03": 1,
+ "battlepass_destroy_goldballoon_04": 1,
+ "battlepass_destroy_goldballoon_05": 1,
+ "battlepass_destroy_goldballoon_06": 1,
+ "battlepass_destroy_goldballoon_07": 1,
+ "battlepass_destroy_goldballoon_08": 1,
+ "battlepass_destroy_goldballoon_09": 1,
+ "battlepass_destroy_goldballoon_10": 1,
+ "battlepass_destroy_goldballoon_11": 1,
+ "battlepass_destroy_goldballoon_12": 1,
+ "battlepass_destroy_goldballoon_13": 1,
+ "battlepass_destroy_goldballoon_14": 1,
+ "battlepass_destroy_goldballoon_15": 1,
+ "battlepass_destroy_goldballoon_16": 1,
+ "battlepass_destroy_goldballoon_17": 1,
+ "battlepass_destroy_goldballoon_18": 1,
+ "battlepass_destroy_goldballoon_19": 1,
+ "battlepass_destroy_goldballoon_20": 1,
+ "battlepass_destroy_goldballoon_21": 1,
+ "battlepass_destroy_goldballoon_22": 1,
+ "battlepass_destroy_goldballoon_23": 1,
+ "battlepass_destroy_goldballoon_24": 1,
+ "battlepass_destroy_goldballoon_25": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_C": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_03_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_03_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_B": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_03_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_03_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_03_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Dance_Chain_ScavengerHunt_Locations_03_A": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_03_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_03_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_03_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_Weapon_Shotgun": {
+ "templateId": "Quest:quest_br_eliminate_weapon_shotgun",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_shotgun": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Timed_Trials_Stormwing": {
+ "templateId": "Quest:quest_br_timed_trials_stormwing",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_009",
+ "objectives": {
+ "complete_timed_trial_stormwing_01": 1,
+ "complete_timed_trial_stormwing_02": 1,
+ "complete_timed_trial_stormwing_03": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Use_Turret_Or_DamageTrap": {
+ "templateId": "Quest:quest_br_use_turret_or_damagetrap",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_place_athena_turret_or_damagetrap": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Interact_Chests_TwoLocations_LazyDusty": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_lazydusty",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_lazydusty": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Eliminate_Weapon_AssaultRifle": {
+ "templateId": "Quest:quest_br_eliminate_weapon_assaultrifle",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_assault": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_ScopedWeapon": {
+ "templateId": "Quest:quest_br_damage_scopedweapon",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player_scoped_weapon": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Shoot_SpecificTargets_Chain_C": {
+ "templateId": "Quest:quest_br_shoot_specifictargets_chain_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_shoot_specifictargets_chain_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Shoot_SpecificTargets_Chain_B": {
+ "templateId": "Quest:quest_br_shoot_specifictargets_chain_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_shoot_specifictargets_chain_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_shoot_specifictargets_chain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Shoot_SpecificTargets_Chain_A": {
+ "templateId": "Quest:quest_br_shoot_specifictargets_chain_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_shoot_specifictargets_chain_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_shoot_specifictargets_chain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_ExplorerOutposts_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_exploreroutposts_singlematch",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_visit_athena_expeditionoutpost_singlematch_a": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_b": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_c": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_d": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_e": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_f": 1,
+ "battlepass_visit_athena_expeditionoutpost_singlematch_g": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Hit_Enemies_Boogie_ChillerGrenade": {
+ "templateId": "Quest:quest_br_hit_enemies_boogie_chillergrenade",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Week_010",
+ "objectives": {
+ "battlepass_athena_hit_opponent_chiller_or_boogie": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_01": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_01": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_163_iceking",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_02": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_02": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_060_iceking_colorb",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_079_iceking_backblingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_03": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_03": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_133_iceking",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_04": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_04": 7500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_061_iceking_colorc",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_080_iceking_backblingc",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_082_iceking_pickaxec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_05": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_05",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_05": 15000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_iceking",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_IceKing_Outlive_06": {
+ "templateId": "Quest:quest_br_s7_iceking_outlive_06",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_IceKing",
+ "objectives": {
+ "athena_iceking_outlive_06": 25000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_062_iceking_colord",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_081_iceking_backblingd",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_083_iceking_pickaxed",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_02": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_02": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_125_snowboard_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_01": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_01": 47
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_overtime_battlepasslevelcheck_1",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_04": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_04": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_126_yeti_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_03": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_03": 71
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_overtime_battlepasslevelcheck_2",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_04",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_06": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_06",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_06": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_127_durrrburgerpjs_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Overtime_CompleteQuests_ChainTest_05": {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_05",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_05": 87
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_overtime_battlepasslevelcheck_3",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_overtime_completequests_chaintest_06",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_CompleteChallenges": {
+ "templateId": "Quest:quest_br_ot_completechallenges",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_quest_completequests_tokens": 13
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_freebattlepasstoken",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Play_Featured_Creative": {
+ "templateId": "Quest:quest_br_ot_play_featured_creative",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_play_featured_creative_content": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Assault_Or_Pistol": {
+ "templateId": "Quest:quest_br_damage_assault_or_pistol",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "battlepass_damage_athena_player_assault_or_pistol": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Search_Motel_RVPark": {
+ "templateId": "Quest:quest_br_ot_search_motel_rvpark",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_search_chests_ammobox_motel_rvpark": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Top15_Duos_WithFriend": {
+ "templateId": "Quest:quest_br_ot_top15_duos_withfriend",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_top15_duos_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_013_valentines",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_RegainHealth_Campfire_DifferentMatches": {
+ "templateId": "Quest:quest_br_ot_regainhealth_campfire_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_heal_from_campfires_different_matches_1": 1,
+ "overtime_battlepass_heal_from_campfires_different_matches_2": 1,
+ "overtime_battlepass_heal_from_campfires_different_matches_3": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Visit_NamedLocations": {
+ "templateId": "Quest:quest_br_visit_namedlocations",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "battlepass_visit_athena_location_flushfactory": 1,
+ "battlepass_visit_athena_location_shiftyshafts": 1,
+ "battlepass_visit_athena_location_greasygrove": 1,
+ "battlepass_visit_athena_location_tiltedtowers": 1,
+ "battlepass_visit_athena_location_snobbyshores": 1,
+ "battlepass_visit_athena_location_pleasantpark": 1,
+ "battlepass_visit_athena_location_hauntedhills": 1,
+ "battlepass_visit_athena_location_junkjunction": 1,
+ "battlepass_visit_athena_location_lootlake": 1,
+ "battlepass_visit_athena_location_lazylinks": 1,
+ "battlepass_visit_athena_location_tomatotemple": 1,
+ "battlepass_visit_athena_location_riskyreels": 1,
+ "battlepass_visit_athena_location_wailingwoods": 1,
+ "battlepass_visit_athena_location_lonelylodge": 1,
+ "battlepass_visit_athena_location_dustydivot": 1,
+ "battlepass_visit_athena_location_retailrow": 1,
+ "battlepass_visit_athena_location_saltysprings": 1,
+ "battlepass_visit_athena_location_fatalfields": 1,
+ "battlepass_visit_athena_location_paradisepalms": 1,
+ "battlepass_visit_athena_location_luckylanding": 1,
+ "battlepass_visit_athena_location_polarpeak": 1,
+ "battlepass_visit_athena_location_frostyflights": 1,
+ "battlepass_visit_athena_location_happyhamlet": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Search_SupplyDrop_DifferentMatches": {
+ "templateId": "Quest:quest_br_ot_search_supplydrop_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_search_supplydrop_differentmatches": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Revive_DifferentMatches": {
+ "templateId": "Quest:quest_br_revive_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "battlepass_athena_revive_player_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Visit_Waterfalls": {
+ "templateId": "Quest:quest_br_ot_visit_waterfalls",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_visit_different_waterfalls_01": 1,
+ "overtime_battlepass_visit_different_waterfalls_02": 1,
+ "overtime_battlepass_visit_different_waterfalls_03": 1,
+ "overtime_battlepass_visit_different_waterfalls_04": 1,
+ "overtime_battlepass_visit_different_waterfalls_05": 1,
+ "overtime_battlepass_visit_different_waterfalls_06": 1,
+ "overtime_battlepass_visit_different_waterfalls_07": 1,
+ "overtime_battlepass_visit_different_waterfalls_08": 1,
+ "overtime_battlepass_visit_different_waterfalls_09": 1,
+ "overtime_battlepass_visit_different_waterfalls_10": 1,
+ "overtime_battlepass_visit_different_waterfalls_11": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Damage_Shotgun_Or_SMG": {
+ "templateId": "Quest:quest_br_damage_shotgun_or_smg",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun_or_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Search_Chests_Ammo_TheBlock": {
+ "templateId": "Quest:quest_br_ot_search_chests_ammo_theblock",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_search_chests_ammoboxes_theblock": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Top10_Squads_WithFriend": {
+ "templateId": "Quest:quest_br_ot_top10_squads_withfriend",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_top10_squad_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_014_vines",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Play_DriftboardLTM_WithFriend": {
+ "templateId": "Quest:quest_br_ot_play_driftboardltm_withfriend",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_play_driftboardltm_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Thank_Bus_Driver_DifferentMatches": {
+ "templateId": "Quest:quest_br_ot_thank_bus_driver_differentmatches",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "fdf_thank_athena_bus_driver_differentmatches": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Search_Chests_Ammo_Racetrack_Danceclub": {
+ "templateId": "Quest:quest_br_ot_search_chests_ammo_racetrack_danceclub",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "overtime_battlepass_search_chests_ammoboxes_racetrack_danceclub": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_OT_Outlast_75_SingleMatch": {
+ "templateId": "Quest:quest_br_ot_outlast_75_singlematch",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Overtime",
+ "objectives": {
+ "outlive_athena_ot_1": 75
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_096_planekey",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s7overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Season7_C": {
+ "templateId": "Quest:quest_br_season7_c",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "season7_interact_athena_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_101_season7_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Season7_B": {
+ "templateId": "Quest:quest_br_season7_b",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "season7_interact_athena_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_100_season7_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_season7_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_Season7_A": {
+ "templateId": "Quest:quest_br_season7_a",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "season7_interact_athena_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_099_season7_a",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_season7_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s7_cumulative_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "athena_s7cumulative_complete_weeklychallenges_01": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenamysterytokenseason7",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaCharacter:cid_332_athena_commando_m_prisoner",
+ "quantity": 1
+ },
+ {
+ "templateId": "AthenaBackpack:bid_175_prisoner",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Quest:quest_br_season7_a",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest1": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest1",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_001": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_001",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_084_s7cumulative01",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest1",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest2": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest2",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason07cumulativels2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07cumulativels2",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_002": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_002",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token2": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_085_s7cumulative02",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest3": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest3",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_003": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_003",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token3": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_086_s7cumulative03",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest4": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest4",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason07cumulativels4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07cumulativels4",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_004": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_004",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token4": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_087_s7cumulative04",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest5": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest5",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_005": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_005",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token5": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_088_s7cumulative05",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest5",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest6": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest6",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason07cumulativels6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07cumulativels6",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_006": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_006",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token6": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_089_s7cumulative06",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest7": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest7",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_007": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_007",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token7": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_090_s7cumulative07",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest7",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest8": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest8",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason07cumulativels8",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07cumulativels8",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_008": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_008",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token8": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_091_s7cumulative08",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest8",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest9": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest9",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_009": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_009",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token9": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_092_s7cumulative09",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest9",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Quest10": {
+ "templateId": "Quest:quest_br_s7_cumulative_quest10",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason07cumulativels10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brseason07cumulativels10",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_Final": {
+ "templateId": "Quest:quest_br_s7_cumulative_final",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_completed_cumulative_final_quest1": 1,
+ "battlepass_completed_cumulative_final_quest2": 1,
+ "battlepass_completed_cumulative_final_quest3": 1,
+ "battlepass_completed_cumulative_final_quest4": 1,
+ "battlepass_completed_cumulative_final_quest5": 1,
+ "battlepass_completed_cumulative_final_quest6": 1,
+ "battlepass_completed_cumulative_final_quest7": 1,
+ "battlepass_completed_cumulative_final_quest8": 1,
+ "battlepass_completed_cumulative_final_quest9": 1,
+ "battlepass_completed_cumulative_final_quest10": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_Cumulative_CollectTokens_010": {
+ "templateId": "Quest:quest_br_s7_cumulative_collecttokens_010",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_Cumulative",
+ "objectives": {
+ "battlepass_season7_cumulative_token10": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_093_s7cumulative10",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_quest10",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s7_cumulative_final",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 20000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_063_arcticsniper_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 50000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_068_arcticsniper_visorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 100000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_064_arcticsniper_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 150000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_069_arcticsniper_visorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_05": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_05",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_158_arcticsnipermale",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_06": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_06",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_070_arcticsniper_visord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_07": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_07",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 300000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_132_arcticsniper",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Gain_SeasonXP_08": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_gain_seasonxp_08",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_season_xp_gained": 350000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_087_arcticsniper_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_arcticsniper_complete_weeklychallenges_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_065_arcticsniper_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_arcticsniper_complete_weeklychallenges_02": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_066_arcticsniper_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_ArcticSniper_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s7_arcticsniper_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_ArcticSniper",
+ "objectives": {
+ "athena_arcticsniper_complete_weeklychallenges_03": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_067_arcticsniper_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_131_neoncat",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 30000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_071_neoncat_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 75000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_076_neoncat_pickaxeb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_04",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 125000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_072_neoncat_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_05": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_05",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 175000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_077_neoncat_pickaxec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_06": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_06",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 225000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_kittycat",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_07": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_07",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 275000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_078_neoncat_pickaxed",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Gain_SeasonXP_08": {
+ "templateId": "Quest:quest_br_s7_neoncat_gain_seasonxp_08",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_season_xp_gained": 325000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_088_neoncat_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s7_neoncat_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_neoncat_complete_weeklychallenges_01": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_073_neoncat_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s7_neoncat_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_neoncat_complete_weeklychallenges_02": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_074_neoncat_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_NeonCat_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s7_neoncat_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_NeonCat",
+ "objectives": {
+ "athena_neoncat_complete_weeklychallenges_03": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_075_neoncat_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_01": {
+ "templateId": "Quest:quest_br_s7_sgtwinter_complete_daily_challenges_01",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_SgtWinter",
+ "objectives": {
+ "athena_sgtwinter_complete_daily_challenges_01": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_058_tacticalsanta_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS07-Quest_BR_S7_SgtWinter_Complete_Daily_Challenges_02": {
+ "templateId": "Quest:quest_br_s7_sgtwinter_complete_daily_challenges_02",
+ "challenge_bundle_id": "QS07-QuestBundle_S7_SgtWinter",
+ "objectives": {
+ "athena_sgtwinter_complete_daily_challenges_02": 14
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_059_tacticalsanta_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season08": {
+ "ChallengeBundleSchedules": {
+ "QS08-Schedule_LTM_Ashton": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_ashton",
+ "granted_bundles": [
+ "QS08-QuestBundle_LTM_Ashton"
+ ]
+ },
+ "QS08-Schedule_LTM_Goose": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_goose",
+ "granted_bundles": [
+ "QS08-QuestBundle_LTM_Goose"
+ ]
+ },
+ "QS08-Schedule_LTM_Heist_V2": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_heist_v2",
+ "granted_bundles": [
+ "QS08-QuestBundle_LTM_Heist_V2"
+ ]
+ },
+ "QS08-Schedule_PirateParty": {
+ "templateId": "ChallengeBundleSchedule:schedule_pirateparty",
+ "granted_bundles": [
+ "QS08-QuestBundle_PirateParty"
+ ]
+ },
+ "QS08-Season8_Cumulative_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_cumulative_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_Cumulative"
+ ]
+ },
+ "QS08-Season8_ExtraCredit_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_extracredit_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_ExtraCredit"
+ ]
+ },
+ "QS08-Season8_Free_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_free_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_Week_001",
+ "QS08-QuestBundle_S8_Week_002",
+ "QS08-QuestBundle_S8_Week_003",
+ "QS08-QuestBundle_S8_Week_004",
+ "QS08-QuestBundle_S8_Week_005",
+ "QS08-QuestBundle_S8_Week_006",
+ "QS08-QuestBundle_S8_Week_007",
+ "QS08-QuestBundle_S8_Week_008",
+ "QS08-QuestBundle_S8_Week_009",
+ "QS08-QuestBundle_S8_Week_010"
+ ]
+ },
+ "QS08-Season8_Paid_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_paid_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_Pirate",
+ "QS08-QuestBundle_S8_DragonNinja"
+ ]
+ },
+ "QS08-Season8_Ruin_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_ruin_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_Cumulative_Ruin"
+ ]
+ },
+ "QS08-Season8_Shiny_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season8_shiny_schedule",
+ "granted_bundles": [
+ "QS08-QuestBundle_S8_Shiny"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS08-QuestBundle_LTM_Ashton": {
+ "templateId": "ChallengeBundle:questbundle_ltm_ashton",
+ "challenge_bundle_schedule_id": "QS08-Schedule_LTM_Ashton",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Ashton_Damage_Indigo",
+ "QS08-Quest_BR_Ashton_Collect_Stones",
+ "QS08-Quest_BR_Ashton_Play_Matches",
+ "QS08-Quest_BR_Ashton_Damage_Turbo",
+ "QS08-Quest_BR_Ashton_Damage_Milo_Jetpack",
+ "QS08-Quest_BR_Ashton_Elims_DifferentMatches",
+ "QS08-Quest_BR_Ashton_Damage_Chicago",
+ "QS08-Quest_BR_Ashton_Damage_Milo_A",
+ "QS08-Quest_BR_Ashton_Win_SideB",
+ "QS08-Quest_BR_Ashton_Damage_Hippo",
+ "QS08-Quest_BR_Ashton_Damage_Milo_B",
+ "QS08-Quest_BR_Ashton_Win_SideA"
+ ],
+ "completionRewards": {
+ "10": [
+ {
+ "templateId": "AthenaGlider:glider_id_141_ashtonboardwalk",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_LTM_Goose": {
+ "templateId": "ChallengeBundle:questbundle_ltm_goose",
+ "challenge_bundle_schedule_id": "QS08-Schedule_LTM_Goose",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Goose_DealDamage_SMGorMinigun",
+ "QS08-Quest_BR_Goose_Collect_Floating_Upgrades",
+ "QS08-Quest_BR_Goose_Play_Matches",
+ "QS08-Quest_BR_Goose_DealDamage_Pistol",
+ "QS08-Quest_BR_Goose_Destroy_Stormwings",
+ "QS08-Quest_BR_Goose_Outlast",
+ "QS08-Quest_BR_Goose_DealDamage_AR",
+ "QS08-Quest_BR_Goose_Damage_Stormwings",
+ "QS08-Quest_BR_Goose_Place_Top5"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaItemWrap:wrap_041_pilotbee",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AirRoyale"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_LTM_Heist_V2": {
+ "templateId": "ChallengeBundle:questbundle_ltm_heist_v2",
+ "challenge_bundle_schedule_id": "QS08-Schedule_LTM_Heist_V2",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Heist_CompleteQuests",
+ "QS08-Quest_BR_Heist_win",
+ "QS08-Quest_BR_Heist_win_matches_A",
+ "QS08-Quest_BR_Heist_win_matches_B",
+ "QS08-Quest_BR_Heist_Use_Grappler",
+ "QS08-Quest_BR_Heist_Damage_DiamondCarriers",
+ "QS08-Quest_BR_Heist_PickupDiamond_DifferentMatches"
+ ],
+ "completionRewards": {}
+ },
+ "QS08-QuestBundle_PirateParty": {
+ "templateId": "ChallengeBundle:questbundle_pirateparty",
+ "challenge_bundle_schedule_id": "QS08-Schedule_PirateParty",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_PP_Visit_PirateCamps",
+ "QS08-Quest_BR_PP_BuriedTreasure",
+ "QS08-Quest_BR_PP_Top10_Squads_WithFriend",
+ "QS08-Quest_BR_PP_Use_Cannon"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaDance:eid_pirategold",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s8_cumulative",
+ "challenge_bundle_schedule_id": "QS08-Season8_Cumulative_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_S8_Cumulative_Complete_WeeklyChallenges_01",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_001",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_002",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_003",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_004",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_005",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_006",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_007",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_008",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_009",
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_010"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativeseason8",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_ExtraCredit": {
+ "templateId": "ChallengeBundle:questbundle_s8_extracredit",
+ "challenge_bundle_schedule_id": "QS08-Season8_ExtraCredit_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01a",
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02a",
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03a",
+ "QS08-Quest_BR_ExtraCredit_Creative_CollectCoins",
+ "QS08-Quest_BR_ExtraCredit_Top10_Squads_WithFriend",
+ "QS08-Quest_BR_ExtraCredit_Damage",
+ "QS08-Quest_BR_ExtraCredit_Top15_Duos_WithFriend",
+ "QS08-Quest_BR_ExtraCredit_Outlast",
+ "QS08-Quest_BR_ExtraCredit_Place_Top25_Solo"
+ ],
+ "completionRewards": {
+ "6": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_119_volcanokey",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_001",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Visit_PirateCamps",
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_01",
+ "QS08-Quest_BR_Damage_Chain_Dual_A",
+ "QS08-Quest_BR_Visit_GiantFaces",
+ "QS08-Quest_BR_Use_Geyser_DifferentMatches",
+ "QS08-Quest_BR_Eliminate_ExploShotGunAR",
+ "QS08-Quest_BR_Damage_Vehicle_Opponent"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_002",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Land_Chain_01_A",
+ "QS08-Quest_BR_Damage_Falling_SupplyDrops",
+ "QS08-Quest_BR_Eliminate_Location_Salty_Or_Haunted",
+ "QS08-Quest_BR_Interact_HealingItems_QuestChain_02_A",
+ "QS08-Quest_BR_Visit_Farthest_Points",
+ "QS08-Quest_BR_Damage_Player_With_Cannon",
+ "QS08-Quest_BR_Interact_Chests_Locations_Different_SingleMatch"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_003",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_A",
+ "QS08-Quest_BR_3BiomeContext_Stage1_Destroy_Cacti_Desert",
+ "QS08-Quest_BR_Use_Trap_SingleMatch",
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_02",
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_02",
+ "QS08-Quest_BR_Damage_Headshot",
+ "QS08-Quest_BR_Eliminate_3Weapons_01"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_004",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Land_Chain_02A",
+ "QS08-Quest_BR_Use_Hamsterball",
+ "QS08-Quest_BR_Eliminate_ScopedWeapon_and_SilencedWeapon",
+ "QS08-Quest_BR_Destroy_Structure_AsCannonBall",
+ "QS08-Quest_BR_BuriedTreasure",
+ "QS08-Quest_BR_Eliminate_TwoLocations_03",
+ "QS08-Quest_BR_Outlive_90_Opponents"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_005",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Damage_ScopedWeapon",
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_ParadiseShifty",
+ "QS08-Quest_BR_RaceTrack_HamsterBall",
+ "QS08-Quest_BR_Throw_BouncyBallToy_MinBounces",
+ "QS08-Quest_BR_Interact_ShieldItems_QuestChain_A",
+ "QS08-Quest_BR_Geyser_Zipline_Vehicle_SingleMatch",
+ "QS08-Quest_BR_Eliminate_Location_PirateCamps"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_006",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Visit_Animal",
+ "QS08-Quest_BR_Visit_Highest_Elevations",
+ "QS08-Quest_BR_Eliminate_TwoLocations_05",
+ "QS08-Quest_BR_Land_Chain_03A",
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_01",
+ "QS08-Quest_BR_Eliminate_Flintlock_Or_CompoundBow",
+ "QS08-Quest_BR_Use_Different_Throwable_Items_SingleMatch"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 6000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_007",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Damage_Pickaxe",
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_04_A",
+ "QS08-Quest_BR_Visit_PirateCamps_SingleMatch",
+ "QS08-Quest_BR_Damage_From_Above",
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_03",
+ "QS08-Quest_BR_Damage_Chain_Zipline_A",
+ "QS08-Quest_BR_Eliminate_Location_Different"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 7000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_008",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_01a",
+ "QS08-Quest_BR_Use_VendingMachine",
+ "QS08-Quest_BR_Damage_While_Using_Balloon",
+ "QS08-Quest_BR_Interact_JigsawPuzzle",
+ "QS08-Quest_BR_PhoneChain_Durrr",
+ "QS08-Quest_BR_Eliminate_TwoLocations_04",
+ "QS08-Quest_BR_Eliminate_50m"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 8000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_009",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Land_Chain_04A",
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_04",
+ "QS08-Quest_BR_Use_Geyser_MultipleBeforeLanding",
+ "QS08-Quest_BR_Dance_Chain_04_A",
+ "QS08-Quest_BR_Damage_Below",
+ "QS08-Quest_BR_Use_SecondChanceMachine_ReviveTeammate",
+ "QS08-Quest_BR_Eliminate"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 9000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s8_week_010",
+ "challenge_bundle_schedule_id": "QS08-Season8_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Touch_FlamingRings_Cannon",
+ "QS08-Quest_BR_Chain_Collect_BuildingResources_SingleMatch_01",
+ "QS08-Quest_BR_Eliminate_TwoLocations_06",
+ "QS08-Quest_BR_Damage_Infantry_or_Heavy",
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_02a",
+ "QS08-Quest_BR_Damage_After_VolcanoVent",
+ "QS08-Quest_BR_Eliminate_MaxDistance"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Pirate": {
+ "templateId": "ChallengeBundle:questbundle_s8_pirate",
+ "challenge_bundle_schedule_id": "QS08-Season8_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_01",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_02",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_03",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_04",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_05",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_06",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_07",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_08",
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_09",
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_01",
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_02",
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_03"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8completionpirate",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_DragonNinja": {
+ "templateId": "ChallengeBundle:questbundle_s8_dragonninja",
+ "challenge_bundle_schedule_id": "QS08-Season8_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_01",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_02",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_03",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_04",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_05",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_06",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_07",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_08",
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_09",
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_01",
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_02",
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_03"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8completiondragonninja",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Cumulative_Ruin": {
+ "templateId": "ChallengeBundle:questbundle_s8_cumulative_ruin",
+ "challenge_bundle_schedule_id": "QS08-Season8_Ruin_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_Ruin_Destroy_Trees",
+ "QS08-Quest_BR_Ruin_Destroy_Rocks",
+ "QS08-Quest_BR_Ruin_Destroy_Cars",
+ "QS08-Quest_BR_Ruin_Damage_Enemy_Structures",
+ "QS08-Quest_BR_Ruin_Outlast",
+ "QS08-Quest_BR_Ruin_Complete_Daily_Challenges"
+ ],
+ "completionRewards": {
+ "3": [
+ {
+ "templateId": "AthenaBackpack:bid_242_furnaceface",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Ruin"
+ }
+ }
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_187_furnaceface",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Ruin"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS08-QuestBundle_S8_Shiny": {
+ "templateId": "ChallengeBundle:questbundle_s8_shiny",
+ "challenge_bundle_schedule_id": "QS08-Season8_Shiny_Schedule",
+ "grantedquestinstanceids": [
+ "QS08-Quest_BR_S8_Shiny_Outlive_01",
+ "QS08-Quest_BR_S8_Shiny_Outlive_02",
+ "QS08-Quest_BR_S8_Shiny_Outlive_03",
+ "QS08-Quest_BR_S8_Shiny_Outlive_04",
+ "QS08-Quest_BR_S8_Shiny_Outlive_05",
+ "QS08-Quest_BR_S8_Shiny_Outlive_06"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8completionshiny",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS08-Quest_BR_Ashton_Damage_Indigo": {
+ "templateId": "Quest:quest_br_ashton_damage_indigo",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_indigo_while_hovering": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Collect_Stones": {
+ "templateId": "Quest:quest_br_ashton_collect_stones",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_br_collect_stones": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_120_ashton",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Play_Matches": {
+ "templateId": "Quest:quest_br_ashton_play_matches",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ltm_ashton_athena_play_matches": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_token_brseason08ashtonbanner01",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8ashtonchicago",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Turbo": {
+ "templateId": "Quest:quest_br_ashton_damage_turbo",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_turbo_ground_pound": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:emoji_ashtonturbo",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Milo_Jetpack": {
+ "templateId": "Quest:quest_br_ashton_damage_milo_jetpack",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_milo_jetpacking": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Elims_DifferentMatches": {
+ "templateId": "Quest:quest_br_ashton_elims_differentmatches",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_br_athena_elims_different_matches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_106_ashton_boardwalk",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Chicago": {
+ "templateId": "Quest:quest_br_ashton_damage_chicago",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_chicago_with_shield": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:emoji_ashtonchicago",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Milo_A": {
+ "templateId": "Quest:quest_br_ashton_damage_milo_a",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_milo_primary": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Win_SideB": {
+ "templateId": "Quest:quest_br_ashton_win_sideb",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ltm_ashton_athena_win_side_b": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_107_ashton_jim",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Hippo": {
+ "templateId": "Quest:quest_br_ashton_damage_hippo",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_hippo_after_grapple": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Damage_Milo_B": {
+ "templateId": "Quest:quest_br_ashton_damage_milo_b",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ashton_damage_athena_milo_secondary": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Ashton_Win_SideA": {
+ "templateId": "Quest:quest_br_ashton_win_sidea",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Ashton",
+ "objectives": {
+ "ltm_ashton_athena_win_side_a": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_token_brseason08ashtonbanner02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8ashtonboardwalk",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AshtonLTM"
+ }
+ }
+ },
+ "QS08-Quest_BR_Goose_DealDamage_SMGorMinigun": {
+ "templateId": "Quest:quest_br_goose_dealdamage_smgorminigun",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_damage_athena_player_smgminigun": 4000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Collect_Floating_Upgrades": {
+ "templateId": "Quest:quest_br_goose_collect_floating_upgrades",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_collect_athena_floating_upgrades_weap_c": 1,
+ "ltm_goose_collect_athena_floating_upgrades_weap_r": 1,
+ "ltm_goose_collect_athena_floating_upgrades_weap_sr": 1,
+ "ltm_goose_collect_athena_floating_upgrades_weap_uc": 1,
+ "ltm_goose_collect_athena_floating_upgrades_weap_vr": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Play_Matches": {
+ "templateId": "Quest:quest_br_goose_play_matches",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_athena_play_matches": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_038_pilotskull",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AirRoyale"
+ }
+ }
+ },
+ "QS08-Quest_BR_Goose_DealDamage_Pistol": {
+ "templateId": "Quest:quest_br_goose_dealdamage_pistol",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_damage_athena_player_pistol": 2000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Destroy_Stormwings": {
+ "templateId": "Quest:quest_br_goose_destroy_stormwings",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_destroy_athena_stormwings": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Outlast": {
+ "templateId": "Quest:quest_br_goose_outlast",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_athena_outlast": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_040_pilotfalcon",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AirRoyale"
+ }
+ }
+ },
+ "QS08-Quest_BR_Goose_DealDamage_AR": {
+ "templateId": "Quest:quest_br_goose_dealdamage_ar",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_damage_athena_player_assaultrifle": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Damage_Stormwings": {
+ "templateId": "Quest:quest_br_goose_damage_stormwings",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_damage_athena_stormwings": 4000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Goose_Place_Top5": {
+ "templateId": "Quest:quest_br_goose_place_top5",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Goose",
+ "objectives": {
+ "ltm_goose_athena_place_top5": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_039_pilotwolf",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.AirRoyale"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_CompleteQuests": {
+ "templateId": "Quest:quest_br_heist_completequests",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_quest_completequests_tokens": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_092_bling",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_win": {
+ "templateId": "Quest:quest_br_heist_win",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_win": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_235_heist",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_heist_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_win_matches_A": {
+ "templateId": "Quest:quest_br_heist_win_matches_a",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_win_matches_a": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_165_heist_backbling_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_heist_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_win_matches_B": {
+ "templateId": "Quest:quest_br_heist_win_matches_b",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_win_matches_b": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_166_heist_backbling_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_heist_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_Use_Grappler": {
+ "templateId": "Quest:quest_br_heist_use_grappler",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_use_grappler_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_118_heist",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_heist_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_Damage_DiamondCarriers": {
+ "templateId": "Quest:quest_br_heist_damage_diamondcarriers",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_damage_athena_player_withdiamond": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_044_bling",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_Heist_PickupDiamond_DifferentMatches": {
+ "templateId": "Quest:quest_br_heist_pickupdiamond_differentmatches",
+ "challenge_bundle_id": "QS08-QuestBundle_LTM_Heist_V2",
+ "objectives": {
+ "ltm_heistbundle_athena_pickupdiamond_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_021_bling",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_PP_Visit_PirateCamps": {
+ "templateId": "Quest:quest_br_pp_visit_piratecamps",
+ "challenge_bundle_id": "QS08-QuestBundle_PirateParty",
+ "objectives": {
+ "battlepass_visit_athena_piratecamp_pirate_party": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_132_pirate01octopus",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_PP_BuriedTreasure": {
+ "templateId": "Quest:quest_br_pp_buriedtreasure",
+ "challenge_bundle_id": "QS08-QuestBundle_PirateParty",
+ "objectives": {
+ "battlepass_use_find_buried_treasure": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_105_parrot",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_PP_Top10_Squads_WithFriend": {
+ "templateId": "Quest:quest_br_pp_top10_squads_withfriend",
+ "challenge_bundle_id": "QS08-QuestBundle_PirateParty",
+ "objectives": {
+ "overtime_battlepass_top10_squad_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08_pirateparty",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8compass",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_PP_Use_Cannon": {
+ "templateId": "Quest:quest_br_pp_use_cannon",
+ "challenge_bundle_id": "QS08-QuestBundle_PirateParty",
+ "objectives": {
+ "be_the_cannon_ball": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS08-Quest_BR_S8_Cumulative_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s8_cumulative_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "athena_s8cumulative_complete_weeklychallenges_01": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_378_athena_commando_m_furnaceface",
+ "quantity": 1
+ },
+ {
+ "templateId": "ChallengeBundleSchedule:season8_ruin_schedule",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest01": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_001": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_001",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_01",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest01",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_107_s8cumulative01",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest02": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08cumulativels2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativels2",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_002": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_002",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token02": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_02",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_108_s8cumulative02",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest03": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_003": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_003",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token03": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_03",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest03",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_109_s8cumulative03",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest04": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08cumulativels4",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativels4",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_004": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_004",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token04": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_04",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest04",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_110_s8cumulative04",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest05": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_005": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_005",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token05": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_05",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest05",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_111_s8cumulative05",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest06": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest06",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08cumulativels6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativels6",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_006": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_006",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token06": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_06",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest06",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_112_s8cumulative06",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest07": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest07",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_007": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_007",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token07": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_07",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest07",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_113_s8cumulative07",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest08": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest08",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08cumulativels8",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativels8",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_008": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_008",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token08": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_08",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest08",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_114_s8cumulative08",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest09": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest09",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_009": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_009",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token09": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_09",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest09",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_115_s8cumulative09",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_Quest10": {
+ "templateId": "Quest:quest_br_s8_cumulative_quest10",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08cumulativels10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs8cumulativels10",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Cumulative_CollectTokens_010": {
+ "templateId": "Quest:quest_br_s8_cumulative_collecttokens_010",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative",
+ "objectives": {
+ "battlepass_season8_cumulative_token10": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_ls_s8_10",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_cumulative_quest10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_116_s8cumulative10",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01b": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_01b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s7_overtime_completequests_test_02": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_176_medusa_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_01a": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_01a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s8_extracredit_completequests_test_01": 23
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_348_athena_commando_f_medusa",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_01b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02b": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_02b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s8_extracredit_completequests_test_04": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_174_fireelf_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_02a": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_02a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s8_extracredit_completequests_test_03": 71
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_351_athena_commando_f_fireelf",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03b": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_03b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s8_extracredit_completequests_test_06": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_175_masterkey_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_ExtraCredit_CompleteQuests_ChainTest_03a": {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_03a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "quest_s8_extracredit_completequests_test_05": 87
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_350_athena_commando_m_masterkey",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s8_extracredit_completequests_chaintest_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Creative_CollectCoins": {
+ "templateId": "Quest:quest_br_extracredit_creative_collectcoins",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "overtime_battlepass_play_featured_creative_content": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Top10_Squads_WithFriend": {
+ "templateId": "Quest:quest_br_extracredit_top10_squads_withfriend",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "extracredit_battlepass_top10_squad_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Damage": {
+ "templateId": "Quest:quest_br_extracredit_damage",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "extracredit_battlepass_damage_athena_player": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Top15_Duos_WithFriend": {
+ "templateId": "Quest:quest_br_extracredit_top15_duos_withfriend",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "extracredit_battlepass_top15_duos_with_friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Outlast": {
+ "templateId": "Quest:quest_br_extracredit_outlast",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "extracredit_battlepass_outlast": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_ExtraCredit_Place_Top25_Solo": {
+ "templateId": "Quest:quest_br_extracredit_place_top25_solo",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_ExtraCredit",
+ "objectives": {
+ "extracredit_battlepass_athena_place_solo_top_25": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s8extracredit_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_PirateCamps": {
+ "templateId": "Quest:quest_br_visit_piratecamps",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_visit_athena_piratecamp_01": 1,
+ "battlepass_visit_athena_piratecamp_02": 1,
+ "battlepass_visit_athena_piratecamp_03": 1,
+ "battlepass_visit_athena_piratecamp_04": 1,
+ "battlepass_visit_athena_piratecamp_05": 1,
+ "battlepass_visit_athena_piratecamp_06": 1,
+ "battlepass_visit_athena_piratecamp_07": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_01": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_01": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Chain_Dual_C": {
+ "templateId": "Quest:quest_br_damage_chain_dual_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_dual_c_1": 1,
+ "battlepass_damage_athena_player_chain_dual_c_2": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Chain_Dual_B": {
+ "templateId": "Quest:quest_br_damage_chain_dual_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_dual_b_1": 1,
+ "battlepass_damage_athena_player_chain_dual_b_2": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_dual_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Chain_Dual_A": {
+ "templateId": "Quest:quest_br_damage_chain_dual_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_chain_dual_a_1": 1,
+ "battlepass_damage_athena_player_chain_dual_a_2": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_dual_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_GiantFaces": {
+ "templateId": "Quest:quest_br_visit_giantfaces",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_visit_athena_location_cliff_face_desert": 1,
+ "battlepass_visit_athena_location_cliff_face_jungle": 1,
+ "battlepass_visit_athena_location_cliff_face_snow": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_Geyser_DifferentMatches": {
+ "templateId": "Quest:quest_br_use_geyser_differentmatches",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_use_item_geyser": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_ExploShotGunAR": {
+ "templateId": "Quest:quest_br_eliminate_exploshotgunar",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_3weaps_shotgun": 1,
+ "battlepass_killingblow_athena_player_3weaps_ar": 1,
+ "battlepass_killingblow_athena_player_3weaps_explosive": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Vehicle_Opponent": {
+ "templateId": "Quest:quest_br_damage_vehicle_opponent",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_vehicle_with_opponent_inside": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_01_E": {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_tilted_01_e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_01_D": {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_01_C": {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lucky_01_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_01_B": {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_pleasant_01_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_01_A": {
+ "templateId": "Quest:quest_br_land_chain_01_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_a_": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Falling_SupplyDrops": {
+ "templateId": "Quest:quest_br_damage_falling_supplydrops",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_athena_damage_descending_supply_drops": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_Location_Salty_Or_Haunted": {
+ "templateId": "Quest:quest_br_eliminate_location_salty_or_haunted",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_salty_or_haunted": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_HealingItems_QuestChain_02_C": {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_02_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "athena_battlepass_heal_player_medkit_chain3": 75
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_HealingItems_Chain_02_B": {
+ "templateId": "Quest:quest_br_interact_healingitems_chain_02_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "athena_battlepass_heal_player_cozycampfire_chain2": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_02_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_HealingItems_QuestChain_02_A": {
+ "templateId": "Quest:quest_br_interact_healingitems_questchain_02_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "athena_battlepass_heal_forageditems_apples_chain1": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_interact_healingitems_chain_02_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_Farthest_Points": {
+ "templateId": "Quest:quest_br_visit_farthest_points",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "athena_battlepass_visit_far_north": 1,
+ "athena_battlepass_visit_far_south": 1,
+ "athena_battlepass_visit_far_east": 1,
+ "athena_battlepass_visit_far_west": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Player_With_Cannon": {
+ "templateId": "Quest:quest_br_damage_player_with_cannon",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_with_cannon": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_Locations_Different_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different_singlematch",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_002",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_lazylinks": 1,
+ "battlepass_interact_chest_athena_location_different_dustydivot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_paradisepalms": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotemple": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1,
+ "battlepass_interact_chest_athena_location_different_riskyreels": 1,
+ "battlepass_interact_chest_athena_location_different_polarpeak": 1,
+ "battlepass_interact_chest_athena_location_different_frostyflights": 1,
+ "interact_athena_treasurechest_lazylagoon": 1,
+ "interact_athena_treasurechest_sunnysteps": 1,
+ "interact_athena_treasurechest_happyhamlet": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_E": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_snobbyshores_chain_01": 1,
+ "battlepass_visit_athena_location_saltysprings_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_D": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_lucklanding_chain_01": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_greasygrove_chain_01": 1,
+ "battlepass_visit_athena_location_lootlake_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_paradisepalms_chain_01": 1,
+ "battlepass_visit_athena_location_dustydivot_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_01_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_riskyreels_chain_01": 1,
+ "battlepass_visit_athena_location_wailingwoods_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_3BiomeContext_Stage3_Interact_Chests_Jungle": {
+ "templateId": "Quest:quest_br_3biomecontext_stage3_interact_chests_jungle",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "athena_battlepass_destroy_athena_treesrockscars_trees": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_3BiomeContext_Stage2_Interact_Ammoboxes_Snow": {
+ "templateId": "Quest:quest_br_3biomecontext_stage2_interact_ammoboxes_snow",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "athena_battlepass_destroy_athena_interact_ammoboxes_snow": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_3biomecontext_stage3_interact_chests_jungle",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_3BiomeContext_Stage1_Destroy_Cacti_Desert": {
+ "templateId": "Quest:quest_br_3biomecontext_stage1_destroy_cacti_desert",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "athena_battlepass_destroy_athena_cacti_desert": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_3biomecontext_stage2_interact_ammoboxes_snow",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_Trap_SingleMatch": {
+ "templateId": "Quest:quest_br_use_trap_singlematch",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_place_athena_trap_spike_singlematch": 1,
+ "battlepass_place_athena_trap_mountedturret_singlematch": 1,
+ "battlepass_place_athena_trap_launchpad_singlematch": 1,
+ "battlepass_place_athena_trap_campfire_singlematch": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_02": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_02": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_02": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_3Weapons_01": {
+ "templateId": "Quest:quest_br_eliminate_3weapons_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_3weaps_smg": 1,
+ "battlepass_killingblow_athena_player_3weaps_pistol": 1,
+ "battlepass_killingblow_athena_player_3weaps_sniper": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_02E": {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_paradise_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_02D": {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_pleasant_chain_02d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_02C": {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_dusty_chain_02c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_02B": {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_wailing_chain_02b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_02A": {
+ "templateId": "Quest:quest_br_land_chain_02a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_greasy_chain_02a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_Hamsterball": {
+ "templateId": "Quest:quest_br_use_hamsterball",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_athena_use_hamsterball": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_ScopedWeapon_and_SilencedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_scopedweapon_and_silencedweapon",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_silenced weapon": 1,
+ "battlepass_damage_athena_player_scopedweapon": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Destroy_Structure_AsCannonBall": {
+ "templateId": "Quest:quest_br_destroy_structure_ascannonball",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_as_cannonball": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_BuriedTreasure": {
+ "templateId": "Quest:quest_br_buriedtreasure",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_use_find_buried_treasure": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_TwoLocations_03": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_happy_or_pleasant": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Outlive_Opponents_Chain_3": {
+ "templateId": "Quest:quest_br_outlive_opponents_chain_3",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "quest_br_outlive_players_chain_3": 80
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Outlive_Opponents_Chain_2": {
+ "templateId": "Quest:quest_br_outlive_opponents_chain_2",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "quest_br_outlive_players_chain_2": 70
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_outlive_opponents_chain_3",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Outlive_90_Opponents": {
+ "templateId": "Quest:quest_br_outlive_90_opponents",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_004",
+ "objectives": {
+ "quest_br_outlive_90_players_week4": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_outlive_opponents_chain_2",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_ScopedWeapon": {
+ "templateId": "Quest:quest_br_damage_scopedweapon",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_scoped_weapon": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_ParadiseShifty": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_paradiseshifty",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_paradise_or_shifty": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_RaceTrack_HamsterBall": {
+ "templateId": "Quest:quest_br_racetrack_hamsterball",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "athena_battlepass_complete_hamsterball_racetrack": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Throw_BouncyBallToy_MinBounces": {
+ "templateId": "Quest:quest_br_throw_bouncyballtoy_minbounces",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "battlepass_athena_bouncyball_minbounces": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ShieldItems_QuestChain_C": {
+ "templateId": "Quest:quest_br_interact_shielditems_questchain_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "athena_battlepass_shield_bigpot_chain3": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ShieldItems_QuestChain_B": {
+ "templateId": "Quest:quest_br_interact_shielditems_questchain_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "athena_battlepass_shield_minipot_chain2": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_shielditems_questchain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ShieldItems_QuestChain_A": {
+ "templateId": "Quest:quest_br_interact_shielditems_questchain_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "athena_battlepass_shield_mushrooms_chain1": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_interact_shielditems_questchain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Geyser_Zipline_Vehicle_SingleMatch": {
+ "templateId": "Quest:quest_br_geyser_zipline_vehicle_singlematch",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "athena_battlepass_use_geyser_01": 1,
+ "athena_battlepass_use_zipline_02": 1,
+ "athena_battlepass_use_vehicle_01": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_Location_PirateCamps": {
+ "templateId": "Quest:quest_br_eliminate_location_piratecamps",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_piratecamps": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_Animal": {
+ "templateId": "Quest:quest_br_visit_animal",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_visit_athena_location_wooden_rabbit": 1,
+ "battlepass_visit_athena_location_stone_pig": 1,
+ "battlepass_visit_athena_location_metal_llama": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_Highest_Elevations": {
+ "templateId": "Quest:quest_br_visit_highest_elevations",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_visit_highest_elevation_01": 1,
+ "battlepass_visit_highest_elevation_02": 1,
+ "battlepass_visit_highest_elevation_03": 1,
+ "battlepass_visit_highest_elevation_04": 1,
+ "battlepass_visit_highest_elevation_05": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_TwoLocations_05": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_lazylagoon_or_frostyflights": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_03E": {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_leaky_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_03D": {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_haunted_chain_03d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_03C": {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_retail_chain_03c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_03B": {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_risky_chain_03b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_03A": {
+ "templateId": "Quest:quest_br_land_chain_03a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_shifty_chain_03a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_01": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_Flintlock_Or_CompoundBow": {
+ "templateId": "Quest:quest_br_eliminate_flintlock_or_compoundbow",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_eliminate_player_flintlock_or_compoundbow": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_Different_Throwable_Items_SingleMatch": {
+ "templateId": "Quest:quest_br_use_different_throwable_items_singlematch",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_006",
+ "objectives": {
+ "battlepass_ability_thrown_item_explosivegrenade": 1,
+ "battlepass_ability_thrown_item_dynamite": 1,
+ "battlepass_ability_thrown_item_gasgrenade": 1,
+ "battlepass_ability_thrown_item_stickygrenade": 1,
+ "battlepass_ability_thrown_item_dancegrenade": 1,
+ "battlepass_ability_thrown_item_portafortgrenade": 1,
+ "battlepass_ability_thrown_item_present": 1,
+ "battlepass_ability_thrown_item_bottlerocket": 1,
+ "battlepass_ability_thrown_item_sneakysnowman": 1,
+ "battlepass_ability_thrown_item_boombox": 1,
+ "battlepass_ability_thrown_item_chillergrenade": 1,
+ "battlepass_ability_thrown_item_impulsegrenade": 1,
+ "battlepass_ability_thrown_item_c4": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_04_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_haunted_chain_04": 1,
+ "battlepass_visit_athena_location_wailing_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_04_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_junk_chain_04": 1,
+ "battlepass_visit_athena_location_lootlake_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_TwoNamedLocs_Chain_04_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_paradise_chain_04": 1,
+ "battlepass_visit_athena_location_salty_chain_04": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_04_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Visit_PirateCamps_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_piratecamps_singlematch",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_piratecamp_singlematch_01": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_02": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_03": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_04": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_05": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_06": 1,
+ "battlepass_visit_athena_piratecamp_singlematch_07": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_From_Above": {
+ "templateId": "Quest:quest_br_damage_from_above",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_from_above": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_03": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_loot_or_snobby": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Chain_Zipline_B": {
+ "templateId": "Quest:quest_br_damage_chain_zipline_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_zipline_who_are_riding_chain": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Chain_Zipline_A": {
+ "templateId": "Quest:quest_br_damage_chain_zipline_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_zipline_while_riding_chain": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ },
+ {
+ "templateId": "Quest:quest_br_damage_chain_zipline_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_Location_Different": {
+ "templateId": "Quest:quest_br_eliminate_location_different",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_different_junkjunction": 1,
+ "battlepass_killingblow_athena_player_different_hauntedhills": 1,
+ "battlepass_killingblow_athena_player_different_pleasantpartk": 1,
+ "battlepass_killingblow_athena_player_different_lootlake": 1,
+ "battlepass_killingblow_athena_player_different_lazylinks": 1,
+ "battlepass_killingblow_athena_player_different_tomatotemple": 1,
+ "battlepass_killingblow_athena_player_different_riskyreels": 1,
+ "battlepass_killingblow_athena_player_different_wailingwoods": 1,
+ "battlepass_killingblow_athena_player_different_snobbyshores": 1,
+ "battlepass_killingblow_athena_player_different_greasygrove": 1,
+ "battlepass_killingblow_athena_player_different_tiltedtowers": 1,
+ "battlepass_killingblow_athena_player_different_shiftyshafts": 1,
+ "battlepass_killingblow_athena_player_different_dustydivot": 1,
+ "battlepass_killingblow_athena_player_different_saltysprings": 1,
+ "battlepass_killingblow_athena_player_different_retailrow": 1,
+ "battlepass_killingblow_athena_player_different_lonelylodge": 1,
+ "battlepass_killingblow_athena_player_different_flushfactory": 1,
+ "battlepass_killingblow_athena_player_different_luckylanding": 1,
+ "battlepass_killingblow_athena_player_different_fatalfields": 1,
+ "battlepass_killingblow_athena_player_different_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_04": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_01a": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_chain_01a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_treasuremap_chain_01a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_04",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_VendingMachine": {
+ "templateId": "Quest:quest_br_use_vendingmachine",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_vendingmachine": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_While_Using_Balloon": {
+ "templateId": "Quest:quest_br_damage_while_using_balloon",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_damage_opponents_while_using_balloon": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_JigsawPuzzle": {
+ "templateId": "Quest:quest_br_interact_jigsawpuzzle",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_interact_athena_pieces_01": 1,
+ "battlepass_interact_athena_pieces_02": 1,
+ "battlepass_interact_athena_pieces_03": 1,
+ "battlepass_interact_athena_pieces_04": 1,
+ "battlepass_interact_athena_pieces_05": 1,
+ "battlepass_interact_athena_pieces_06": 1,
+ "battlepass_interact_athena_pieces_07": 1,
+ "battlepass_interact_athena_pieces_08": 1,
+ "battlepass_interact_athena_pieces_09": 1,
+ "battlepass_interact_athena_pieces_10": 1,
+ "battlepass_interact_athena_fortnite_letters_11": 1,
+ "battlepass_interact_athena_pieces_12": 1,
+ "battlepass_interact_athena_pieces_13": 1,
+ "battlepass_interact_athena_pieces_14": 1,
+ "battlepass_interact_athena_pieces_15": 1,
+ "battlepass_interact_athena_pieces_16": 1,
+ "battlepass_interact_athena_pieces_17": 1,
+ "battlepass_interact_athena_pieces_18": 1,
+ "battlepass_interact_athena_pieces_19": 1,
+ "battlepass_interact_athena_pieces_20": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_PhoneChain_Pizza": {
+ "templateId": "Quest:quest_br_phonechain_pizza",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_bigphone_chain_input_2": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_PhoneChain_Durrr": {
+ "templateId": "Quest:quest_br_phonechain_durrr",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_bigphone_chain_input_1": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_phonechain_pizza",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_TwoLocations_04": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_junk_or_retail": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_50m": {
+ "templateId": "Quest:quest_br_eliminate_50m",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_players_50m_distance": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_04E": {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_dustydivot_04e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_04D": {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_shiftyshafts_04d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_04C": {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_hauntedhills_04c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_04B": {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_frostyflights_04b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Land_Chain_04A": {
+ "templateId": "Quest:quest_br_land_chain_04a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_land_athena_location_retail_04a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_Chests_TwoLocations_04": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_polar_or_lonely": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_Geyser_MultipleBeforeLanding": {
+ "templateId": "Quest:quest_br_use_geyser_multiplebeforelanding",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_use_item_geyser_multiple_before_landing": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Dance_Chain_04_C": {
+ "templateId": "Quest:quest_br_dance_chain_04_c",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Dance_Chain_04_B": {
+ "templateId": "Quest:quest_br_dance_chain_04_b",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_04_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Dance_Chain_04_A": {
+ "templateId": "Quest:quest_br_dance_chain_04_a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_04_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Below": {
+ "templateId": "Quest:quest_br_damage_below",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_player_below": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Use_SecondChanceMachine_ReviveTeammate": {
+ "templateId": "Quest:quest_br_use_secondchancemachine_reviveteammate",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_use_second_chance_machine_revive_teammate": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Touch_FlamingRings_Cannon": {
+ "templateId": "Quest:quest_br_touch_flamingrings_cannon",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_touch_flamingrings_cannon_01": 1,
+ "battlepass_touch_flamingrings_cannon_02": 1,
+ "battlepass_touch_flamingrings_cannon_03": 1,
+ "battlepass_touch_flamingrings_cannon_04": 1,
+ "battlepass_touch_flamingrings_cannon_05": 1,
+ "battlepass_touch_flamingrings_cannon_06": 1,
+ "battlepass_touch_flamingrings_cannon_07": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Chain_Collect_BuildingResources_SingleMatch_03": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_singlematch_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_metal_singlematch": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Chain_Collect_BuildingResources_SingleMatch_02": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_singlematch_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_stone_singlematch": 400
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_singlematch_03",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Chain_Collect_BuildingResources_SingleMatch_01": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_singlematch_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_wood_singlematch": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_singlematch_02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_TwoLocations_06": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_06",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_tiltedtowers_or_theblock": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_Infantry_or_Heavy": {
+ "templateId": "Quest:quest_br_damage_infantry_or_heavy",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player_infantry_or_heavy": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_05": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_hidden_star_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Interact_ScavengerHunt_TreasureMap_Chain_02a": {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_chain_02a",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_interact_athena_treasuremap_chain_02a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_interact_scavengerhunt_treasuremap_05",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Damage_After_VolcanoVent": {
+ "templateId": "Quest:quest_br_damage_after_volcanovent",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_place_athena_damage_after_volcano_vent": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Eliminate_MaxDistance": {
+ "templateId": "Quest:quest_br_eliminate_maxdistance",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_players_maxdistance": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_133_pirate_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 40000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_134_pirate_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 80000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_135_pirate_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 120000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_163_pirateoctopus",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_05": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 160000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_136_pirate_stagee",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_06": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_06",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_137_pirate_stagef",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_07": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_07",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 240000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_138_pirate_stageg",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_08": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_08",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 280000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_139_pirate_stageh",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Gain_SeasonXP_09": {
+ "templateId": "Quest:quest_br_s8_pirate_gain_seasonxp_09",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_season_xp_gained": 320000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_216_pirateprogressive",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s8_pirate_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_pirate_complete_weeklychallenges_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_140_pirate_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s8_pirate_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_pirate_complete_weeklychallenges_02": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_141_pirate_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Pirate_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s8_pirate_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Pirate",
+ "objectives": {
+ "athena_pirate_complete_weeklychallenges_03": 45
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_142_pirate_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 20000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_164_dragonninja",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 60000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_143_dragonninja_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 100000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_149_dragonninja_dragonskinb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 140000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brseason08_dragonninja_pickaxestyles",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_152_dragonninja_pickaxeb",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_153_dragonninja_pickaxec",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_154_dragonninja_pickaxed",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_05": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 180000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_144_dragonninja_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_06": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_06",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 220000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_150_dragonninja_dragonskinc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_07": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_07",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 260000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_shinobi",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_08": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_08",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 300000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_151_dragonninja_dragonskind",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Gain_SeasonXP_09": {
+ "templateId": "Quest:quest_br_s8_dragonninja_gain_seasonxp_09",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_season_xp_gained": 340000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_145_dragonninja_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s8_dragonninja_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_dragonninja_complete_weeklychallenges_01": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_146_dragonninja_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s8_dragonninja_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_dragonninja_complete_weeklychallenges_02": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_147_dragonninja_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_DragonNinja_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s8_dragonninja_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_DragonNinja",
+ "objectives": {
+ "athena_dragonninja_complete_weeklychallenges_03": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_148_dragonninja_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Destroy_Trees": {
+ "templateId": "Quest:quest_br_ruin_destroy_trees",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "athena_battlepass_ruin_destroy_athena_trees": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Destroy_Rocks": {
+ "templateId": "Quest:quest_br_ruin_destroy_rocks",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "athena_battlepass_ruin_destroy_athena_rocks": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Destroy_Cars": {
+ "templateId": "Quest:quest_br_ruin_destroy_cars",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "athena_battlepass_ruin_destroy_athena_cars": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Damage_Enemy_Structures": {
+ "templateId": "Quest:quest_br_ruin_damage_enemy_structures",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "battlepass_damage_ruin_athena_enemy_building": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Outlast": {
+ "templateId": "Quest:quest_br_ruin_outlast",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "athena_battlepass_ruin_outlast": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_Ruin_Complete_Daily_Challenges": {
+ "templateId": "Quest:quest_br_ruin_complete_daily_challenges",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Cumulative_Ruin",
+ "objectives": {
+ "athena_battlepass_ruin_complete_daily_challenges_01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_01": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_01",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_01": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_166_shiny",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_02": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_02",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_02": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_155_shiny_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_03": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_03",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_03": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_217_shinyfemale",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_04": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_04",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_04": 7500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_156_shiny_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_05": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_05",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_05": 15000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_shiny",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS08-Quest_BR_S8_Shiny_Outlive_06": {
+ "templateId": "Quest:quest_br_s8_shiny_outlive_06",
+ "challenge_bundle_id": "QS08-QuestBundle_S8_Shiny",
+ "objectives": {
+ "athena_shiny_outlive_06": 25000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_157_shiny_clothingd",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_158_shiny_backblingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ },
+ "Season09": {
+ "ChallengeBundleSchedules": {
+ "QS09-Schedule_14DaysOfSummer": {
+ "templateId": "ChallengeBundleSchedule:schedule_14daysofsummer",
+ "granted_bundles": [
+ "QS09-QuestBundle_14DaysOfSummer"
+ ]
+ },
+ "QS09-Schedule_LTM_Mash": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_mash",
+ "granted_bundles": [
+ "QS09-QuestBundle_LTM_Mash"
+ ]
+ },
+ "QS09-Schedule_LTM_Wax": {
+ "templateId": "ChallengeBundleSchedule:schedule_ltm_wax",
+ "granted_bundles": [
+ "QS09-QuestBundle_LTM_Wax"
+ ]
+ },
+ "QS09-Season9_Architect_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_architect_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Architect"
+ ]
+ },
+ "QS09-Season9_BattleSuit_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_battlesuit_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_BattleSuit"
+ ]
+ },
+ "QS09-Season9_BountyHunter_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_bountyhunter_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_BountyHunter"
+ ]
+ },
+ "QS09-Season9_BunkerMan_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_bunkerman_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_BunkerMan"
+ ]
+ },
+ "QS09-Season9_Cumulative_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_cumulative_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Cumulative"
+ ]
+ },
+ "QS09-Season9_Fortbyte_Loadingscreen_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_fortbyte_loadingscreen_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Fortbyte_LoadingScreen"
+ ]
+ },
+ "QS09-Season9_Fortbyte_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_fortbyte_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Fortbyte"
+ ]
+ },
+ "QS09-Season9_Free_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_free_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Week_001",
+ "QS09-QuestBundle_S9_Week_002",
+ "QS09-QuestBundle_S9_Week_003",
+ "QS09-QuestBundle_S9_Week_004",
+ "QS09-QuestBundle_S9_Week_005",
+ "QS09-QuestBundle_S9_Week_006",
+ "QS09-QuestBundle_S9_Week_007",
+ "QS09-QuestBundle_S9_Week_008",
+ "QS09-QuestBundle_S9_Week_009",
+ "QS09-QuestBundle_S9_Week_010"
+ ]
+ },
+ "QS09-Season9_Masako_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_masako_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Masako"
+ ]
+ },
+ "QS09-Season9_OT_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_ot_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_Overtime"
+ ]
+ },
+ "QS09-Season9_Paid_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_paid_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_StrawberryPilot",
+ "QS09-QuestBundle_S9_Rooster"
+ ]
+ },
+ "QS09-Season9_StormTracker_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season9_stormtracker_schedule",
+ "granted_bundles": [
+ "QS09-QuestBundle_S9_StormTracker"
+ ]
+ },
+ "QS09-Schedule_Birthday2019_BR": {
+ "templateId": "ChallengeBundleSchedule:schedule_birthday2019_br",
+ "granted_bundles": [
+ "QS09-QuestBundle_Birthday2019_BR"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS09-QuestBundle_14DaysOfSummer": {
+ "templateId": "ChallengeBundle:questbundle_14daysofsummer",
+ "challenge_bundle_schedule_id": "QS09-Schedule_14DaysOfSummer",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_FDS_Dance_BeachParties",
+ "QS09-Quest_BR_FDS_Touch_GiantBeachBall",
+ "QS09-Quest_BR_FDS_Eliminate_Unvaulted_or_Drumgun",
+ "QS09-Quest_BR_FDS_ThankBusDriver_and_Top20",
+ "QS09-Quest_BR_FDS_Destroy_PartyBalloons",
+ "QS09-Quest_BR_FDS_Interact_UnicornFloaties",
+ "QS09-Quest_BR_FDS_HitPlayer_Waterballoon",
+ "QS09-Quest_BR_FDS_Touch_GiantUmbrella",
+ "QS09-Quest_BR_FDS_Score_Trickpoints_Driftboard",
+ "QS09-Quest_BR_FDS_Interact_Fireworks",
+ "QS09-Quest_BR_FDS_Score_BalloonBoard",
+ "QS09-Quest_BR_FDS_Visit_DuckyBeachballUmbrella_SingleMatch",
+ "QS09-Quest_BR_FDS_Interact_HiddenThing_InLoadingScreen",
+ "QS09-Quest_BR_FDS_Destroy_Grills_WithUtensilPickaxes"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaBackpack:bid_303_bananasmoothie",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_LTM_Mash": {
+ "templateId": "ChallengeBundle:questbundle_ltm_mash",
+ "challenge_bundle_schedule_id": "QS09-Schedule_LTM_Mash",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Mash_Headshots",
+ "QS09-Quest_BR_Mash_Eliminate_Exploders_Distance",
+ "QS09-Quest_BR_Mash_Interact_ScoreMultiplier",
+ "QS09-Quest_BR_Mash_Damage_Spawners",
+ "QS09-Quest_BR_Mash_Eliminate_Golden",
+ "QS09-Quest_BR_Mash_Win_NoDeath",
+ "QS09-Quest_BR_Mash_TeamScore_Chain_A"
+ ],
+ "completionRewards": {
+ "7": [
+ {
+ "templateId": "AthenaItemWrap:wrap_079_mash",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.MashLTM"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_LTM_Wax": {
+ "templateId": "ChallengeBundle:questbundle_ltm_wax",
+ "challenge_bundle_schedule_id": "QS09-Schedule_LTM_Wax",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Wax_Win",
+ "QS09-Quest_BR_Wax_Play_Matches",
+ "QS09-Quest_BR_Wax_CollectCoins",
+ "QS09-Quest_BR_Wax_CollectCoins_SingleMatch",
+ "QS09-Quest_BR_Wax_Damage_Shotgun",
+ "QS09-Quest_BR_Wax_Damage_Assault"
+ ],
+ "completionRewards": {
+ "5": [
+ {
+ "templateId": "AthenaBackpack:bid_273_assassinsuitcoin",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.WaxLTM"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Architect": {
+ "templateId": "ChallengeBundle:questbundle_s9_architect",
+ "challenge_bundle_schedule_id": "QS09-Season9_Architect_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Architect_Fortbyte_A",
+ "QS09-Quest_BR_Architect_Fortbyte_B"
+ ],
+ "completionRewards": {
+ "-1": []
+ }
+ },
+ "QS09-QuestBundle_S9_BattleSuit": {
+ "templateId": "ChallengeBundle:questbundle_s9_battlesuit",
+ "challenge_bundle_schedule_id": "QS09-Season9_BattleSuit_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_01",
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_02",
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_03",
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_04",
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_01",
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_02",
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_03",
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_01",
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_02",
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_03",
+ "QS09-Quest_BR_S9_BattleSuit_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_BattleSuit_CollectGlyphs_02"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs9completionbattlesuit",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_BountyHunter": {
+ "templateId": "ChallengeBundle:questbundle_s9_bountyhunter",
+ "challenge_bundle_schedule_id": "QS09-Season9_BountyHunter_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_BountyHunter_Outlive_01",
+ "QS09-Quest_BR_S9_BountyHunter_Outlive_02",
+ "QS09-Quest_BR_S9_BountyHunter_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_BountyHunter_CollectGlyphs_02"
+ ],
+ "completionRewards": {}
+ },
+ "QS09-QuestBundle_S9_BunkerMan": {
+ "templateId": "ChallengeBundle:questbundle_s9_bunkerman",
+ "challenge_bundle_schedule_id": "QS09-Season9_BunkerMan_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_BunkerJonesy_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_BunkerJonesy_CollectGlyphs_02"
+ ],
+ "completionRewards": {
+ "-1": []
+ }
+ },
+ "QS09-QuestBundle_S9_Cumulative": {
+ "templateId": "ChallengeBundle:questbundle_s9_cumulative",
+ "challenge_bundle_schedule_id": "QS09-Season9_Cumulative_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_Cumulative_Collect_Glyphs",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_001",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_002",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_003",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_004",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_005",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_006",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_007",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_008",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_009",
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_010"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs9completion",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Fortbyte_LoadingScreen": {
+ "templateId": "ChallengeBundle:questbundle_s9_fortbyte_loadingscreen",
+ "challenge_bundle_schedule_id": "QS09-Season9_Fortbyte_Loadingscreen_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Collect_All_Fortbytes"
+ ],
+ "completionRewards": {
+ "-1": []
+ }
+ },
+ "QS09-QuestBundle_S9_Fortbyte": {
+ "templateId": "ChallengeBundle:questbundle_s9_fortbyte",
+ "challenge_bundle_schedule_id": "QS09-Season9_Fortbyte_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_Fortbyte_00",
+ "QS09-Quest_BR_S9_Fortbyte_01",
+ "QS09-Quest_BR_S9_Fortbyte_02",
+ "QS09-Quest_BR_S9_Fortbyte_03",
+ "QS09-Quest_BR_S9_Fortbyte_04",
+ "QS09-Quest_BR_S9_Fortbyte_05",
+ "QS09-Quest_BR_S9_Fortbyte_06",
+ "QS09-Quest_BR_S9_Fortbyte_07",
+ "QS09-Quest_BR_S9_Fortbyte_08",
+ "QS09-Quest_BR_S9_Fortbyte_09",
+ "QS09-Quest_BR_S9_Fortbyte_10",
+ "QS09-Quest_BR_S9_Fortbyte_11",
+ "QS09-Quest_BR_S9_Fortbyte_12",
+ "QS09-Quest_BR_S9_Fortbyte_13",
+ "QS09-Quest_BR_S9_Fortbyte_14",
+ "QS09-Quest_BR_S9_Fortbyte_15",
+ "QS09-Quest_BR_S9_Fortbyte_16",
+ "QS09-Quest_BR_S9_Fortbyte_17",
+ "QS09-Quest_BR_S9_Fortbyte_18",
+ "QS09-Quest_BR_S9_Fortbyte_19",
+ "QS09-Quest_BR_S9_Fortbyte_20",
+ "QS09-Quest_BR_S9_Fortbyte_21",
+ "QS09-Quest_BR_S9_Fortbyte_22",
+ "QS09-Quest_BR_S9_Fortbyte_23",
+ "QS09-Quest_BR_S9_Fortbyte_24",
+ "QS09-Quest_BR_S9_Fortbyte_25",
+ "QS09-Quest_BR_S9_Fortbyte_26",
+ "QS09-Quest_BR_S9_Fortbyte_27",
+ "QS09-Quest_BR_S9_Fortbyte_28",
+ "QS09-Quest_BR_S9_Fortbyte_29",
+ "QS09-Quest_BR_S9_Fortbyte_30",
+ "QS09-Quest_BR_S9_Fortbyte_31",
+ "QS09-Quest_BR_S9_Fortbyte_32",
+ "QS09-Quest_BR_S9_Fortbyte_33",
+ "QS09-Quest_BR_S9_Fortbyte_34",
+ "QS09-Quest_BR_S9_Fortbyte_35",
+ "QS09-Quest_BR_S9_Fortbyte_36",
+ "QS09-Quest_BR_S9_Fortbyte_37",
+ "QS09-Quest_BR_S9_Fortbyte_38",
+ "QS09-Quest_BR_S9_Fortbyte_39",
+ "QS09-Quest_BR_S9_Fortbyte_40",
+ "QS09-Quest_BR_S9_Fortbyte_41",
+ "QS09-Quest_BR_S9_Fortbyte_42",
+ "QS09-Quest_BR_S9_Fortbyte_43",
+ "QS09-Quest_BR_S9_Fortbyte_44",
+ "QS09-Quest_BR_S9_Fortbyte_45",
+ "QS09-Quest_BR_S9_Fortbyte_46",
+ "QS09-Quest_BR_S9_Fortbyte_47",
+ "QS09-Quest_BR_S9_Fortbyte_48",
+ "QS09-Quest_BR_S9_Fortbyte_49",
+ "QS09-Quest_BR_S9_Fortbyte_50",
+ "QS09-Quest_BR_S9_Fortbyte_51",
+ "QS09-Quest_BR_S9_Fortbyte_52",
+ "QS09-Quest_BR_S9_Fortbyte_53",
+ "QS09-Quest_BR_S9_Fortbyte_54",
+ "QS09-Quest_BR_S9_Fortbyte_55",
+ "QS09-Quest_BR_S9_Fortbyte_56",
+ "QS09-Quest_BR_S9_Fortbyte_57",
+ "QS09-Quest_BR_S9_Fortbyte_58",
+ "QS09-Quest_BR_S9_Fortbyte_59",
+ "QS09-Quest_BR_S9_Fortbyte_60",
+ "QS09-Quest_BR_S9_Fortbyte_61",
+ "QS09-Quest_BR_S9_Fortbyte_62",
+ "QS09-Quest_BR_S9_Fortbyte_63",
+ "QS09-Quest_BR_S9_Fortbyte_64",
+ "QS09-Quest_BR_S9_Fortbyte_65",
+ "QS09-Quest_BR_S9_Fortbyte_66",
+ "QS09-Quest_BR_S9_Fortbyte_67",
+ "QS09-Quest_BR_S9_Fortbyte_68",
+ "QS09-Quest_BR_S9_Fortbyte_69",
+ "QS09-Quest_BR_S9_Fortbyte_70",
+ "QS09-Quest_BR_S9_Fortbyte_71",
+ "QS09-Quest_BR_S9_Fortbyte_72",
+ "QS09-Quest_BR_S9_Fortbyte_73",
+ "QS09-Quest_BR_S9_Fortbyte_74",
+ "QS09-Quest_BR_S9_Fortbyte_75",
+ "QS09-Quest_BR_S9_Fortbyte_76",
+ "QS09-Quest_BR_S9_Fortbyte_77",
+ "QS09-Quest_BR_S9_Fortbyte_78",
+ "QS09-Quest_BR_S9_Fortbyte_79",
+ "QS09-Quest_BR_S9_Fortbyte_80",
+ "QS09-Quest_BR_S9_Fortbyte_81",
+ "QS09-Quest_BR_S9_Fortbyte_82",
+ "QS09-Quest_BR_S9_Fortbyte_83",
+ "QS09-Quest_BR_S9_Fortbyte_84",
+ "QS09-Quest_BR_S9_Fortbyte_85",
+ "QS09-Quest_BR_S9_Fortbyte_86",
+ "QS09-Quest_BR_S9_Fortbyte_87",
+ "QS09-Quest_BR_S9_Fortbyte_88",
+ "QS09-Quest_BR_S9_Fortbyte_89",
+ "QS09-Quest_BR_S9_Fortbyte_90",
+ "QS09-Quest_BR_S9_Fortbyte_91",
+ "QS09-Quest_BR_S9_Fortbyte_92",
+ "QS09-Quest_BR_S9_Fortbyte_93",
+ "QS09-Quest_BR_S9_Fortbyte_94",
+ "QS09-Quest_BR_S9_Fortbyte_95",
+ "QS09-Quest_BR_S9_Fortbyte_96",
+ "QS09-Quest_BR_S9_Fortbyte_97",
+ "QS09-Quest_BR_S9_Fortbyte_98",
+ "QS09-Quest_BR_S9_Fortbyte_99"
+ ],
+ "completionRewards": {
+ "-1": []
+ }
+ },
+ "QS09-QuestBundle_S9_Week_001": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_001",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Use_WindTunnel_Chain_NeoTilted",
+ "QS09-Quest_BR_Visit_SkyPlatforms",
+ "QS09-Quest_BR_Damage_After_ShadowBomb",
+ "QS09-Quest_BR_Collect_LegendaryItem_DifferentMatches",
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_01",
+ "QS09-Quest_BR_Eliminate_ScopedWeapon",
+ "QS09-Quest_BR_Damage_Above_2Stories"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week1",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_002": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_002",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Use_HVAC_DifferentMatches",
+ "QS09-Quest_BR_Land_Chain_01_A",
+ "QS09-Quest_BR_Eliminate_TwoLocations_01",
+ "QS09-Quest_BR_Damage_Pistol",
+ "QS09-Quest_BR_Visit_ThreeQuestProps",
+ "QS09-Quest_BR_Interact_Chests_Locations_Different_SingleMatch",
+ "QS09-Quest_BR_Eliminate_MinDistance_Chain_A"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week2",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_003": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_003",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_TrickPoint_Driftboard",
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_02",
+ "QS09-Quest_BR_Damage_After_SlipStream",
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_A",
+ "QS09-Quest_BR_Use_FlyingDisc_SelfCatch",
+ "QS09-Quest_BR_Eliminate_ExplosiveWeapon",
+ "QS09-Quest_BR_Damage_Weapons_Different_SingleMatch"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week3",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_004": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_004",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Damage_SniperRifle",
+ "QS09-Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_A",
+ "QS09-Quest_BR_Eliminate_WeaponRarity_Legendary",
+ "QS09-Quest_BR_Destroy_SupplyDropDrone",
+ "QS09-Quest_BR_Land_Chain_02A",
+ "QS09-Quest_BR_Eliminate_TwoLocations_02",
+ "QS09-Quest_BR_Visit_NamedLocations_SingleMatch"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week4",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_005": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_005",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Damage_ThrownWeapons",
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_03",
+ "QS09-Quest_BR_Eliminate",
+ "QS09-Quest_BR_RaceTrack_Chain_Arid",
+ "QS09-Quest_BR_Use_Trap_DifferentMatches",
+ "QS09-Quest_BR_Visit_Turbines",
+ "QS09-Quest_BR_Eliminate_Location_SkyPlatforms"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week5",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_006": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_006",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Land_Chain_03A",
+ "QS09-Quest_BR_Damage_SMG",
+ "QS09-Quest_BR_Hotspots_Chain_Chests",
+ "QS09-Quest_BR_Damage_Vehicle_Opponent",
+ "QS09-Quest_BR_Use_DogSweater",
+ "QS09-Quest_BR_Use_Different_Vehicles_SingleMatch",
+ "QS09-Quest_BR_Eliminate_TwoLocations_03"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 6000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week6",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_007": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_007",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_04",
+ "QS09-Quest_BR_Interact_AmmoBox_Locations_Different",
+ "QS09-Quest_BR_Eliminate_SuppressedWeapon",
+ "QS09-Quest_BR_Damage_Passenger_Vehicle",
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_02_A",
+ "QS09-Quest_BR_Interact_Chest_VendingMachine_Campfire_SingleMatch",
+ "QS09-Quest_BR_Eliminate_MaxDistance"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 7000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week7",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_008": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_008",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Heal_Shields",
+ "QS09-Quest_BR_Visit_Clocks",
+ "QS09-Quest_BR_Eliminate_TwoLocations_04",
+ "QS09-Quest_BR_Damage_AssaultRifle",
+ "QS09-Quest_BR_Land_Chain_04A",
+ "QS09-Quest_BR_Airvent_Zipline_VolcanoVent_SingleMatch",
+ "QS09-Quest_BR_Eliminate_Location_OutsidePOI"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 8000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week8",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_009": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_009",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Use_ChugJug_ChillBronco",
+ "QS09-Quest_BR_Visit_SolarArrays",
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Grey",
+ "QS09-Quest_BR_Damage_Headshot",
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_05",
+ "QS09-Quest_BR_Eliminate_Location_Different",
+ "QS09-Quest_BR_Damage_After_VolcanoVent"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 9000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week9",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Week_010": {
+ "templateId": "ChallengeBundle:questbundle_s9_week_010",
+ "challenge_bundle_schedule_id": "QS09-Season9_Free_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Use_AirStrike",
+ "QS09-Quest_BR_Damage_Shotgun",
+ "QS09-Quest_BR_Interact_AmmoBoxes_SingleMatch",
+ "QS09-Quest_BR_Visit_Poster",
+ "QS09-Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_A",
+ "QS09-Quest_BR_Eliminate_TwoLocations_05",
+ "QS09-Quest_BR_Damage_Pickaxe"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:fortbyte_weeklychallengescomplete_week10",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "-1": [
+ {
+ "templateId": "Token:athenabattlepass_weeklybundle_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Masako": {
+ "templateId": "ChallengeBundle:questbundle_s9_masako",
+ "challenge_bundle_schedule_id": "QS09-Season9_Masako_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_Masako_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_Masako_CollectGlyphs_02"
+ ],
+ "completionRewards": {}
+ },
+ "QS09-QuestBundle_S9_Overtime": {
+ "templateId": "ChallengeBundle:questbundle_s9_overtime",
+ "challenge_bundle_schedule_id": "QS09-Season9_OT_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01a",
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02a",
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03a",
+ "QS09-Quest_BR_OT_Eliminate_Assist_Friend",
+ "QS09-Quest_BR_OT_Damage_Shotgun",
+ "QS09-Quest_BR_OT_Visit_LootPolarPressure",
+ "QS09-Quest_BR_OT_Revive_Friend_DifferentMatches",
+ "QS09-Quest_BR_OT_Damage_AssaultRifle",
+ "QS09-Quest_BR_OT_Dance_Skeleton",
+ "QS09-Quest_BR_OT_Top15_DuosSquads_WithFriend",
+ "QS09-Quest_BR_OT_Damage_SMG",
+ "QS09-Quest_BR_OT_Score_Soccer_Pitch"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 15000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_StrawberryPilot": {
+ "templateId": "ChallengeBundle:questbundle_s9_strawberrypilot",
+ "challenge_bundle_schedule_id": "QS09-Season9_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_05",
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_01",
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_02",
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_03",
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_04",
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_01",
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_02",
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_03",
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_02",
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_03",
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_04"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs9completionstrawberry",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_Rooster": {
+ "templateId": "ChallengeBundle:questbundle_s9_rooster",
+ "challenge_bundle_schedule_id": "QS09-Season9_Paid_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_Rooster_CollectGlyphs_01_A",
+ "QS09-Quest_BR_S9_Rooster_CollectGlyphs_02"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "HomebaseBannerIcon:brs9completionrooster",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS09-QuestBundle_S9_StormTracker": {
+ "templateId": "ChallengeBundle:questbundle_s9_stormtracker",
+ "challenge_bundle_schedule_id": "QS09-Season9_StormTracker_Schedule",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_S9_StormTracker_CollectGlyphs_01",
+ "QS09-Quest_BR_S9_StormTracker_CollectGlyphs_02"
+ ],
+ "completionRewards": {}
+ },
+ "QS09-QuestBundle_Birthday2019_BR": {
+ "templateId": "ChallengeBundle:questbundle_birthday2019_br",
+ "challenge_bundle_schedule_id": "QS09-Schedule_Birthday2019_BR",
+ "grantedquestinstanceids": [
+ "QS09-Quest_BR_Play_Birthday",
+ "QS09-Quest_BR_Dance_ScavengerHunt_BirthdayCakes",
+ "QS09-Quest_BR_Outlast_Birthday",
+ "QS09-Quest_BR_Heal_BirthdayCake"
+ ],
+ "completionRewards": {
+ "4": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_233_birthday2019",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Birthday2"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS09-Quest_BR_FDS_Dance_BeachParties": {
+ "templateId": "Quest:quest_br_fds_dance_beachparties",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_dance_athena_beach_party_01": 1,
+ "fds_dance_athena_beach_party_02": 1,
+ "fds_dance_athena_beach_party_03": 1,
+ "fds_dance_athena_beach_party_04": 1,
+ "fds_dance_athena_beach_party_05": 1,
+ "fds_dance_athena_beach_party_06": 1,
+ "fds_dance_athena_beach_party_07": 1
+ },
+ "objectiveCompletionCount": 6,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_swimdance",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Touch_GiantBeachBall": {
+ "templateId": "Quest:quest_br_fds_touch_giantbeachball",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_touch_athena_giant_beach_ball": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_143_summerdays",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Eliminate_Unvaulted_or_Drumgun": {
+ "templateId": "Quest:quest_br_fds_eliminate_unvaulted_or_drumgun",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_killingblow_athena_player_unvaulted_or_drumgun": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:toy_019_waterballoon",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_ThankBusDriver_and_Top20": {
+ "templateId": "Quest:quest_br_fds_thankbusdriver_and_top20",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_thank_athena_busdriver_top20_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:emoji_summerdays",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Destroy_PartyBalloons": {
+ "templateId": "Quest:quest_br_fds_destroy_partyballoons",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_destroy_athena_partyballoons": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_127_summerdays01",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Interact_UnicornFloaties": {
+ "templateId": "Quest:quest_br_fds_interact_unicornfloaties",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_interact_athena_unicorn_floaty_01": 1,
+ "fds_interact_athena_unicorn_floaty_02": 1,
+ "fds_interact_athena_unicorn_floaty_03": 1,
+ "fds_interact_athena_unicorn_floaty_04": 1,
+ "fds_interact_athena_unicorn_floaty_05": 1,
+ "fds_interact_athena_unicorn_floaty_06": 1,
+ "fds_interact_athena_unicorn_floaty_07": 1,
+ "fds_interact_athena_unicorn_floaty_08": 1,
+ "fds_interact_athena_unicorn_floaty_09": 1,
+ "fds_interact_athena_unicorn_floaty_10": 1,
+ "fds_interact_athena_unicorn_floaty_11": 1,
+ "fds_interact_athena_unicorn_floaty_12": 1,
+ "fds_interact_athena_unicorn_floaty_13": 1,
+ "fds_interact_athena_unicorn_floaty_14": 1,
+ "fds_interact_athena_unicorn_floaty_15": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_091_hoversurfboard",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_HitPlayer_Waterballoon": {
+ "templateId": "Quest:quest_br_fds_hitplayer_waterballoon",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_hitplayer_athena_waterballoon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_144_waterballoonltm",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Touch_GiantUmbrella": {
+ "templateId": "Quest:quest_br_fds_touch_giantumbrella",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_touch_athena_giant_beach_umbrella": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brs9_fds_ducky",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs914daysrubberducky",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Score_Trickpoints_Driftboard": {
+ "templateId": "Quest:quest_br_fds_score_trickpoints_driftboard",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_score_athena_driftboard_surfwrap_trickpoints": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_128_summerdays02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Interact_Fireworks": {
+ "templateId": "Quest:quest_br_fds_interact_fireworks",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "battlepass_interact_athena_fireworks_01": 1,
+ "battlepass_interact_athena_fireworks_02": 1,
+ "battlepass_interact_athena_fireworks_03": 1,
+ "battlepass_interact_athena_fireworks_04": 1,
+ "battlepass_interact_athena_fireworks_05": 1,
+ "battlepass_interact_athena_fireworks_06": 1,
+ "battlepass_interact_athena_fireworks_07": 1,
+ "battlepass_interact_athena_fireworks_08": 1,
+ "battlepass_interact_athena_fireworks_09": 1,
+ "battlepass_interact_athena_fireworks_10": 1,
+ "battlepass_interact_athena_fireworks_11": 1,
+ "battlepass_interact_athena_fireworks_12": 1,
+ "battlepass_interact_athena_fireworks_13": 1,
+ "battlepass_interact_athena_fireworks_14": 1,
+ "battlepass_interact_athena_fireworks_15": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_232_grillin1h",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Score_BalloonBoard": {
+ "templateId": "Quest:quest_br_fds_score_balloonboard",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_score_athena_balloonboard": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_063_beachballs",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Visit_DuckyBeachballUmbrella_SingleMatch": {
+ "templateId": "Quest:quest_br_fds_visit_duckybeachballumbrella_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_touch_athena_giant_beach_ducky_beachball_umbrella_singlematch_01": 1,
+ "fds_touch_athena_giant_beach_ducky_beachball_umbrella_singlematch_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_304_duck",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Interact_HiddenThing_InLoadingScreen": {
+ "templateId": "Quest:quest_br_fds_interact_hiddenthing_inloadingscreen",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_interact_athena_hidden_thing_in_loadingscreen": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaMusicPack:musicpack_018_glitter",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_FDS_Destroy_Grills_WithUtensilPickaxes": {
+ "templateId": "Quest:quest_br_fds_destroy_grills_withutensilpickaxes",
+ "challenge_bundle_id": "QS09-QuestBundle_14DaysOfSummer",
+ "objectives": {
+ "fds_destroy_athena_grills_with_utensil_pickaxes": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenatoken_brs9_fds_grillin",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "HomebaseBannerIcon:brs914daysgrillin",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.14DaysOfSummer"
+ }
+ }
+ },
+ "QS09-Quest_BR_Mash_Headshots": {
+ "templateId": "Quest:quest_br_mash_headshots",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_damage_athena_headshots": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_142_mashltm",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_Eliminate_Exploders_Distance": {
+ "templateId": "Quest:quest_br_mash_eliminate_exploders_distance",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_eliminate_athena_exploders_distance": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_Interact_ScoreMultiplier": {
+ "templateId": "Quest:quest_br_mash_interact_scoremultiplier",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_interact_score_multiplier": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_Damage_Spawners": {
+ "templateId": "Quest:quest_br_mash_damage_spawners",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_damage_athena_spawners": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_Eliminate_Golden": {
+ "templateId": "Quest:quest_br_mash_eliminate_golden",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_eliminate_athena_golden": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_Win_NoDeath": {
+ "templateId": "Quest:quest_br_mash_win_nodeath",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_athena_win_nodeath": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_TeamScore_Chain_D": {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_d",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_athena_team_score_d": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_TeamScore_Chain_C": {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_c",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_athena_team_score_c": 150000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 300
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_TeamScore_Chain_B": {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_b",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_athena_team_score_b": 100000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 200
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Mash_TeamScore_Chain_A": {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_a",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Mash",
+ "objectives": {
+ "ltm_mash_athena_team_score_a": 50000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Quest:quest_br_mash_teamscore_chain_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 100
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_Win": {
+ "templateId": "Quest:quest_br_wax_win",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_athena_win": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:umbrella_assassinsuit",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_Play_Matches": {
+ "templateId": "Quest:quest_br_wax_play_matches",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_athena_play_matches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_065_assassinsuit01",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_CollectCoins": {
+ "templateId": "Quest:quest_br_wax_collectcoins",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_collect_athena_gold_coins": 120
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_CollectCoins_SingleMatch": {
+ "templateId": "Quest:quest_br_wax_collectcoins_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_collect_athena_gold_coins_single_match": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_wax_damage_shotgun",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_damage_athena_shotgun": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Wax_Damage_Assault": {
+ "templateId": "Quest:quest_br_wax_damage_assault",
+ "challenge_bundle_id": "QS09-QuestBundle_LTM_Wax",
+ "objectives": {
+ "ltm_wax_damage_athena_assault": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Architect_Fortbyte_A": {
+ "templateId": "Quest:quest_br_architect_fortbyte_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Architect",
+ "objectives": {
+ "architect_collect_fortbytes_95": 95
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_242_f_battlesuit_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Architect_Fortbyte_B": {
+ "templateId": "Quest:quest_br_architect_fortbyte_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Architect",
+ "objectives": {
+ "architect_collect_fortbytes_100": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_243_f_battlesuit_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s9_battlesuit_gain_seasonxp_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_season_xp_gained": 20000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_189_battlesuit_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s9_battlesuit_gain_seasonxp_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_season_xp_gained": 75000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_190_battlesuit_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s9_battlesuit_gain_seasonxp_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_season_xp_gained": 150000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_191_battlesuit_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s9_battlesuit_gain_seasonxp_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_season_xp_gained": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_192_battlesuit_stagee",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s9_battlesuit_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlesuit_complete_weeklychallenges_01": 45
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_196_battlesuit_flamecolorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s9_battlesuit_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlesuit_complete_weeklychallenges_02": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_265_battlesuit",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_210_battlesuit_backbling_styleb",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_211_battlesuit_backbling_stylec",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_212_battlesuit_backbling_styled",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s9_battlesuit_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlesuit_complete_weeklychallenges_03": 65
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_193_battlesuit_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_01": {
+ "templateId": "Quest:quest_br_s9_battlesuit_outlive_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlepass_battlesuit_outlive_01": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_197_battlesuit_flamecolorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_02": {
+ "templateId": "Quest:quest_br_s9_battlesuit_outlive_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlepass_battlesuit_outlive_02": 5000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_209_battlesuit",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_Outlive_03": {
+ "templateId": "Quest:quest_br_s9_battlesuit_outlive_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlepass_battlesuit_outlive_03": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_194_battlesuit_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_battlesuit_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlepass_battlesuit_collectglyphs_01": 80
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_198_battlesuit_flamecolord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BattleSuit_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_battlesuit_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BattleSuit",
+ "objectives": {
+ "athena_battlepass_battlesuit_collectglyphs_02": 85
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_195_battlesuit_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BountyHunter_Outlive_01": {
+ "templateId": "Quest:quest_br_s9_bountyhunter_outlive_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BountyHunter",
+ "objectives": {
+ "athena_battlepass_bountyhunter_outlive_01": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_262_bountyhunterfemale",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_206_bountyhunter_styleb",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_207_bountyhunter_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BountyHunter_Outlive_02": {
+ "templateId": "Quest:quest_br_s9_bountyhunter_outlive_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BountyHunter",
+ "objectives": {
+ "athena_battlepass_bountyhunter_outlive_02": 7500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_204_bountyhunter_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_BountyHunter_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_bountyhunter_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BountyHunter",
+ "objectives": {
+ "athena_battlepass_bountyhunter_collectglyphs_01": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_205_bountyhunter_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_BountyHunter_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_bountyhunter_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BountyHunter",
+ "objectives": {
+ "athena_battlepass_bountyhunter_collectglyphs_02": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_207_bountyhunter",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BunkerJonesy_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_bunkerjonesy_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BunkerMan",
+ "objectives": {
+ "athena_battlepass_bunkerjonesy_collectglyphs_01": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_216_bunkerman_1h_pickaxeb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_BunkerJonesy_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_bunkerjonesy_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_BunkerMan",
+ "objectives": {
+ "athena_battlepass_bunkerjonesy_collectglyphs_02": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_266_bunkerman",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_SuperDuper_A": {
+ "templateId": "Quest:quest_br_superduper_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "superduper_interact_athena_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_244_f_battlesuit_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_SuperDuper_B": {
+ "templateId": "Quest:quest_br_superduper_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "superduper_interact_athena_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_245_f_battlesuit_stylec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_SuperDuper_C": {
+ "templateId": "Quest:quest_br_superduper_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "superduper_interact_athena_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_246_f_battlesuit_styled",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_SuperDuper_D": {
+ "templateId": "Quest:quest_br_superduper_d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "superduper_interact_athena_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_247_f_battlesuit_stylee",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_SuperDuper_E": {
+ "templateId": "Quest:quest_br_superduper_e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "superduper_interact_athena_e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_248_f_battlesuit_stylef",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_Collect_Glyphs": {
+ "templateId": "Quest:quest_br_s9_cumulative_collect_glyphs",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "athena_s9cumulative_collect_glyphs": 90
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_469_athena_commando_f_battlesuit",
+ "quantity": 1
+ },
+ {
+ "templateId": "ChallengeBundleSchedule:season9_architect_schedule",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Quest:quest_br_superduper_a",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_superduper_b",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_superduper_c",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_superduper_d",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_superduper_e",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_challengecomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS09-Quest_BR_S9_Cumulative_Quest01": {
+ "templateId": "Quest:quest_br_s9_cumulative_quest01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_001": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_001",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_01",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_cumulative_quest01",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_131_s9cumulative01",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_002": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_002",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token02": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_02",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_132_s9cumulative02",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_Quest03": {
+ "templateId": "Quest:quest_br_s9_cumulative_quest03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_003": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_003",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token03": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_03",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_cumulative_quest03",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_133_s9cumulative03",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_004": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_004",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token04": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_04",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_134_s9cumulative04",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_Quest05": {
+ "templateId": "Quest:quest_br_s9_cumulative_quest05",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_005": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_005",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token05": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_05",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_cumulative_quest05",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_135_s9cumulative05",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_006": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_006",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token06": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_06",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_136_s9cumulative06",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_Quest07": {
+ "templateId": "Quest:quest_br_s9_cumulative_quest07",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_007": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_007",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token07": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_07",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_cumulative_quest07",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_137_s9cumulative07",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_008": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_008",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token08": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_08",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_138_s9cumulative08",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_Quest09": {
+ "templateId": "Quest:quest_br_s9_cumulative_quest09",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_interact_cumulative_quest_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_009": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_009",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token09": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_09",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_cumulative_quest09",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_139_s9cumulative09",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Cumulative_CollectTokens_010": {
+ "templateId": "Quest:quest_br_s9_cumulative_collecttokens_010",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Cumulative",
+ "objectives": {
+ "battlepass_season9_cumulative_token10": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athena_fake_cumulative_ls_10",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_140_s9cumulative10",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Collect_All_Fortbytes": {
+ "templateId": "Quest:quest_br_collect_all_fortbytes",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte_LoadingScreen",
+ "objectives": {
+ "battlepass_collect_all_fortbytes": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_148_fortbytereveal",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.FortbyteLoadingScreen"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Fortbyte_00": {
+ "templateId": "Quest:quest_br_s9_fortbyte_00",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_00": 70
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_01": {
+ "templateId": "Quest:quest_br_s9_fortbyte_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "athena_season_xp_gained": 30000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_02": {
+ "templateId": "Quest:quest_br_s9_fortbyte_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "athena_season_xp_gained": 60000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_03": {
+ "templateId": "Quest:quest_br_s9_fortbyte_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "athena_season_xp_gained": 125000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_04": {
+ "templateId": "Quest:quest_br_s9_fortbyte_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "athena_season_xp_gained": 175000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_05": {
+ "templateId": "Quest:quest_br_s9_fortbyte_05",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "athena_season_xp_gained": 225000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_06": {
+ "templateId": "Quest:quest_br_s9_fortbyte_06",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_06": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_07": {
+ "templateId": "Quest:quest_br_s9_fortbyte_07",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_07": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_08": {
+ "templateId": "Quest:quest_br_s9_fortbyte_08",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_08": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_09": {
+ "templateId": "Quest:quest_br_s9_fortbyte_09",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_09": 80
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_10": {
+ "templateId": "Quest:quest_br_s9_fortbyte_10",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_10": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_11": {
+ "templateId": "Quest:quest_br_s9_fortbyte_11",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_11": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_12": {
+ "templateId": "Quest:quest_br_s9_fortbyte_12",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_12": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_13": {
+ "templateId": "Quest:quest_br_s9_fortbyte_13",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_13": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_14": {
+ "templateId": "Quest:quest_br_s9_fortbyte_14",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_14": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_15": {
+ "templateId": "Quest:quest_br_s9_fortbyte_15",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_15": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_16": {
+ "templateId": "Quest:quest_br_s9_fortbyte_16",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_16": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_17": {
+ "templateId": "Quest:quest_br_s9_fortbyte_17",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_17": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_18": {
+ "templateId": "Quest:quest_br_s9_fortbyte_18",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_18": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_19": {
+ "templateId": "Quest:quest_br_s9_fortbyte_19",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_19": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_20": {
+ "templateId": "Quest:quest_br_s9_fortbyte_20",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_20": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_21": {
+ "templateId": "Quest:quest_br_s9_fortbyte_21",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_21": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_22": {
+ "templateId": "Quest:quest_br_s9_fortbyte_22",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_22": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_23": {
+ "templateId": "Quest:quest_br_s9_fortbyte_23",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_23": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_24": {
+ "templateId": "Quest:quest_br_s9_fortbyte_24",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_24": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_25": {
+ "templateId": "Quest:quest_br_s9_fortbyte_25",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_25": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_26": {
+ "templateId": "Quest:quest_br_s9_fortbyte_26",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_26": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_27": {
+ "templateId": "Quest:quest_br_s9_fortbyte_27",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_27": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_28": {
+ "templateId": "Quest:quest_br_s9_fortbyte_28",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_28": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_29": {
+ "templateId": "Quest:quest_br_s9_fortbyte_29",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_29": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_30": {
+ "templateId": "Quest:quest_br_s9_fortbyte_30",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_30": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_31": {
+ "templateId": "Quest:quest_br_s9_fortbyte_31",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_31": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_32": {
+ "templateId": "Quest:quest_br_s9_fortbyte_32",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_32": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_33": {
+ "templateId": "Quest:quest_br_s9_fortbyte_33",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_33": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_34": {
+ "templateId": "Quest:quest_br_s9_fortbyte_34",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_34": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_35": {
+ "templateId": "Quest:quest_br_s9_fortbyte_35",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_35": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_36": {
+ "templateId": "Quest:quest_br_s9_fortbyte_36",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_36": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_37": {
+ "templateId": "Quest:quest_br_s9_fortbyte_37",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_37": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_38": {
+ "templateId": "Quest:quest_br_s9_fortbyte_38",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_38": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_39": {
+ "templateId": "Quest:quest_br_s9_fortbyte_39",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_39": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_40": {
+ "templateId": "Quest:quest_br_s9_fortbyte_40",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_40": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_41": {
+ "templateId": "Quest:quest_br_s9_fortbyte_41",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_41": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_42": {
+ "templateId": "Quest:quest_br_s9_fortbyte_42",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_42": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_43": {
+ "templateId": "Quest:quest_br_s9_fortbyte_43",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_43": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_44": {
+ "templateId": "Quest:quest_br_s9_fortbyte_44",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_44": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_45": {
+ "templateId": "Quest:quest_br_s9_fortbyte_45",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_45": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_46": {
+ "templateId": "Quest:quest_br_s9_fortbyte_46",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_46": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_47": {
+ "templateId": "Quest:quest_br_s9_fortbyte_47",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_47": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_48": {
+ "templateId": "Quest:quest_br_s9_fortbyte_48",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_48": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_49": {
+ "templateId": "Quest:quest_br_s9_fortbyte_49",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_49": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_50": {
+ "templateId": "Quest:quest_br_s9_fortbyte_50",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_50": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_51": {
+ "templateId": "Quest:quest_br_s9_fortbyte_51",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_51": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_52": {
+ "templateId": "Quest:quest_br_s9_fortbyte_52",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_52": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_53": {
+ "templateId": "Quest:quest_br_s9_fortbyte_53",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_53": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_54": {
+ "templateId": "Quest:quest_br_s9_fortbyte_54",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_54": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_55": {
+ "templateId": "Quest:quest_br_s9_fortbyte_55",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_55": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_56": {
+ "templateId": "Quest:quest_br_s9_fortbyte_56",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_56": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_57": {
+ "templateId": "Quest:quest_br_s9_fortbyte_57",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_57": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_58": {
+ "templateId": "Quest:quest_br_s9_fortbyte_58",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_58": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_59": {
+ "templateId": "Quest:quest_br_s9_fortbyte_59",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_59": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_60": {
+ "templateId": "Quest:quest_br_s9_fortbyte_60",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_60": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_61": {
+ "templateId": "Quest:quest_br_s9_fortbyte_61",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_61": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_62": {
+ "templateId": "Quest:quest_br_s9_fortbyte_62",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_62": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_63": {
+ "templateId": "Quest:quest_br_s9_fortbyte_63",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_63": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_64": {
+ "templateId": "Quest:quest_br_s9_fortbyte_64",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_64": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_65": {
+ "templateId": "Quest:quest_br_s9_fortbyte_65",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_65": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_66": {
+ "templateId": "Quest:quest_br_s9_fortbyte_66",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_66": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_67": {
+ "templateId": "Quest:quest_br_s9_fortbyte_67",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_67": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_68": {
+ "templateId": "Quest:quest_br_s9_fortbyte_68",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_68": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_69": {
+ "templateId": "Quest:quest_br_s9_fortbyte_69",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_69": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_70": {
+ "templateId": "Quest:quest_br_s9_fortbyte_70",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_70": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_71": {
+ "templateId": "Quest:quest_br_s9_fortbyte_71",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_71": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_72": {
+ "templateId": "Quest:quest_br_s9_fortbyte_72",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_72": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_73": {
+ "templateId": "Quest:quest_br_s9_fortbyte_73",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_73": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_74": {
+ "templateId": "Quest:quest_br_s9_fortbyte_74",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_74": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_75": {
+ "templateId": "Quest:quest_br_s9_fortbyte_75",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_75": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_76": {
+ "templateId": "Quest:quest_br_s9_fortbyte_76",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_76": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_77": {
+ "templateId": "Quest:quest_br_s9_fortbyte_77",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_77": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_78": {
+ "templateId": "Quest:quest_br_s9_fortbyte_78",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_78": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_79": {
+ "templateId": "Quest:quest_br_s9_fortbyte_79",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_79": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_80": {
+ "templateId": "Quest:quest_br_s9_fortbyte_80",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_80": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_81": {
+ "templateId": "Quest:quest_br_s9_fortbyte_81",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_81": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_82": {
+ "templateId": "Quest:quest_br_s9_fortbyte_82",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_82": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_83": {
+ "templateId": "Quest:quest_br_s9_fortbyte_83",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_83": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_84": {
+ "templateId": "Quest:quest_br_s9_fortbyte_84",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_84": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_85": {
+ "templateId": "Quest:quest_br_s9_fortbyte_85",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_85": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_86": {
+ "templateId": "Quest:quest_br_s9_fortbyte_86",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_86": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_87": {
+ "templateId": "Quest:quest_br_s9_fortbyte_87",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_87": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_88": {
+ "templateId": "Quest:quest_br_s9_fortbyte_88",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_88": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_89": {
+ "templateId": "Quest:quest_br_s9_fortbyte_89",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_89": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_90": {
+ "templateId": "Quest:quest_br_s9_fortbyte_90",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_90": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_91": {
+ "templateId": "Quest:quest_br_s9_fortbyte_91",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_91": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_92": {
+ "templateId": "Quest:quest_br_s9_fortbyte_92",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_92": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_93": {
+ "templateId": "Quest:quest_br_s9_fortbyte_93",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_93": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_94": {
+ "templateId": "Quest:quest_br_s9_fortbyte_94",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_94": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_95": {
+ "templateId": "Quest:quest_br_s9_fortbyte_95",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_95": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_96": {
+ "templateId": "Quest:quest_br_s9_fortbyte_96",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_96": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_97": {
+ "templateId": "Quest:quest_br_s9_fortbyte_97",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_97": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_98": {
+ "templateId": "Quest:quest_br_s9_fortbyte_98",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_98": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Fortbyte_99": {
+ "templateId": "Quest:quest_br_s9_fortbyte_99",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Fortbyte",
+ "objectives": {
+ "glyph_99": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "Token:athenafortbyte",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_WindTunnel_Chain_MegaMall": {
+ "templateId": "Quest:quest_br_use_windtunnel_chain_megamall",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_use_wind_tunnel_retail": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_WindTunnel_Chain_NeoTilted": {
+ "templateId": "Quest:quest_br_use_windtunnel_chain_neotilted",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_use_wind_tunnel_tilted": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_use_windtunnel_chain_megamall",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_SkyPlatforms": {
+ "templateId": "Quest:quest_br_visit_skyplatforms",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_visit_athena_location_generic_4": 1,
+ "battlepass_visit_athena_location_generic_5": 1,
+ "battlepass_visit_athena_location_generic_6": 1,
+ "battlepass_visit_athena_location_generic_7": 1,
+ "battlepass_visit_athena_location_generic_8": 1,
+ "battlepass_visit_athena_location_generic_9": 1,
+ "battlepass_visit_athena_location_seal_07": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_After_ShadowBomb": {
+ "templateId": "Quest:quest_br_damage_after_shadowbomb",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_place_athena_damage_after_shadow_bomb": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Collect_LegendaryItem_DifferentMatches": {
+ "templateId": "Quest:quest_br_collect_legendaryitem_differentmatches",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_collect_legendaryitem_differentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_01": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_01": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_ScopedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_scopedweapon",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_killingblow_athena_player_scoped_weapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Above_6Stories": {
+ "templateId": "Quest:quest_br_damage_above_6stories",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_above_6stories": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Above_4Stories": {
+ "templateId": "Quest:quest_br_damage_above_4stories",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_above_4stories": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_above_6stories",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Above_2Stories": {
+ "templateId": "Quest:quest_br_damage_above_2stories",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_001",
+ "objectives": {
+ "battlepass_damage_athena_player_above_2stories": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_damage_above_4stories",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_HVAC_DifferentMatches": {
+ "templateId": "Quest:quest_br_use_hvac_differentmatches",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_use_item_hvac": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_01_E": {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_tilted_01_e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_01_D": {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_01_C": {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lucky_01_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_01_B": {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_pleasant_01_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_01_A": {
+ "templateId": "Quest:quest_br_land_chain_01_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_land_athena_chain_lonely_01_a_": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_TwoLocations_01": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_snobbyshores": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Pistol": {
+ "templateId": "Quest:quest_br_damage_pistol",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_damage_athena_player_pistol": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_ThreeQuestProps": {
+ "templateId": "Quest:quest_br_visit_threequestprops",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_visit_athena_location_generic_01": 1,
+ "battlepass_visit_athena_location_generic_02": 1,
+ "battlepass_visit_athena_location_generic_03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_Locations_Different_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_lazylinks": 1,
+ "battlepass_interact_chest_athena_location_different_dustydivot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_paradisepalms": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotemple": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1,
+ "battlepass_interact_chest_athena_location_different_riskyreels": 1,
+ "battlepass_interact_chest_athena_location_different_polarpeak": 1,
+ "battlepass_interact_chest_athena_location_different_frostyflights": 1,
+ "interact_athena_treasurechest_lazylagoon": 1,
+ "interact_athena_treasurechest_sunnysteps": 1,
+ "interact_athena_treasurechest_happyhamlet": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_MinDistance_Chain_C": {
+ "templateId": "Quest:quest_br_eliminate_mindistance_chain_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_players_mindistance_chain_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_MinDistance_Chain_B": {
+ "templateId": "Quest:quest_br_eliminate_mindistance_chain_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_players_mindistance_chain_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_mindistance_chain_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_MinDistance_Chain_A": {
+ "templateId": "Quest:quest_br_eliminate_mindistance_chain_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_002",
+ "objectives": {
+ "battlepass_killingblow_athena_players_mindistance_chain_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_mindistance_chain_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Destroy_Structure_Vehicle": {
+ "templateId": "Quest:quest_br_destroy_structure_vehicle",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_destroy_athena_walls_with_vehicle": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_TrickPoint__Airtime_QuadCrasher": {
+ "templateId": "Quest:quest_br_trickpoint__airtime_quadcrasher",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_trick_point_airtime_quadcrasher": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_destroy_structure_vehicle",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_TrickPoint_Driftboard": {
+ "templateId": "Quest:quest_br_trickpoint_driftboard",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_score_athena_trick_point_driftboard": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_trickpoint__airtime_quadcrasher",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_02": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_02": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_After_SlipStream": {
+ "templateId": "Quest:quest_br_damage_after_slipstream",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_place_athena_damage_after_slipstream": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_E": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_snobbyshores_chain_01": 1,
+ "battlepass_visit_athena_location_saltysprings_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_D": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_lucklanding_chain_01": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_greasygrove_chain_01": 1,
+ "battlepass_visit_athena_location_lootlake_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_paradisepalms_chain_01": 1,
+ "battlepass_visit_athena_location_dustydivot_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_01_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_visit_athena_location_riskyreels_chain_01": 1,
+ "battlepass_visit_athena_location_wailingwoods_chain_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_FlyingDisc_SelfCatch": {
+ "templateId": "Quest:quest_br_use_flyingdisc_selfcatch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_use_item_flyingdisc_selfcatch": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_ExplosiveWeapon": {
+ "templateId": "Quest:quest_br_eliminate_explosiveweapon",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_explosives": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Weapons_Different_SingleMatch": {
+ "templateId": "Quest:quest_br_damage_weapons_different_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_003",
+ "objectives": {
+ "battlepass_damage_athena_weapons_different_singlematch_pistol": 1,
+ "battlepass_damage_athena_weapons_different_singlematch_assault": 1,
+ "battlepass_damage_athena_weapons_different_shotgun": 1,
+ "battlepass_damage_athena_weapons_different_sniper": 1,
+ "battlepass_damage_athena_weapons_different_explosives": 1,
+ "battlepass_damage_athena_weapons_different_smg": 1,
+ "battlepass_damage_athena_weapons_different_minigun": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_SniperRifle": {
+ "templateId": "Quest:quest_br_damage_sniperrifle",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_damage_athena_player_sniper": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_C": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_04_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_B": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_04_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_04_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Dance_Chain_ScavengerHunt_Locations_04_A": {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_04_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_dance_chain_athena_scavengerhunt_locations_04_a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_dance_chain_scavengerhunt_locations_04_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_WeaponRarity_Legendary": {
+ "templateId": "Quest:quest_br_eliminate_weaponrarity_legendary",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_goldrarity": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Destroy_SupplyDropDrone": {
+ "templateId": "Quest:quest_br_destroy_supplydropdrone",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "athena_battlepass_destroy_athena_supplydropdrone": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_02E": {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_paradise_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_02D": {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_pleasant_chain_02d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_02C": {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_dusty_chain_02c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_02B": {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_wailing_chain_02b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_02A": {
+ "templateId": "Quest:quest_br_land_chain_02a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_land_athena_location_greasy_chain_02a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_TwoLocations_02": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_lucky_tilted": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_NamedLocations_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_namedlocations_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_004",
+ "objectives": {
+ "battlepass_visit_athena_location_mountain_summit_01": 1,
+ "battlepass_visit_athena_location_mountain_summit_02": 1,
+ "battlepass_visit_athena_location_mountain_summit_03": 1,
+ "battlepass_visit_athena_location_mountain_summit_04": 1,
+ "battlepass_visit_athena_location_mountain_summit_05": 1,
+ "battlepass_visit_athena_location_mountain_summit_06": 1,
+ "battlepass_visit_athena_location_mountain_summit_07": 1,
+ "battlepass_visit_athena_location_mountain_summit_08": 1,
+ "battlepass_visit_athena_location_mountain_summit_09": 1,
+ "battlepass_visit_athena_location_mountain_summit_10": 1,
+ "battlepass_visit_athena_location_mountain_summit_11": 1,
+ "battlepass_visit_athena_location_mountain_summit_12": 1,
+ "battlepass_visit_athena_location_mountain_summit_13": 1,
+ "battlepass_visit_athena_location_mountain_summit_14": 1,
+ "battlepass_visit_athena_location_mountain_summit_15": 1,
+ "battlepass_visit_athena_location_mountain_summit_16": 1,
+ "battlepass_visit_athena_location_mountain_summit_17": 1,
+ "battlepass_visit_athena_location_mountain_summit_18": 1,
+ "battlepass_visit_athena_location_mountain_summit_19": 1,
+ "battlepass_visit_athena_location_mountain_summit_20": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_ThrownWeapons": {
+ "templateId": "Quest:quest_br_damage_thrownweapons",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_damage_athena_player_thrownweapon": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_03": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_loot_or_snobby": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate": {
+ "templateId": "Quest:quest_br_eliminate",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_players": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_RaceTrack_Chain_Grassland": {
+ "templateId": "Quest:quest_br_racetrack_chain_grassland",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "athena_battlepass_complete_racetrack_chain_grassland": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_RaceTrack_Chain_Cold": {
+ "templateId": "Quest:quest_br_racetrack_chain_cold",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "athena_battlepass_complete_racetrack_chain_cold": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_racetrack_chain_grassland",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_RaceTrack_Chain_Arid": {
+ "templateId": "Quest:quest_br_racetrack_chain_arid",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "athena_battlepass_complete_racetrack_chain_arid": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_racetrack_chain_cold",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_Trap_DifferentMatches": {
+ "templateId": "Quest:quest_br_use_trap_differentmatches",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_interact_athena_place_trap_differentmatches": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_Turbines": {
+ "templateId": "Quest:quest_br_visit_turbines",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_visit_athena_location_generic_11": 1,
+ "battlepass_visit_athena_location_generic_12": 1,
+ "battlepass_visit_athena_location_generic_13": 1,
+ "battlepass_visit_athena_location_generic_14": 1,
+ "battlepass_visit_athena_location_generic_15": 1,
+ "battlepass_visit_athena_location_generic_16": 1,
+ "battlepass_visit_athena_location_generic_17": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Location_SkyPlatforms": {
+ "templateId": "Quest:quest_br_eliminate_location_skyplatforms",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_005",
+ "objectives": {
+ "battlepass_killingblow_athena_player_skyplatforms": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_03E": {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_leaky_chain_02e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_03D": {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_haunted_chain_03d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_03C": {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_retail_chain_03c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_03B": {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_risky_chain_03b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_03A": {
+ "templateId": "Quest:quest_br_land_chain_03a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_land_athena_location_shifty_chain_03a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Hotspots_Chain_Eliminate": {
+ "templateId": "Quest:quest_br_hotspots_chain_eliminate",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_eliminate_athena_hotspot": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 4
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Hotspots_Chain_Ammo": {
+ "templateId": "Quest:quest_br_hotspots_chain_ammo",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_ammobox_hotspot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_hotspots_chain_eliminate",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Hotspots_Chain_Chests": {
+ "templateId": "Quest:quest_br_hotspots_chain_chests",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_hotspot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 3
+ },
+ {
+ "templateId": "Quest:quest_br_hotspots_chain_ammo",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Vehicle_Opponent": {
+ "templateId": "Quest:quest_br_damage_vehicle_opponent",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_damage_athena_vehicle_with_opponent_inside": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_DogSweater": {
+ "templateId": "Quest:quest_br_use_dogsweater",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "athena_battlepass_use_item_dogsweater": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_Different_Vehicles_SingleMatch": {
+ "templateId": "Quest:quest_br_use_different_vehicles_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_use_vehicle_different_samematch_driftboard": 1,
+ "battlepass_use_vehicle_different_samematch_quadcrasher": 1,
+ "battlepass_use_vehicle_different_samematch_hamsterball": 1,
+ "battlepass_use_vehicle_different_samematch_pushcannon": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_TwoLocations_03": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_006",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_happy_or_pleasant": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_04": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_polar_or_lonely": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_AmmoBox_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_ammobox_locations_different",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_interact_ammo_athena_location_different_lazylinks": 1,
+ "battlepass_interact_ammo_athena_location_different_dustydivot": 1,
+ "battlepass_interact_ammo_athena_location_different_fatalfields": 1,
+ "battlepass_interact_ammo_athena_location_different_flushfactory": 1,
+ "battlepass_interact_ammo_athena_location_different_greasygrove": 1,
+ "battlepass_interact_ammo_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_ammo_athena_location_different_junkjunction": 1,
+ "battlepass_interact_ammo_athena_location_different_luckylanding": 1,
+ "battlepass_interact_ammo_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_ammo_athena_location_different_lootlake": 1,
+ "battlepass_interact_ammo_athena_location_different_paradisepalms": 1,
+ "battlepass_interact_ammo_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_ammo_athena_location_different_retailrow": 1,
+ "battlepass_interact_ammo_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_ammo_athena_location_different_saltysprings": 1,
+ "battlepass_interact_ammo_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_ammo_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_ammo_athena_location_different_tomatotown": 1,
+ "battlepass_interact_ammo_athena_location_different_wailingwoods": 1,
+ "battlepass_interact_ammo_athena_location_different_riskyreels": 1
+ },
+ "objectiveCompletionCount": 7,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_SuppressedWeapon": {
+ "templateId": "Quest:quest_br_eliminate_suppressedweapon",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_player_with_suppressed_weapon": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Passenger_Vehicle": {
+ "templateId": "Quest:quest_br_damage_passenger_vehicle",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_damage_athena_player_passenger_vehicle": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_02_C": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_lazylinks_chain_02": 1,
+ "battlepass_visit_athena_location_shiftyshafts_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_02_B": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_luckylanding_chain_02": 1,
+ "battlepass_visit_athena_location_retailrow_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_TwoNamedLocs_Chain_02_A": {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_visit_athena_location_polarpeak_chain_02": 1,
+ "battlepass_visit_athena_location_tiltedtowers_chain_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_visit_twonamedlocs_chain_02_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chest_VendingMachine_Campfire_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_chest_vendingmachine_campfire_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_interact_athena_chest_vend_camp_single_match_chest": 1,
+ "interact_athena_vendingmachine": 1,
+ "heal_player_health_anycampfire": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_MaxDistance": {
+ "templateId": "Quest:quest_br_eliminate_maxdistance",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_007",
+ "objectives": {
+ "battlepass_killingblow_athena_players_maxdistance": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Heal_Shields": {
+ "templateId": "Quest:quest_br_heal_shields",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_heal_athena_shields": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_Clocks": {
+ "templateId": "Quest:quest_br_visit_clocks",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_visit_athena_location_generic_18": 1,
+ "battlepass_visit_athena_location_generic_19": 1,
+ "battlepass_visit_athena_location_generic_20": 1,
+ "battlepass_visit_athena_location_generic_21": 1,
+ "battlepass_visit_athena_location_generic_25": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_TwoLocations_04": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_junk_or_retail": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_AssaultRifle": {
+ "templateId": "Quest:quest_br_damage_assaultrifle",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_damage_athena_player_asssult": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_04E": {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_land_athena_location_dustydivot_04e": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_04D": {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_land_athena_location_shiftyshafts_04d": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04e",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_04C": {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_land_athena_location_hauntedhills_04c": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04d",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_04B": {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_land_athena_location_frostyflights_04b": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Land_Chain_04A": {
+ "templateId": "Quest:quest_br_land_chain_04a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_land_athena_location_retail_04a": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_land_chain_04b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Airvent_Zipline_VolcanoVent_SingleMatch": {
+ "templateId": "Quest:quest_br_airvent_zipline_volcanovent_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "athena_battlepass_use_three_environmentals_geyser": 1,
+ "athena_battlepass_use_zipline_02": 1,
+ "athena_battlepass_use_hvac": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Location_OutsidePOI": {
+ "templateId": "Quest:quest_br_eliminate_location_outsidepoi",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_008",
+ "objectives": {
+ "battlepass_killingblow_athena_player_outside_poi": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_ChugJug_ChillBronco": {
+ "templateId": "Quest:quest_br_use_chugjug_chillbronco",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "athena_battlepass_use_chug_or_throw_chillbronco": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_SolarArrays": {
+ "templateId": "Quest:quest_br_visit_solararrays",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_visit_athena_location_generic_22": 1,
+ "battlepass_visit_athena_location_generic_23": 1,
+ "battlepass_visit_athena_location_generic_24": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Gold": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_gold",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_goldrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Purple": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_purple",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_epicrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_gold",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Blue": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_blue",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_bluerarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_purple",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Green": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_green",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_greenrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_blue",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Weapon_RarityChain_Grey": {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_grey",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_greyrarity": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_eliminate_weapon_raritychain_green",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Headshot": {
+ "templateId": "Quest:quest_br_damage_headshot",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_damage_athena_player_head_shots": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_Chests_TwoLocations_05": {
+ "templateId": "Quest:quest_br_interact_chests_twolocations_05",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_interact_chests_twolocations_05": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_Location_Different": {
+ "templateId": "Quest:quest_br_eliminate_location_different",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_killingblow_athena_player_different_junkjunction": 1,
+ "battlepass_killingblow_athena_player_different_hauntedhills": 1,
+ "battlepass_killingblow_athena_player_different_pleasantpartk": 1,
+ "battlepass_killingblow_athena_player_different_lootlake": 1,
+ "battlepass_killingblow_athena_player_different_lazylinks": 1,
+ "battlepass_killingblow_athena_player_different_tomatotemple": 1,
+ "battlepass_killingblow_athena_player_different_riskyreels": 1,
+ "battlepass_killingblow_athena_player_different_wailingwoods": 1,
+ "battlepass_killingblow_athena_player_different_snobbyshores": 1,
+ "battlepass_killingblow_athena_player_different_greasygrove": 1,
+ "battlepass_killingblow_athena_player_different_tiltedtowers": 1,
+ "battlepass_killingblow_athena_player_different_shiftyshafts": 1,
+ "battlepass_killingblow_athena_player_different_dustydivot": 1,
+ "battlepass_killingblow_athena_player_different_saltysprings": 1,
+ "battlepass_killingblow_athena_player_different_retailrow": 1,
+ "battlepass_killingblow_athena_player_different_lonelylodge": 1,
+ "battlepass_killingblow_athena_player_different_flushfactory": 1,
+ "battlepass_killingblow_athena_player_different_luckylanding": 1,
+ "battlepass_killingblow_athena_player_different_fatalfields": 1,
+ "battlepass_killingblow_athena_player_different_paradisepalms": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_After_VolcanoVent": {
+ "templateId": "Quest:quest_br_damage_after_volcanovent",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_009",
+ "objectives": {
+ "battlepass_place_athena_damage_after_volcano_vent": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Use_AirStrike": {
+ "templateId": "Quest:quest_br_use_airstrike",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "athena_battlepass_use_item_applesauce": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_damage_shotgun",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player_shotgun": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Interact_AmmoBoxes_SingleMatch": {
+ "templateId": "Quest:quest_br_interact_ammoboxes_singlematch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "athena_battlepass_loot_ammobox_singlematch": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Visit_Poster": {
+ "templateId": "Quest:quest_br_visit_poster",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_visit_athena_propaganda_poster_1": 1,
+ "battlepass_visit_athena_propaganda_poster_2": 1,
+ "battlepass_visit_athena_propaganda_poster_3": 1,
+ "battlepass_visit_athena_propaganda_poster_4": 1,
+ "battlepass_visit_athena_propaganda_poster_5": 1,
+ "battlepass_visit_athena_propaganda_poster_6": 1,
+ "battlepass_visit_athena_propaganda_poster_7": 1,
+ "battlepass_visit_athena_propaganda_poster_8": 1,
+ "battlepass_visit_athena_propaganda_poster_9": 1,
+ "battlepass_visit_athena_propaganda_poster_10": 1,
+ "battlepass_visit_athena_propaganda_poster_11": 1,
+ "battlepass_visit_athena_propaganda_poster_12": 1,
+ "battlepass_visit_athena_propaganda_poster_13": 1,
+ "battlepass_visit_athena_propaganda_poster_14": 1,
+ "battlepass_visit_athena_propaganda_poster_15": 1,
+ "battlepass_visit_athena_propaganda_poster_16": 1,
+ "battlepass_visit_athena_propaganda_poster_17": 1,
+ "battlepass_visit_athena_propaganda_poster_18": 1,
+ "battlepass_visit_athena_propaganda_poster_19": 1,
+ "battlepass_visit_athena_propaganda_poster_20": 1,
+ "battlepass_visit_athena_propaganda_poster_21": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_C": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_specificlocations_c",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_chain_specificlocations_metal": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_B": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_specificlocations_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_chain_specificlocations_stone": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_specificlocations_c",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Chain_Collect_BuildingResources_SpecificLocations_A": {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_specificlocations_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_collect_building_resources_chain_specificlocations_wood": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 2
+ },
+ {
+ "templateId": "Quest:quest_br_chain_collect_buildingresources_specificlocations_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Eliminate_TwoLocations_05": {
+ "templateId": "Quest:quest_br_eliminate_twolocations_05",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_killingblow_athena_player_twolocations_lazylagoon_or_frostyflights": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_damage_pickaxe",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Week_010",
+ "objectives": {
+ "battlepass_damage_athena_player_pickaxe": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Masako_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_masako_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Masako",
+ "objectives": {
+ "athena_battlepass_masako_collectglyphs_01": 70
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_208_masako",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Masako_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_masako_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Masako",
+ "objectives": {
+ "athena_battlepass_masako_collectglyphs_02": 75
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_263_masako",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01b": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_01b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_01b": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_257_m_bunkerman_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_01a": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_01a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_01a": 23
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_409_athena_commando_m_bunkerman",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_01b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02b": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_02b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_02b": 6
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_256_m_stormtracker_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_02a": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_02a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_02a": 71
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_406_athena_commando_m_stormtracker",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03b": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_03b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_03b": 9
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_255_f_masako_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Overtime_CompleteQuests_ChainTest_03a": {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_03a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "quest_s9_overtime_completequests_test_03a": 87
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_405_athena_commando_f_masako",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_overtime_completequests_chaintest_03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Eliminate_Assist_Friend": {
+ "templateId": "Quest:quest_br_ot_eliminate_assist_friend",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_assist_friends_killingblow_athena_players": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_ot_damage_shotgun",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_damage_athena_player_shotgun": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Visit_LootPolarPressure": {
+ "templateId": "Quest:quest_br_ot_visit_lootpolarpressure",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_visit_polar": 1,
+ "s9_ot_visit_loot_polar_pressure": 1,
+ "s9_ot_visit_pressure": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_145_doggus",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Revive_Friend_DifferentMatches": {
+ "templateId": "Quest:quest_br_ot_revive_friend_differentmatches",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_athena_revive_friend_differentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Damage_AssaultRifle": {
+ "templateId": "Quest:quest_br_ot_damage_assaultrifle",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_damage_athena_player_asssult": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Dance_Skeleton": {
+ "templateId": "Quest:quest_br_ot_dance_skeleton",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_athena_dance_overtime_location": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_146_worldcup2019",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Top15_DuosSquads_WithFriend": {
+ "templateId": "Quest:quest_br_ot_top15_duossquads_withfriend",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_top15_duos_squads_with_friend": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Damage_SMG": {
+ "templateId": "Quest:quest_br_ot_damage_smg",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_damage_athena_player_smg": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_OT_Score_Soccer_Pitch": {
+ "templateId": "Quest:quest_br_ot_score_soccer_pitch",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Overtime",
+ "objectives": {
+ "s9_ot_athena_score_goal": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_147_utopiakey",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s9overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.OvertimeEventStarted"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_05": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_collectglyphs_05",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_battlepass_strawberrypilot_collectglyphs_05": 45
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_206_strawberrypilot_1h",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_213_strawberrypilot_1h_pickaxeb",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_214_strawberrypilot_1h_pickaxec",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_215_strawberrypilot_1h_pickaxed",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_01": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_gain_seasonxp_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_season_xp_gained": 10000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_179_strawberrypilot_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_02": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_gain_seasonxp_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_season_xp_gained": 50000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_180_strawberrypilot_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_03": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_gain_seasonxp_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_season_xp_gained": 100000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_181_strawberrypilot_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Gain_SeasonXP_04": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_gain_seasonxp_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_season_xp_gained": 200000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_182_strawberrypilot_stagee",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_01": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_complete_weeklychallenges_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_strawberrypilot_complete_weeklychallenges_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_186_strawberrypilot_secondarycolorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_02": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_complete_weeklychallenges_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_strawberrypilot_complete_weeklychallenges_02": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_strawberrypilotkpop",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_Complete_WeeklyChallenges_03": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_complete_weeklychallenges_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_strawberrypilot_complete_weeklychallenges_03": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_183_strawberrypilot_clothingb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_battlepass_strawberrypilot_collectglyphs_01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_187_strawberrypilot_secondarycolorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_battlepass_strawberrypilot_collectglyphs_02": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_184_strawberrypilot_clothingc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_03": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_collectglyphs_03",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_battlepass_strawberrypilot_collectglyphs_03": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_188_strawberrypilot_secondarycolord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StrawberryPilot_CollectGlyphs_04": {
+ "templateId": "Quest:quest_br_s9_strawberrypilot_collectglyphs_04",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StrawberryPilot",
+ "objectives": {
+ "athena_battlepass_strawberrypilot_collectglyphs_04": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_185_strawberrypilot_clothingd",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Rooster_CollectGlyphs_01_B": {
+ "templateId": "Quest:quest_br_s9_rooster_collectglyphs_01_b",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Rooster",
+ "objectives": {
+ "athena_battlepass_rooster_collectglyphs_01_b": 99
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_203_rooster_backbling_styleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS09-Quest_BR_S9_Rooster_CollectGlyphs_01_A": {
+ "templateId": "Quest:quest_br_s9_rooster_collectglyphs_01_a",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Rooster",
+ "objectives": {
+ "athena_battlepass_rooster_collectglyphs_01_a": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_261_rooster",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_br_s9_rooster_collectglyphs_01_b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_Rooster_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_rooster_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_Rooster",
+ "objectives": {
+ "athena_battlepass_rooster_collectglyphs_02": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:eid_roostermech",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StormTracker_CollectGlyphs_01": {
+ "templateId": "Quest:quest_br_s9_stormtracker_collectglyphs_01",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StormTracker",
+ "objectives": {
+ "athena_battlepass_stormtracker_collectglyphs_01": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_145_stormtracker",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_S9_StormTracker_CollectGlyphs_02": {
+ "templateId": "Quest:quest_br_s9_stormtracker_collectglyphs_02",
+ "challenge_bundle_id": "QS09-QuestBundle_S9_StormTracker",
+ "objectives": {
+ "athena_battlepass_stormtracker_collectglyphs_02": 65
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_264_stormtracker",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.GenericGift5"
+ }
+ }
+ },
+ "QS09-Quest_BR_Play_Birthday": {
+ "templateId": "Quest:quest_br_play_birthday",
+ "challenge_bundle_id": "QS09-QuestBundle_Birthday2019_BR",
+ "objectives": {
+ "birthdaybundle_athena_play_matches": 14
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Birthday2"
+ }
+ }
+ },
+ "QS09-Quest_BR_Dance_ScavengerHunt_BirthdayCakes": {
+ "templateId": "Quest:quest_br_dance_scavengerhunt_birthdaycakes",
+ "challenge_bundle_id": "QS09-QuestBundle_Birthday2019_BR",
+ "objectives": {
+ "birthdaybundle_dance_location_birthdaycake_01": 1,
+ "birthdaybundle_dance_location_birthdaycake_02": 1,
+ "birthdaybundle_dance_location_birthdaycake_03": 1,
+ "birthdaybundle_dance_location_birthdaycake_04": 1,
+ "birthdaybundle_dance_location_birthdaycake_05": 1,
+ "birthdaybundle_dance_location_birthdaycake_06": 1,
+ "birthdaybundle_dance_location_birthdaycake_07": 1,
+ "birthdaybundle_dance_location_birthdaycake_08": 1,
+ "birthdaybundle_dance_location_birthdaycake_09": 1,
+ "birthdaybundle_dance_location_birthdaycake_10": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_040_birthday2018",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Birthday2"
+ }
+ }
+ },
+ "QS09-Quest_BR_Outlast_Birthday": {
+ "templateId": "Quest:quest_br_outlast_birthday",
+ "challenge_bundle_id": "QS09-QuestBundle_Birthday2019_BR",
+ "objectives": {
+ "birthdaybundle_athena_outlast": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_129_birthday2019",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Birthday2"
+ }
+ }
+ },
+ "QS09-Quest_BR_Heal_BirthdayCake": {
+ "templateId": "Quest:quest_br_heal_birthdaycake",
+ "challenge_bundle_id": "QS09-QuestBundle_Birthday2019_BR",
+ "objectives": {
+ "battlepass_heal_athena_birthdaycake": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:emoji_birthday2019",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_generic",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Birthday2"
+ }
+ }
+ }
+ }
+ },
+ "Season10": {
+ "ChallengeBundleSchedules": {
+ "QS10-Season10_Mission_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_mission_schedule",
+ "granted_bundles": [
+ "QS10-MissionBundle_S10_01A",
+ "QS10-MissionBundle_S10_01B",
+ "QS10-MissionBundle_S10_02",
+ "QS10-MissionBundle_S10_03",
+ "QS10-MissionBundle_S10_04",
+ "QS10-MissionBundle_S10_05",
+ "QS10-MissionBundle_S10_06",
+ "QS10-MissionBundle_S10_07",
+ "QS10-MissionBundle_S10_08",
+ "QS10-MissionBundle_S10_09"
+ ]
+ },
+ "QS10-Season10_NightNight_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_nightnight_schedule",
+ "granted_bundles": [
+ "QS10-QuestBundle_S10_NightNight"
+ ]
+ },
+ "QS10-Season10_OT_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_ot_schedule",
+ "granted_bundles": [
+ "QS10-QuestBundle_S10_OT"
+ ]
+ },
+ "QS10-Season10_Schedule_Event_BlackMonday": {
+ "templateId": "ChallengeBundleSchedule:season10_schedule_event_blackmonday",
+ "granted_bundles": [
+ "QS10-QuestBundle_Event_BlackMonday"
+ ]
+ },
+ "QS10-Season10_Schedule_Event_Oak": {
+ "templateId": "ChallengeBundleSchedule:season10_schedule_event_oak",
+ "granted_bundles": [
+ "QS10-QuestBundle_Event_Oak"
+ ]
+ },
+ "QS10-Season10_Schedule_MysteryMission": {
+ "templateId": "ChallengeBundleSchedule:season10_schedule_mysterymission",
+ "granted_bundles": [
+ "QS10-MissionBundle_S10_Mystery"
+ ]
+ },
+ "QS10-Season10_SeasonLevel_Mission_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_seasonlevel_mission_schedule",
+ "granted_bundles": [
+ "QS10-MissionBundle_S10_SeasonLevel"
+ ]
+ },
+ "QS10-Season10_SeasonX_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_seasonx_schedule",
+ "granted_bundles": [
+ "QS10-QuestBundle_S10_SeasonX"
+ ]
+ },
+ "QS10-Season10_BlackKnight_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_blackknight_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_BlackKnight"
+ ]
+ },
+ "QS10-Season10_DJYonger_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_djyonger_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_DJYonger"
+ ]
+ },
+ "QS10-Season10_Drift_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_drift_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_Drift"
+ ]
+ },
+ "QS10-Season10_RustLord_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_rustlord_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_RustLord"
+ ]
+ },
+ "QS10-Season10_Sparkle_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_sparkle_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_Sparkle"
+ ]
+ },
+ "QS10-Season10_Teknique_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_teknique_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_Teknique"
+ ]
+ },
+ "QS10-Season10_Voyager_Schedule": {
+ "templateId": "ChallengeBundleSchedule:season10_voyager_schedule",
+ "granted_bundles": [
+ "QS10-UnlockPreviewBundle_S10_Voyager"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week01": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week01",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week01"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week02": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week02",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week02"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week03": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week03",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week03"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week04": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week04",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week04"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week05": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week05",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week05"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week06": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week06",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week06"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week07": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week07",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week07"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week08": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week08",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week08"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week09": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week09",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week09"
+ ]
+ },
+ "QS10-Schedule_BR_S10_Daily_Week10": {
+ "templateId": "ChallengeBundleSchedule:schedule_br_s10_daily_week10",
+ "granted_bundles": [
+ "QS10-QuestBundle_BR_S10_Daily_Week10"
+ ]
+ }
+ },
+ "ChallengeBundles": {
+ "QS10-MissionBundle_S10_01A": {
+ "templateId": "ChallengeBundle:missionbundle_s10_01a",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Visit_DurrrStoneheadDino",
+ "QS10-Quest_BR_Damage_Passenger_Vehicle",
+ "QS10-Quest_BR_Destroy_Sign_WearingDrift",
+ "QS10-Quest_BR_Use_Zipline_DifferentMatches",
+ "QS10-Quest_BR_Interact_Chests_Locations_Different",
+ "QS10-Quest_BR_Visit_LazylagoonLuckylanding_SingleMatch",
+ "QS10-Quest_BR_TrickPoint_Vehicle",
+ "QS10-Quest_BR_Visit_DurrrStoneheadDino_Prestige",
+ "QS10-Quest_BR_Eliminate_Passenger_Vehicle_Prestige",
+ "QS10-Quest_BR_Destroy_Sign_SingleMatch_WearingDrift_Prestige",
+ "QS10-Quest_BR_Damage_Zipline_Prestige",
+ "QS10-Quest_BR_Eliminate_Different_Named_Locations_Prestige",
+ "QS10-Quest_BR_Visit_NamedLocations_SingleMatch_Prestige",
+ "QS10-Quest_BR_TrickPoint_Vehicle_Prestige"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaBackpack:bid_319_streetracerdriftremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_mission_week1a",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_143_drift",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_312_streetracerdriftremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_prestige_week1a",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_01B": {
+ "templateId": "ChallengeBundle:missionbundle_s10_01b",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_PlayMatches_MinimumOneElim_TeamRumble",
+ "QS10-Quest_BR_WinMatches_TeamRumble",
+ "QS10-Quest_BR_Assist_Teammates_TeamRumble",
+ "QS10-Quest_BR_Build_Structures_TeamRumble_RustLord",
+ "QS10-Quest_BR_Damage_Opponents_SingleMatch_TeamRumble",
+ "QS10-Quest_BR_Eliminate_5m_TeamRumble",
+ "QS10-Quest_BR_Search_SupplyDrops_TeamRumble",
+ "QS10-Quest_BR_Eliminations_TeamRumble_SingleMatch",
+ "QS10-Quest_BR_Eliminate_100m_TeamRumble",
+ "QS10-Quest_BR_Assist_Teammates_SingleMatch_TeamRumble",
+ "QS10-Quest_BR_Damage_UniqueOpponents_TeamRumble",
+ "QS10-Quest_BR_Interact_Chests_TeamRumble_RustLord",
+ "QS10-Quest_BR_Damage_Headshot_TeamRumble",
+ "QS10-Quest_BR_Search_SupplyDrops_SingleMatch_TeamRumble"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_244_rustremix1h",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_mission_week1b",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:emoji_rustlord",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_295_rustremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_298_rustremix_backbling_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_301_rustremixpickaxe_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_prestige_week1b",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_02": {
+ "templateId": "ChallengeBundle:missionbundle_s10_02",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Damage_SMG",
+ "QS10-Quest_BR_Spray_Fountain_JunkyardCrane_VendingMachine",
+ "QS10-Quest_BR_Spray_GasStations_Different",
+ "QS10-Quest_BR_Interact_Spraycans",
+ "QS10-Quest_BR_Damage_Structure_Minigun",
+ "QS10-Quest_BR_Eliminate_15m_SMG",
+ "QS10-Quest_BR_Interact_Chests_Location_TiltedTowers",
+ "QS10-Quest_BR_Eliminate_Weapon_SMG_SingleMatch",
+ "QS10-Quest_BR_Interact_Chests_WindowedContainers",
+ "QS10-Quest_BR_SprayVehicles_DifferentLocation",
+ "QS10-Quest_BR_Visit_GraffitiBillboards",
+ "QS10-Quest_BR_Damage_Minigun_Prestige",
+ "QS10-Quest_BR_Eliminate_5m_SMG",
+ "QS10-Quest_BR_Eliminate_Location_TiltedTowers_Graffitiremix"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaBackpack:bid_316_graffitiremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_mission_week2",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:emoji_teknique",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_305_graffitiremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_307_graffitiremix_backbling_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_prestige_week2",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_03": {
+ "templateId": "ChallengeBundle:missionbundle_s10_03",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_S10_WorldsCollide_001",
+ "QS10-Quest_BR_S10_WorldsCollide_002",
+ "QS10-Quest_BR_S10_WorldsCollide_003",
+ "QS10-Quest_BR_S10_WorldsCollide_004",
+ "QS10-Quest_BR_S10_WorldsCollide_005",
+ "QS10-Quest_BR_S10_WorldsCollide_006",
+ "QS10-Quest_BR_S10_WorldsCollide_007",
+ "QS10-Quest_BR_S10_WorldsCollide_008",
+ "QS10-Quest_BR_S10_WorldsCollide_009",
+ "QS10-Quest_BR_S10_WorldsCollide_010",
+ "QS10-Quest_BR_S10_WorldsCollide_011",
+ "QS10-Quest_BR_S10_WorldsCollide_012",
+ "QS10-Quest_BR_S10_WorldsCollide_013",
+ "QS10-Quest_BR_S10_WorldsCollide_014"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaGlider:glider_id_168_streetracerdriftremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_152_driftremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_313_streetracerdriftremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_04": {
+ "templateId": "ChallengeBundle:missionbundle_s10_04",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Search_AfterLanding",
+ "QS10-Quest_BR_Land_HotSpot",
+ "QS10-Quest_BR_Damage_AfterLaunchpad",
+ "QS10-Quest_BR_Search_WithinTimer_01",
+ "QS10-Quest_BR_Loot_Legendary",
+ "QS10-Quest_BR_Search_SupplyDrop_AfterLanding",
+ "QS10-Quest_BR_DamageOpponents_HotSpot",
+ "QS10-Quest_BR_Search_ChestAmmo_AfterJumping",
+ "QS10-Quest_BR_Destroy_SuperDingo_AfterJumping",
+ "QS10-Quest_BR_Eliminate_AfterLaunchpad",
+ "QS10-Quest_BR_Search_WithinTimer_02",
+ "QS10-Quest_BR_Collect_Legendary",
+ "QS10-Quest_BR_Harvest_AfterJumping",
+ "QS10-Quest_BR_Eliminate_HotSpot"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaBackpack:bid_321_rustlordremixscavenger",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_137_rustlord",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_297_rustremix_colord",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_300_rustremix_backbling_colord",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_303_rustremixpickaxe_colord",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_05": {
+ "templateId": "ChallengeBundle:missionbundle_s10_05",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_W05_Q01",
+ "QS10-Quest_S10_W05_Q02",
+ "QS10-Quest_S10_W05_Q03",
+ "QS10-Quest_S10_W05_Q04",
+ "QS10-Quest_S10_W05_Q05",
+ "QS10-Quest_S10_W05_Q06",
+ "QS10-Quest_S10_W05_Q07",
+ "QS10-Quest_S10_W05_Q08",
+ "QS10-Quest_S10_W05_Q09",
+ "QS10-Quest_S10_W05_Q10",
+ "QS10-Quest_S10_W05_Q11",
+ "QS10-Quest_S10_W05_Q12",
+ "QS10-Quest_S10_W05_Q13",
+ "QS10-Quest_S10_W05_Q14"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_240_graffitiremix1h",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_131_teknique",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_306_graffitiremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_308_graffitiremix_backbling_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_06": {
+ "templateId": "ChallengeBundle:missionbundle_s10_06",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_W006_Q01",
+ "QS10-Quest_S10_W006_Q02",
+ "QS10-Quest_S10_W006_Q05",
+ "QS10-Quest_S10_W006_Q03",
+ "QS10-Quest_S10_W006_Q06",
+ "QS10-Quest_S10_W006_Q12",
+ "QS10-Quest_S10_W006_Q07",
+ "QS10-Quest_S10_W006_Q08",
+ "QS10-Quest_S10_W006_Q09",
+ "QS10-Quest_S10_W006_Q10",
+ "QS10-Quest_S10_W006_Q11",
+ "QS10-Quest_S10_W006_Q13",
+ "QS10-Quest_S10_W006_Q14",
+ "QS10-Quest_S10_W006_Q04"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_243_djremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:emoji_djyonder",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_316_djremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_07": {
+ "templateId": "ChallengeBundle:missionbundle_s10_07",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-quest_s10_w07_q01",
+ "QS10-quest_s10_w07_q02",
+ "QS10-quest_s10_w07_q03",
+ "QS10-quest_s10_w07_q04",
+ "QS10-quest_s10_w07_q05",
+ "QS10-quest_s10_w07_q06",
+ "QS10-quest_s10_w07_q07",
+ "QS10-quest_s10_w07_q08",
+ "QS10-quest_s10_w07_q09",
+ "QS10-quest_s10_w07_q10",
+ "QS10-quest_s10_w07_q11",
+ "QS10-quest_s10_w07_q12",
+ "QS10-quest_s10_w07_q13",
+ "QS10-quest_s10_w07_q14"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaGlider:glider_id_167_sparkleremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:emoji_sparklespecialist",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_317_sparkleremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_08": {
+ "templateId": "ChallengeBundle:missionbundle_s10_08",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_W008_Q08",
+ "QS10-Quest_S10_W008_Q02",
+ "QS10-Quest_S10_W008_Q10",
+ "QS10-Quest_S10_W008_Q04",
+ "QS10-Quest_S10_W008_Q05",
+ "QS10-Quest_S10_W008_Q13",
+ "QS10-Quest_S10_W008_Q07",
+ "QS10-Quest_S10_W008_Q01",
+ "QS10-Quest_S10_W008_Q09",
+ "QS10-Quest_S10_W008_Q03",
+ "QS10-Quest_S10_W008_Q11",
+ "QS10-Quest_S10_W008_Q12",
+ "QS10-Quest_S10_W008_Q06",
+ "QS10-Quest_S10_W008_Q14"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaBackpack:bid_322_voyagerremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_151_darkvoyager",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_319_voyagerremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_320_voyagerremixpickaxe_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_321_voyagerremix_backbling_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_322_voyagerremixglider_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_09": {
+ "templateId": "ChallengeBundle:missionbundle_s10_09",
+ "challenge_bundle_schedule_id": "QS10-Season10_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_W009_Q01",
+ "QS10-Quest_S10_W009_Q02",
+ "QS10-Quest_S10_W009_Q03",
+ "QS10-Quest_S10_W009_Q04",
+ "QS10-Quest_S10_W009_Q05",
+ "QS10-Quest_S10_W009_Q06",
+ "QS10-Quest_S10_W009_Q07",
+ "QS10-Quest_S10_W009_Q08",
+ "QS10-Quest_S10_W009_Q09",
+ "QS10-Quest_S10_W009_Q10",
+ "QS10-Quest_S10_W009_Q11",
+ "QS10-Quest_S10_W009_Q12",
+ "QS10-Quest_S10_W009_Q13",
+ "QS10-Quest_S10_W009_Q14"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_241_knightremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "AthenaDance:spid_153_knightremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "13": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "14": [
+ {
+ "templateId": "Token:vtid_324_knightremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_326_knightremix_backbling_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athenabattlepass_weeklychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_S10_NightNight": {
+ "templateId": "ChallengeBundle:questbundle_s10_nightnight",
+ "challenge_bundle_schedule_id": "QS10-Season10_NightNight_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_S10_NightNight_Interact"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-QuestBundle_S10_OT": {
+ "templateId": "ChallengeBundle:questbundle_s10_ot",
+ "challenge_bundle_schedule_id": "QS10-Season10_OT_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_OT_q01a",
+ "QS10-Quest_S10_OT_q02a",
+ "QS10-Quest_S10_OT_q03a",
+ "QS10-Quest_BR_S10_NightNight_Interact",
+ "QS10-Quest_S10_OT_q05",
+ "QS10-Quest_BR_S10_NightNight_Interact_02",
+ "QS10-Quest_S10_OT_q07",
+ "QS10-Quest_BR_S10_NightNight_Interact_03",
+ "QS10-Quest_S10_OT_q09"
+ ],
+ "completionRewards": {
+ "6": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_179_sxkey",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_Event_BlackMonday": {
+ "templateId": "ChallengeBundle:questbundle_event_blackmonday",
+ "challenge_bundle_schedule_id": "QS10-Season10_Schedule_Event_BlackMonday",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_BM_Damage_Boomerang",
+ "QS10-Quest_BR_BM_Interact_Lamps",
+ "QS10-Quest_BR_BM_Use_Grappler",
+ "QS10-Quest_BR_BM_Interact_Bombs",
+ "QS10-Quest_BR_BM_Damage_AfterUsing_Boomerang",
+ "QS10-Quest_BR_BM_GrappleLampBoomerang_SingleMatch"
+ ],
+ "completionRewards": {
+ "-1": [
+ {
+ "templateId": "AthenaGlider:glider_id_177_blackmondayfemale_ho3a9",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_178_blackmonday_s815x",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "4": [
+ {
+ "templateId": "FortBannerTokenType:bannertoken_005_blackmonday",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "AthenaDance:spid_159_blackmonday01_ty6n5",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_Event_Oak": {
+ "templateId": "ChallengeBundle:questbundle_event_oak",
+ "challenge_bundle_schedule_id": "QS10-Season10_Schedule_Event_Oak",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Oak_CollectCash",
+ "QS10-Quest_BR_Oak_Eliminations",
+ "QS10-Quest_BR_Oak_Search_Chests",
+ "QS10-Quest_BR_Oak_FetchEye",
+ "QS10-Quest_BR_Oak_GainShield",
+ "QS10-Quest_BR_Oak_Search_Logos"
+ ],
+ "completionRewards": {
+ "6": [
+ {
+ "templateId": "AthenaItemWrap:wrap_132_barbequelarry",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_genericnoicon",
+ "giftBoxFormatData": {
+ "HeaderAssetString": "Header.Congratulations",
+ "BodyAssetString": "Reward.Oak"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_Mystery": {
+ "templateId": "ChallengeBundle:missionbundle_s10_mystery",
+ "challenge_bundle_schedule_id": "QS10-Season10_Schedule_MysteryMission",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_S10_Mystery_DestroyStructure_JunkRift",
+ "QS10-Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone",
+ "QS10-Quest_BR_S10_Mystery_Eliminations_RiftZone",
+ "QS10-Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone",
+ "QS10-Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift",
+ "QS10-Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different",
+ "QS10-Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AthenaBackpack:bid_359_meteormanremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AthenaCharacter:cid_540_athena_commando_m_meteormanremix",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mystery",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-MissionBundle_S10_SeasonLevel": {
+ "templateId": "ChallengeBundle:missionbundle_s10_seasonlevel",
+ "challenge_bundle_schedule_id": "QS10-Season10_SeasonLevel_Mission_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_01",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_02",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_03",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_04",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_05",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_06",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_07",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_08",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_09",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_10",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_11",
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_12"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "Token:vtid_309_streetracerdriftremix_stageb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:vtid_296_rustremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_299_rustremix_backbling_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_302_rustremixpickaxe_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:vtid_304_graffitiremix_stageb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AthenaDance:eid_handstandlegdab",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:vtid_310_streetracerdriftremix_stagec",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "Token:vtid_294_rustremix_stageb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "Token:vtid_314_djremix_stageb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:vtid_315_djremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "8": [
+ {
+ "templateId": "AthenaDance:eid_dumbbell_lift",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "9": [
+ {
+ "templateId": "Token:vtid_317_sparkleremix_colorb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "10": [
+ {
+ "templateId": "Token:vtid_311_streetracerdriftremix_staged",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "11": [
+ {
+ "templateId": "Token:vtid_292_voyagerremix_stagec",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "12": [
+ {
+ "templateId": "Token:vtid_323_knightremix_stageb",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_s10_mission_seasonlevel",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_S10_SeasonX": {
+ "templateId": "ChallengeBundle:questbundle_s10_seasonx",
+ "challenge_bundle_schedule_id": "QS10-Season10_SeasonX_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_S10_SeasonX_Tier100",
+ "QS10-Quest_BR_S10_SeasonX_SeasonLevel",
+ "QS10-Quest_BR_S10_SeasonX_BPMissions",
+ "QS10-Quest_BR_S10_SeasonX_PrestigeMissions",
+ "QS10-Quest_BR_S10_SeasonX_Mystery"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_157_ntbattlebus",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_challenges_seasonx",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "Token:athena_s10_challenges_seasonx",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "Token:vtid_318_sparkleremix_colord",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_challenges_seasonx",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "Token:athena_s10_challenges_seasonx",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "Token:vtid_325_knightremix_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:vtid_327_knightremix_backbling_colorc",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_s10_challenges_seasonx",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-UnlockPreviewBundle_S10_BlackKnight": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_blackknight",
+ "challenge_bundle_schedule_id": "QS10-Season10_BlackKnight_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_BlackKnightRemix_01",
+ "QS10-Quest_S10_Style_BlackKnightRemix_02",
+ "QS10-Quest_S10_Style_BlackKnightRemix_03",
+ "QS10-Quest_S10_Style_BlackKnightRemix_04",
+ "QS10-Quest_S10_Style_BlackKnightRemix_05",
+ "QS10-Quest_S10_Style_BlackKnightRemix_06",
+ "QS10-Quest_S10_Style_BlackKnightRemix_07",
+ "QS10-Quest_S10_Style_BlackKnightRemix_08"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_DJYonger": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_djyonger",
+ "challenge_bundle_schedule_id": "QS10-Season10_DJYonger_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_DJRemix_01",
+ "QS10-Quest_S10_Style_DJRemix_02",
+ "QS10-Quest_S10_Style_DJRemix_03",
+ "QS10-Quest_S10_Style_DJRemix_04",
+ "QS10-Quest_S10_Style_DJRemix_05",
+ "QS10-Quest_S10_Style_DJRemix_06",
+ "QS10-Quest_S10_Style_DJRemix_07",
+ "QS10-Quest_S10_Style_DJRemix_08",
+ "QS10-Quest_S10_Style_DJRemix_09",
+ "QS10-Quest_S10_Style_DJRemix_10"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_Drift": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_drift",
+ "challenge_bundle_schedule_id": "QS10-Season10_Drift_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_StreetRacerDrift_01",
+ "QS10-Quest_S10_Style_StreetRacerDrift_02",
+ "QS10-Quest_S10_Style_StreetRacerDrift_03",
+ "QS10-Quest_S10_Style_StreetRacerDrift_04",
+ "QS10-Quest_S10_Style_StreetRacerDrift_05",
+ "QS10-Quest_S10_Style_StreetRacerDrift_06",
+ "QS10-Quest_S10_Style_StreetRacerDrift_07",
+ "QS10-Quest_S10_Style_StreetRacerDrift_08",
+ "QS10-Quest_S10_Style_StreetRacerDrift_09",
+ "QS10-Quest_S10_Style_StreetRacerDrift_10"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_RustLord": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_rustlord",
+ "challenge_bundle_schedule_id": "QS10-Season10_RustLord_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_RustRemix_01",
+ "QS10-Quest_S10_Style_RustRemix_02",
+ "QS10-Quest_S10_Style_RustRemix_03",
+ "QS10-Quest_S10_Style_RustRemix_04",
+ "QS10-Quest_S10_Style_RustRemix_05",
+ "QS10-Quest_S10_Style_RustRemix_06",
+ "QS10-Quest_S10_Style_RustRemix_07",
+ "QS10-Quest_S10_Style_RustRemix_08",
+ "QS10-Quest_S10_Style_RustRemix_09",
+ "QS10-Quest_S10_Style_RustRemix_10"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_Sparkle": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_sparkle",
+ "challenge_bundle_schedule_id": "QS10-Season10_Sparkle_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_SparkleRemix_01",
+ "QS10-Quest_S10_Style_SparkleRemix_02",
+ "QS10-Quest_S10_Style_SparkleRemix_03",
+ "QS10-Quest_S10_Style_SparkleRemix_04",
+ "QS10-Quest_S10_Style_SparkleRemix_05",
+ "QS10-Quest_S10_Style_SparkleRemix_06",
+ "QS10-Quest_S10_Style_SparkleRemix_07",
+ "QS10-Quest_S10_Style_SparkleRemix_08"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_Teknique": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_teknique",
+ "challenge_bundle_schedule_id": "QS10-Season10_Teknique_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_GraffitiRemix_01",
+ "QS10-Quest_S10_Style_GraffitiRemix_02",
+ "QS10-Quest_S10_Style_GraffitiRemix_03",
+ "QS10-Quest_S10_Style_GraffitiRemix_04",
+ "QS10-Quest_S10_Style_GraffitiRemix_05",
+ "QS10-Quest_S10_Style_GraffitiRemix_06",
+ "QS10-Quest_S10_Style_GraffitiRemix_07"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-UnlockPreviewBundle_S10_Voyager": {
+ "templateId": "ChallengeBundle:unlockpreviewbundle_s10_voyager",
+ "challenge_bundle_schedule_id": "QS10-Season10_Voyager_Schedule",
+ "grantedquestinstanceids": [
+ "QS10-Quest_S10_Style_VoyagerRemix_01",
+ "QS10-Quest_S10_Style_VoyagerRemix_02",
+ "QS10-Quest_S10_Style_VoyagerRemix_03",
+ "QS10-Quest_S10_Style_VoyagerRemix_04",
+ "QS10-Quest_S10_Style_VoyagerRemix_05",
+ "QS10-Quest_S10_Style_VoyagerRemix_06",
+ "QS10-Quest_S10_Style_VoyagerRemix_07"
+ ],
+ "completionRewards": {}
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week01": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week01",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week01",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_PlayFriend_Matches",
+ "QS10-Quest_BR_Daily_Eliminations_Close",
+ "QS10-Quest_BR_Daily_UseVehicle_Mech",
+ "QS10-Quest_BR_Daily_Items_GainShield",
+ "QS10-Quest_BR_Daily_Damage_Below",
+ "QS10-Quest_BR_Daily_Search_Chests_Dusty_Pleasant",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_165_s10cumulative01",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_01",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week02": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week02",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week02",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Placement_SoloOrDuo_Top10",
+ "QS10-Quest_BR_Daily_Eliminations_Pistol",
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk",
+ "QS10-Quest_BR_Daily_Damage_SupplyDrop",
+ "QS10-Quest_BR_Daily_Items_EachRarity",
+ "QS10-Quest_BR_Daily_LandAt_Tilted_Fatal",
+ "QS10-Quest_BR_Daily_Damage_Assault"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_166_s10cumulative02",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_02",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week03": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week03",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week03",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Damage_Explosive",
+ "QS10-Quest_BR_Daily_Eliminations_Shotgun",
+ "QS10-Quest_BR_Daily_Eliminate_Zombies",
+ "QS10-Quest_BR_Daily_Outlast_DuoOrSquads",
+ "QS10-Quest_BR_Daily_Items_UseThrown_DifferentMatches",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky",
+ "QS10-Quest_BR_Daily_Search_Chests_Salty_Frosty"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_167_s10cumulative03",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_03",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week04": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week04",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week04",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Items_Consume_GlitchyForaged",
+ "QS10-Quest_BR_Daily_Play_Arena",
+ "QS10-Quest_BR_Daily_Eliminations_Scoped",
+ "QS10-Quest_BR_Daily_Damage_Headshot",
+ "QS10-Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch",
+ "QS10-Quest_BR_Daily_LandAt_Pressure_Happy",
+ "QS10-Quest_BR_Daily_Damage_Structures"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_168_s10cumulative04",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_04",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week05": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week05",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week05",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Damage_Pickaxe",
+ "QS10-Quest_BR_Daily_Eliminations_FarAway",
+ "QS10-Quest_BR_Daily_Items_UseTrap_DifferentMatches",
+ "QS10-Quest_BR_Daily_Placement_DuoOrSquad_Top5",
+ "QS10-Quest_BR_Daily_Damage_Above",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy",
+ "QS10-Quest_BR_Daily_Search_Chests_Shifty_Haunted"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_169_s10cumulative05",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_05",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week06": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week06",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week06",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Eliminations_Sniper",
+ "QS10-Quest_BR_Daily_Outlast_SoloOrDuo",
+ "QS10-Quest_BR_Daily_Damage_Scoped",
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely",
+ "QS10-Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch",
+ "QS10-Quest_BR_Daily_LandAt_Meteor_Island",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_170_s10cumulative06",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_06",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week07": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week07",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week07",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Eliminations_Explosive",
+ "QS10-Quest_BR_Daily_Items_UseDifferentTrap",
+ "QS10-Quest_BR_Daily_Search_ChestAmmoVending_SameMatch",
+ "QS10-Quest_BR_Daily_Damage_Shotgun",
+ "QS10-Quest_BR_Daily_LandAt_Frosty_Haunted",
+ "QS10-Quest_BR_Daily_Damage_Pistol",
+ "QS10-Quest_BR_Daily_Search_Chests_Greasy_Sunny"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_171_s10cumulative07",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_07",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week08": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week08",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week08",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Damage_SingleMatch",
+ "QS10-Quest_BR_Daily_LandAt_Salty_Junk",
+ "QS10-Quest_BR_Daily_Eliminations_Suppressed",
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch",
+ "QS10-Quest_BR_Daily_Search_Chests_HotSpot",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Retail_Block",
+ "QS10-Quest_BR_Daily_Damage_SMG"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_172_s10cumulative08_e9m2f",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_08",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week09": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week09",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week09",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Search_SupplyDrops",
+ "QS10-Quest_BR_Daily_Eliminations_SMG",
+ "QS10-Quest_BR_Daily_LandAt_Polar_Moisty",
+ "QS10-Quest_BR_Daily_Damage_Sniper",
+ "QS10-Quest_BR_Daily_Items_GainHealth",
+ "QS10-Quest_BR_Daily_Search_Chests_SingleMatch",
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_173_s10cumulative09",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "FortQuest:quest_br_s10_hiddenstar_quest_09",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ },
+ "QS10-QuestBundle_BR_S10_Daily_Week10": {
+ "templateId": "ChallengeBundle:questbundle_br_s10_daily_week10",
+ "challenge_bundle_schedule_id": "QS10-Schedule_BR_S10_Daily_Week10",
+ "grantedquestinstanceids": [
+ "QS10-Quest_BR_Daily_Damage_Suppressed",
+ "QS10-Quest_BR_Daily_Outlast_SoloOrSquad",
+ "QS10-Quest_BR_Daily_Eliminations_Assault",
+ "QS10-Quest_BR_Daily_Search_Chests_Loot_Happy",
+ "QS10-Quest_BR_Daily_LandAt_Lucky_Retail",
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_SingleMatch",
+ "QS10-Quest_BR_Daily_Visit_DifferentLocations"
+ ],
+ "completionRewards": {
+ "1": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "2": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "3": [
+ {
+ "templateId": "AthenaLoadingScreen:lsid_174_s10cumulative10",
+ "quantity": 1,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "4": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "5": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 1000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "6": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ],
+ "7": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2000,
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ {
+ "templateId": "Token:athena_dailychallenge_token",
+ "quantity": 1,
+ "giftBoxToUse": {}
+ }
+ ]
+ }
+ }
+ },
+ "Quests": {
+ "QS10-Quest_BR_Visit_DurrrStoneheadDino": {
+ "templateId": "Quest:quest_br_visit_durrrstoneheaddino",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_visit_athena_durrrburgerhead_mountaintop": 1,
+ "battlepass_visit_athena_stonehead": 1,
+ "battlepass_visit_athena_dinosaur": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Passenger_Vehicle": {
+ "templateId": "Quest:quest_br_damage_passenger_vehicle",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_damage_athena_player_passenger_vehicle": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Destroy_Sign_WearingDrift": {
+ "templateId": "Quest:quest_br_destroy_sign_wearingdrift",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_destroy_athena_sign_wearingdrift": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Use_Zipline_DifferentMatches": {
+ "templateId": "Quest:quest_br_use_zipline_differentmatches",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_use_item_zipline": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Interact_Chests_Locations_Different": {
+ "templateId": "Quest:quest_br_interact_chests_locations_different",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_interact_chest_athena_location_different_anarchyacres": 1,
+ "battlepass_interact_chest_athena_location_different_dustydepot": 1,
+ "battlepass_interact_chest_athena_location_different_fatalfields": 1,
+ "battlepass_interact_chest_athena_location_different_flushfactory": 1,
+ "battlepass_interact_chest_athena_location_different_greasygrove": 1,
+ "battlepass_interact_chest_athena_location_different_hauntedhills": 1,
+ "battlepass_interact_chest_athena_location_different_junkjunction": 1,
+ "battlepass_interact_chest_athena_location_different_luckylanding": 1,
+ "battlepass_interact_chest_athena_location_different_lonelylodge": 1,
+ "battlepass_interact_chest_athena_location_different_lootlake": 1,
+ "battlepass_interact_chest_athena_location_different_moistymire": 1,
+ "battlepass_interact_chest_athena_location_different_pleasantpark": 1,
+ "battlepass_interact_chest_athena_location_different_retailrow": 1,
+ "battlepass_interact_chest_athena_location_different_shiftyshafts": 1,
+ "battlepass_interact_chest_athena_location_different_saltysprings": 1,
+ "battlepass_interact_chest_athena_location_different_snobbyshores": 1,
+ "battlepass_interact_chest_athena_location_different_tiltedtowers": 1,
+ "battlepass_interact_chest_athena_location_different_tomatotown": 1,
+ "battlepass_interact_chest_athena_location_different_wailingwoods": 1
+ },
+ "objectiveCompletionCount": 12,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Visit_LazylagoonLuckylanding_SingleMatch": {
+ "templateId": "Quest:quest_br_visit_lazylagoonluckylanding_singlematch",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_visit_athena_lazylagoon_singlematch": 1,
+ "battlepass_visit_athena_luckylanding_singlematch": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_TrickPoint_Vehicle": {
+ "templateId": "Quest:quest_br_trickpoint_vehicle",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_score_athena_trick_point_vehicle": 250000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Visit_DurrrStoneheadDino_Prestige": {
+ "templateId": "Quest:quest_br_visit_durrrstoneheaddino_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_visit_athena_durrrburgerhead_mountaintop_prestige": 1,
+ "battlepass_visit_athena_stonehead_prestige": 1,
+ "battlepass_visit_athena_dinosaur_prestige": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_Passenger_Vehicle_Prestige": {
+ "templateId": "Quest:quest_br_eliminate_passenger_vehicle_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_eliminate_athena_player_passenger_vehicle_prestige": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Destroy_Sign_SingleMatch_WearingDrift_Prestige": {
+ "templateId": "Quest:quest_br_destroy_sign_singlematch_wearingdrift_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_destroy_athena_sign_singlematch_wearingdrift": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Zipline_Prestige": {
+ "templateId": "Quest:quest_br_damage_zipline_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_damage_athena_player_zipline_while_riding_prestige": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_Different_Named_Locations_Prestige": {
+ "templateId": "Quest:quest_br_eliminate_different_named_locations_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_killingblow_athena_player_different_junkjunction_prestige": 1,
+ "battlepass_killingblow_athena_player_different_hauntedhills_prestige": 1,
+ "battlepass_killingblow_athena_player_different_pleasantpark_prestige": 1,
+ "battlepass_killingblow_athena_player_different_lootlake_prestige": 1,
+ "battlepass_killingblow_athena_player_different_lazylinks_prestige": 1,
+ "battlepass_killingblow_athena_player_different_tomatotemple_prestige": 1,
+ "battlepass_killingblow_athena_player_different_riskyreels_prestige": 1,
+ "battlepass_killingblow_athena_player_different_wailingwoods_prestige": 1,
+ "battlepass_killingblow_athena_player_different_snobbyshores_prestige": 1,
+ "battlepass_killingblow_athena_player_different_greasygrove_prestige": 1,
+ "battlepass_killingblow_athena_player_different_tiltedtowers_prestige": 1,
+ "battlepass_killingblow_athena_player_different_shiftyshafts_prestige": 1,
+ "battlepass_killingblow_athena_player_different_dustydivot_prestige": 1,
+ "battlepass_killingblow_athena_player_different_saltysprings_prestige": 1,
+ "battlepass_killingblow_athena_player_different_retailrow_prestige": 1,
+ "battlepass_killingblow_athena_player_different_lonelylodge_prestige": 1,
+ "battlepass_killingblow_athena_player_different_flushfactory_prestige": 1,
+ "battlepass_killingblow_athena_player_different_luckylanding_prestige": 1,
+ "battlepass_killingblow_athena_player_different_fatalfields_prestige": 1,
+ "battlepass_killingblow_athena_player_different_paradisepalms_prestige": 1,
+ "battlepass_killingblow_athena_player_different_polarpeak_prestige": 1,
+ "battlepass_killingblow_athena_player_different_frostyflights_prestige": 1,
+ "battlepass_killingblow_athena_player_different_theblock_prestige": 1,
+ "battlepass_killingblow_athena_player_different_happyhamlet_prestige": 1,
+ "battlepass_killingblow_athena_player_different_lazylagoon_prestige": 1,
+ "battlepass_killingblow_athena_player_different_pressureplant_prestige": 1,
+ "battlepass_killingblow_athena_player_different_sunnysteps_prestige": 1,
+ "battlepass_killingblow_athena_player_different_dustydepot_prestige": 1,
+ "battlepass_killingblow_athena_player_different_starrysuburb_prestige": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Visit_NamedLocations_SingleMatch_Prestige": {
+ "templateId": "Quest:quest_br_visit_namedlocations_singlematch_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_visit_athena_location_dustydivot_prestige": 1,
+ "battlepass_visit_athena_location_fatalfields_prestige": 1,
+ "battlepass_visit_athena_location_frostyflights_prestige": 1,
+ "battlepass_visit_athena_location_happyhamlet_prestige": 1,
+ "battlepass_visit_athena_location_hauntedhills_prestige": 1,
+ "battlepass_visit_athena_location_junkjunction_prestige": 1,
+ "battlepass_visit_athena_location_lazylagoon_prestige": 1,
+ "battlepass_visit_athena_location_lonelylodge_prestige": 1,
+ "battlepass_visit_athena_location_lootlake_prestige": 1,
+ "battlepass_visit_athena_location_luckylanding_prestige": 1,
+ "battlepass_visit_athena_location_paradisepalms_prestige": 1,
+ "battlepass_visit_athena_location_pleasantpark_prestige": 1,
+ "battlepass_visit_athena_location_polarpeak_prestige": 1,
+ "battlepass_visit_athena_location_pressureplant_prestige": 1,
+ "battlepass_visit_athena_location_retailrow_prestige": 1,
+ "battlepass_visit_athena_location_saltysprings_prestige": 1,
+ "battlepass_visit_athena_location_shiftyshafts_prestige": 1,
+ "battlepass_visit_athena_location_snobbyshores_prestige": 1,
+ "battlepass_visit_athena_location_sunnysteps_prestige": 1,
+ "battlepass_visit_athena_location_theblock_prestige": 1,
+ "battlepass_visit_athena_location_tiltedtowers_prestige": 1,
+ "battlepass_visit_athena_location_dustydepot_prestige": 1,
+ "battlepass_visit_athena_location_greasygrove_prestige": 1,
+ "battlepass_visit_athena_location_starrysuburb_prestige": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_TrickPoint_Vehicle_Prestige": {
+ "templateId": "Quest:quest_br_trickpoint_vehicle_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01A",
+ "objectives": {
+ "battlepass_score_athena_trick_point_vehicle_prestige": 500000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_PlayMatches_MinimumOneElim_TeamRumble": {
+ "templateId": "Quest:quest_br_playmatches_minimumoneelim_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_eliminate_minimum_oneopponent_teamrumble": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_WinMatches_TeamRumble": {
+ "templateId": "Quest:quest_br_winmatches_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_athena_win_match_teamrumble": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Assist_Teammates_TeamRumble": {
+ "templateId": "Quest:quest_br_assist_teammates_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_athena_assist_teammates_teamrumble": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Build_Structures_TeamRumble_RustLord": {
+ "templateId": "Quest:quest_br_build_structures_teamrumble_rustlord",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_build_athena_structures_any_teamrumble_rustlord": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Opponents_SingleMatch_TeamRumble": {
+ "templateId": "Quest:quest_br_damage_opponents_singlematch_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_eliminate_players_different_match_teamrumble": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_5m_TeamRumble": {
+ "templateId": "Quest:quest_br_eliminate_5m_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_killingblow_athena_players_lessthan5m_distance_teamrumble": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_SupplyDrops_TeamRumble": {
+ "templateId": "Quest:quest_br_search_supplydrops_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_athena_search_supplydrops_teamrumble": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminations_TeamRumble_SingleMatch": {
+ "templateId": "Quest:quest_br_eliminations_teamrumble_singlematch",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_eliminate_players_singlematch_teamrumble": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_100m_TeamRumble": {
+ "templateId": "Quest:quest_br_eliminate_100m_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_killingblow_athena_players_greaterthan100m_distance_teamrumble": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Assist_Teammates_SingleMatch_TeamRumble": {
+ "templateId": "Quest:quest_br_assist_teammates_singlematch_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_athena_assist_teammates_teamrumble": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_UniqueOpponents_TeamRumble": {
+ "templateId": "Quest:quest_br_damage_uniqueopponents_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_damage_unique_opponents_teamrumble": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Interact_Chests_TeamRumble_RustLord": {
+ "templateId": "Quest:quest_br_interact_chests_teamrumble_rustlord",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_teamrumble_rustlord": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Headshot_TeamRumble": {
+ "templateId": "Quest:quest_br_damage_headshot_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_damage_headshot_teamrumble": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_SupplyDrops_SingleMatch_TeamRumble": {
+ "templateId": "Quest:quest_br_search_supplydrops_singlematch_teamrumble",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_01B",
+ "objectives": {
+ "battlepass_athena_search_supplydrops_singlematch_teamrumble": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_SMG": {
+ "templateId": "Quest:quest_br_damage_smg",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_damage_athena_player_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Spray_Fountain_JunkyardCrane_VendingMachine": {
+ "templateId": "Quest:quest_br_spray_fountain_junkyardcrane_vendingmachine",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_spray_athena_junkyardcrane": 1,
+ "battlepass_spray_athena_fountain": 1,
+ "battlepass_spray_athena_vendingmachine": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Spray_GasStations_Different": {
+ "templateId": "Quest:quest_br_spray_gasstations_different",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_spray_athena_location_gas_station_01": 1,
+ "battlepass_spray_athena_location_gas_station_02": 1,
+ "battlepass_spray_athena_location_gas_station_03": 1,
+ "battlepass_spray_athena_location_gas_station_04": 1,
+ "battlepass_spray_athena_location_gas_station_05": 1,
+ "battlepass_spray_athena_location_gas_station_06": 1,
+ "battlepass_spray_athena_location_gas_station_07": 1,
+ "battlepass_spray_athena_location_gas_station_08": 1,
+ "battlepass_spray_athena_location_gas_station_09": 1,
+ "battlepass_spray_athena_location_gas_station_10": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Interact_Spraycans": {
+ "templateId": "Quest:quest_br_interact_spraycans",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_interact_spraycan_00": 1,
+ "battlepass_interact_spraycan_01": 1,
+ "battlepass_interact_spraycan_02": 1,
+ "battlepass_interact_spraycan_03": 1,
+ "battlepass_interact_spraycan_04": 1,
+ "battlepass_interact_spraycan_05": 1,
+ "battlepass_interact_spraycan_06": 1,
+ "battlepass_interact_spraycan_07": 1,
+ "battlepass_interact_spraycan_08": 1,
+ "battlepass_interact_spraycan_09": 1,
+ "battlepass_interact_spraycan_10": 1,
+ "battlepass_interact_spraycan_11": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Structure_Minigun": {
+ "templateId": "Quest:quest_br_damage_structure_minigun",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_damage_athena_player_walls_minigun": 3000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_15m_SMG": {
+ "templateId": "Quest:quest_br_eliminate_15m_smg",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_killingblow_athena_players_15m_distance_smg": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Interact_Chests_Location_TiltedTowers": {
+ "templateId": "Quest:quest_br_interact_chests_location_tiltedtowers",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_interact_athena_treasurechest_tiltedtowers": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalbp",
+ "quantity": 5
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_Weapon_SMG_SingleMatch": {
+ "templateId": "Quest:quest_br_eliminate_weapon_smg_singlematch",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_killingblow_athena_player_smg_singlematch": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Interact_Chests_WindowedContainers": {
+ "templateId": "Quest:quest_br_interact_chests_windowedcontainers",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_interact_athena_chests_inside_windowed_containers": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_SprayVehicles_DifferentLocation": {
+ "templateId": "Quest:quest_br_sprayvehicles_differentlocation",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_spray_car_or_truck_1": 1,
+ "battlepass_spray_car_or_truck_2": 1,
+ "battlepass_spray_car_or_truck_3": 1,
+ "battlepass_spray_car_or_truck_4": 1,
+ "battlepass_spray_car_or_truck_5": 1,
+ "battlepass_spray_car_or_truck_6": 1,
+ "battlepass_spray_car_or_truck_7": 1,
+ "battlepass_spray_car_or_truck_8": 1,
+ "battlepass_spray_car_or_truck_9": 1,
+ "battlepass_spray_car_or_truck_10": 1,
+ "battlepass_spray_car_or_truck_11": 1,
+ "battlepass_spray_car_or_truck_12": 1,
+ "battlepass_spray_car_or_truck_13": 1,
+ "battlepass_spray_car_or_truck_14": 1,
+ "battlepass_spray_car_or_truck_15": 1,
+ "battlepass_spray_car_or_truck_16": 1,
+ "battlepass_spray_car_or_truck_17": 1,
+ "battlepass_spray_car_or_truck_18": 1,
+ "battlepass_spray_car_or_truck_19": 1,
+ "battlepass_spray_car_or_truck_20": 1,
+ "battlepass_spray_car_or_truck_21": 1,
+ "battlepass_spray_car_or_truck_23": 1,
+ "battlepass_spray_car_or_truck_24": 1,
+ "battlepass_spray_car_or_truck_25": 1,
+ "battlepass_spray_car_or_truck_26": 1,
+ "battlepass_spray_car_or_truck_27": 1,
+ "battlepass_spray_car_or_truck_28": 1,
+ "battlepass_spray_car_or_truck_29": 1,
+ "battlepass_spray_car_or_truck_30": 1,
+ "battlepass_spray_car_or_truck_31": 1
+ },
+ "objectiveCompletionCount": 6,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Visit_GraffitiBillboards": {
+ "templateId": "Quest:quest_br_visit_graffitibillboards",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_visit_athena_graffitibillboard_01": 1,
+ "battlepass_visit_athena_graffitibillboard_02": 1,
+ "battlepass_visit_athena_graffitibillboard_03": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_Minigun_Prestige": {
+ "templateId": "Quest:quest_br_damage_minigun_prestige",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_damage_athena_player_minigun_prestige": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_5m_SMG": {
+ "templateId": "Quest:quest_br_eliminate_5m_smg",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_killingblow_athena_players_5m_distance_smg": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_Location_TiltedTowers_Graffitiremix": {
+ "templateId": "Quest:quest_br_eliminate_location_tiltedtowers_graffitiremix",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_02",
+ "objectives": {
+ "battlepass_killingblow_athena_player_tiltedtowers_graffitiremix": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_001": {
+ "templateId": "Quest:quest_br_s10_worldscollide_001",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m01_o01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_002": {
+ "templateId": "Quest:quest_br_s10_worldscollide_002",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m02_o01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_003": {
+ "templateId": "Quest:quest_br_s10_worldscollide_003",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m03_o01": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_004": {
+ "templateId": "Quest:quest_br_s10_worldscollide_004",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m04_o01": 1,
+ "athena_mission_worldscollide_s10_m04_o02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_005": {
+ "templateId": "Quest:quest_br_s10_worldscollide_005",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m05_o01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_006": {
+ "templateId": "Quest:quest_br_s10_worldscollide_006",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m06_o01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_007": {
+ "templateId": "Quest:quest_br_s10_worldscollide_007",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m07_o01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_008": {
+ "templateId": "Quest:quest_br_s10_worldscollide_008",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m08_o01": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_009": {
+ "templateId": "Quest:quest_br_s10_worldscollide_009",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m09_o01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_010": {
+ "templateId": "Quest:quest_br_s10_worldscollide_010",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m10_o01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_011": {
+ "templateId": "Quest:quest_br_s10_worldscollide_011",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m11_o01": 1,
+ "athena_mission_worldscollide_s10_m11_o02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_012": {
+ "templateId": "Quest:quest_br_s10_worldscollide_012",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m12_o01": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_013": {
+ "templateId": "Quest:quest_br_s10_worldscollide_013",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m13_o01": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_WorldsCollide_014": {
+ "templateId": "Quest:quest_br_s10_worldscollide_014",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_03",
+ "objectives": {
+ "athena_mission_worldscollide_s10_m14_o01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_AfterLanding": {
+ "templateId": "Quest:quest_br_search_afterlanding",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_search_afterlanding": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Land_HotSpot": {
+ "templateId": "Quest:quest_br_land_hotspot",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_land_hotspot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Damage_AfterLaunchpad": {
+ "templateId": "Quest:quest_br_damage_afterlaunchpad",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_damage_afterlaunchpad": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_WithinTimer_01": {
+ "templateId": "Quest:quest_br_search_withintimer_01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_search_withintimer_01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Loot_Legendary": {
+ "templateId": "Quest:quest_br_loot_legendary",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_loot_legendary": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_SupplyDrop_AfterLanding": {
+ "templateId": "Quest:quest_br_search_supplydrop_afterlanding",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_search_supplydrop_afterlanding": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_DamageOpponents_HotSpot": {
+ "templateId": "Quest:quest_br_damageopponents_hotspot",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_damage_athena_player_hotspot": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_ChestAmmo_AfterJumping": {
+ "templateId": "Quest:quest_br_search_chestammo_afterjumping",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_search_chestammo_afterjumping": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Destroy_SuperDingo_AfterJumping": {
+ "templateId": "Quest:quest_br_destroy_superdingo_afterjumping",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_destroy_superdingo_afterjumping": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_AfterLaunchpad": {
+ "templateId": "Quest:quest_br_eliminate_afterlaunchpad",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_eliminate_afterlaunchpad": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Search_WithinTimer_02": {
+ "templateId": "Quest:quest_br_search_withintimer_02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_search_withintimer_02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Collect_Legendary": {
+ "templateId": "Quest:quest_br_collect_legendary",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_collect_5_legendary": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Harvest_AfterJumping": {
+ "templateId": "Quest:quest_br_harvest_afterjumping",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_harvest_afterjumping_wood": 100,
+ "br_harvest_afterjumping_stone": 100,
+ "br_harvest_afterjumping_metal": 100
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Eliminate_HotSpot": {
+ "templateId": "Quest:quest_br_eliminate_hotspot",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_04",
+ "objectives": {
+ "br_eliminate_hotspot": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q01": {
+ "templateId": "Quest:quest_s10_w05_q01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q01_o01_landdustyvisitmeteor_landdusty": 1,
+ "objective_s10_w05_q01_o02_landdustyvisitmeteor_visitmeteor": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q02": {
+ "templateId": "Quest:quest_s10_w05_q02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q02_o01_harvestmaterialsblock": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q03": {
+ "templateId": "Quest:quest_s10_w05_q03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q03__o01_landherovillain_hero": 1,
+ "objective_s10_w05_q03__o02_landherovillain_villain": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q04": {
+ "templateId": "Quest:quest_s10_w05_q04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q04_o01_damagelowgravity": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q05": {
+ "templateId": "Quest:quest_s10_w05_q05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q05_o01_searchcamerastoneheadbigrig": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q06": {
+ "templateId": "Quest:quest_s10_w05_q06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q06_o01_consumeforageditems": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q07": {
+ "templateId": "Quest:quest_s10_w05_q07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q07_o01_searchvendingmachines": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q08": {
+ "templateId": "Quest:quest_s10_w05_q08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q08_o01_eliminationsdustyormeteor": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q09": {
+ "templateId": "Quest:quest_s10_w05_q09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q09_o01_searchchestsorammoboxesblock": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q10": {
+ "templateId": "Quest:quest_s10_w05_q10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q10_o01_searchchestsmansionorlair": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q11": {
+ "templateId": "Quest:quest_s10_w05_q11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q11_o01_damageexplosiveweapons": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q12": {
+ "templateId": "Quest:quest_s10_w05_q12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q12_o01_searchbattlestarphoneforkknifeposters": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q13": {
+ "templateId": "Quest:quest_s10_w05_q13",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q13_o01_consumeforageditemssinglematch": 8
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W05_Q14": {
+ "templateId": "Quest:quest_s10_w05_q14",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_05",
+ "objectives": {
+ "objective_s10_w05_q14_o01_harvestblockdustysinglematch": 300
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q01": {
+ "templateId": "Quest:quest_s10_w006_q01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q01_obj01": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q02": {
+ "templateId": "Quest:quest_s10_w006_q02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q02_obj01": 1,
+ "questobj_s10_w006_q02_obj02": 1,
+ "questobj_s10_w006_q02_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q05": {
+ "templateId": "Quest:quest_s10_w006_q05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q05_obj01": 1,
+ "questobj_s10_w006_q05_obj02": 1,
+ "questobj_s10_w006_q05_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q03": {
+ "templateId": "Quest:quest_s10_w006_q03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q03_obj01": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q06": {
+ "templateId": "Quest:quest_s10_w006_q06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q06_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q12": {
+ "templateId": "Quest:quest_s10_w006_q12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q12_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q07": {
+ "templateId": "Quest:quest_s10_w006_q07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q07_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q08": {
+ "templateId": "Quest:quest_s10_w006_q08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q08_obj01": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q09": {
+ "templateId": "Quest:quest_s10_w006_q09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q09_obj01": 1,
+ "questobj_s10_w006_q09_obj02": 1,
+ "questobj_s10_w006_q09_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q10": {
+ "templateId": "Quest:quest_s10_w006_q10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q05_obj01": 1,
+ "questobj_s10_w006_q10_obj02": 1,
+ "questobj_s10_w006_q05_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q11": {
+ "templateId": "Quest:quest_s10_w006_q11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q11_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q13": {
+ "templateId": "Quest:quest_s10_w006_q13",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q13_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q14": {
+ "templateId": "Quest:quest_s10_w006_q14",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q14_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W006_Q04": {
+ "templateId": "Quest:quest_s10_w006_q04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_06",
+ "objectives": {
+ "questobj_s10_w006_q04_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q01": {
+ "templateId": "Quest:quest_s10_w07_q01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q01_matchesfriend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q02": {
+ "templateId": "Quest:quest_s10_w07_q02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q02_assisteliminations": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q03": {
+ "templateId": "Quest:quest_s10_w07_q03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q03_petpet": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q04": {
+ "templateId": "Quest:quest_s10_w07_q04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q04_healteammatechugsplashdifferentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q05": {
+ "templateId": "Quest:quest_s10_w07_q05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q05_o01_markitemsrarity_uncommon": 1,
+ "objective_s10_w07_q05_o02_markitemsrarity_rare": 1,
+ "objective_s10_w07_q05_o03_markitemsrarity_veryrare": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q06": {
+ "templateId": "Quest:quest_s10_w07_q06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q06_squaddamage": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q07": {
+ "templateId": "Quest:quest_s10_w07_q07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q07_reviveteammatedifferentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q08": {
+ "templateId": "Quest:quest_s10_w07_q08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q08_top20friend": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q09": {
+ "templateId": "Quest:quest_s10_w07_q09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q09_assisteliminationssinglematch": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q10": {
+ "templateId": "Quest:quest_s10_w07_q10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q10_uselaunchpadsquadsduos": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q11": {
+ "templateId": "Quest:quest_s10_w07_q11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q11_healteammatecozycampfiredifferentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q12": {
+ "templateId": "Quest:quest_s10_w07_q12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q12_o01_markchestshieldheal_chest": 1,
+ "objective_s10_w07_q12_o02_markchestshieldheal_shield": 1,
+ "objective_s10_w07_q12_o03_markchestshieldheal_heal": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q13": {
+ "templateId": "Quest:quest_s10_w07_q13",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q13_squaddamagesinglematch": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-quest_s10_w07_q14": {
+ "templateId": "Quest:quest_s10_w07_q14",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_07",
+ "objectives": {
+ "objective_s10_w07_q14_rebootteammate": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q08": {
+ "templateId": "Quest:quest_s10_w008_q08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q08_obj01": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q02": {
+ "templateId": "Quest:quest_s10_w008_q02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q02_obj01": 1,
+ "complete_athena_racetrack_grassland": 1,
+ "questobj_s10_w008_q02_obj03": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q10": {
+ "templateId": "Quest:quest_s10_w008_q10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q10_obj01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q04": {
+ "templateId": "Quest:quest_s10_w008_q04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q04_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q05": {
+ "templateId": "Quest:quest_s10_w008_q05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q05_obj01": 1,
+ "questobj_s10_w008_q05_obj02": 1,
+ "questobj_s10_w008_q05_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q13": {
+ "templateId": "Quest:quest_s10_w008_q13",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q13_obj01": 1,
+ "questobj_s10_w008_q13_obj02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q07": {
+ "templateId": "Quest:quest_s10_w008_q07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q07_obj01": 1,
+ "questobj_s10_w008_q07_obj02": 1,
+ "questobj_s10_w008_q07_obj03": 1,
+ "questobj_s10_w008_q07_obj04": 1,
+ "questobj_s10_w008_q07_obj05": 1,
+ "questobj_s10_w008_q07_obj06": 1,
+ "questobj_s10_w008_q07_obj07": 1,
+ "questobj_s10_w008_q07_obj08": 1,
+ "questobj_s10_w008_q07_obj09": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q01": {
+ "templateId": "Quest:quest_s10_w008_q01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q01_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q09": {
+ "templateId": "Quest:quest_s10_w008_q09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q09_obj01": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q03": {
+ "templateId": "Quest:quest_s10_w008_q03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q03_obj01": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q11": {
+ "templateId": "Quest:quest_s10_w008_q11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q11_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q12": {
+ "templateId": "Quest:quest_s10_w008_q12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q12_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q06": {
+ "templateId": "Quest:quest_s10_w008_q06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q06_obj01": 1,
+ "questobj_s10_w008_q06_obj02": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W008_Q14": {
+ "templateId": "Quest:quest_s10_w008_q14",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_08",
+ "objectives": {
+ "questobj_s10_w008_q14_obj01": 1,
+ "questobj_s10_w008_q14_obj02": 1,
+ "questobj_s10_w008_q14_obj03": 1,
+ "questobj_s10_w008_q14_obj04": 1,
+ "questobj_s10_w008_q14_obj05": 1,
+ "questobj_s10_w008_q14_obj06": 1,
+ "questobj_s10_w008_q14_obj07": 1,
+ "questobj_s10_w008_q14_obj08": 1,
+ "questobj_s10_w008_q14_obj09": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q01": {
+ "templateId": "Quest:quest_s10_w009_q01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q01_obj01": 1,
+ "questobj_s10_w009_q01_obj02": 1,
+ "questobj_s10_w009_q01_obj03": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q02": {
+ "templateId": "Quest:quest_s10_w009_q02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q02_obj01": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q03": {
+ "templateId": "Quest:quest_s10_w009_q03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q03_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q04": {
+ "templateId": "Quest:quest_s10_w009_q04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q04_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q05": {
+ "templateId": "Quest:quest_s10_w009_q05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q05_obj01": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q06": {
+ "templateId": "Quest:quest_s10_w009_q06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q06_obj01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q07": {
+ "templateId": "Quest:quest_s10_w009_q07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q07_obj01": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q08": {
+ "templateId": "Quest:quest_s10_w009_q08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q08_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q09": {
+ "templateId": "Quest:quest_s10_w009_q09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q09_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q10": {
+ "templateId": "Quest:quest_s10_w009_q10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q10_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q11": {
+ "templateId": "Quest:quest_s10_w009_q11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q11_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q12": {
+ "templateId": "Quest:quest_s10_w009_q12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q12_obj01": 4
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q13": {
+ "templateId": "Quest:quest_s10_w009_q13",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q13_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_W009_Q14": {
+ "templateId": "Quest:quest_s10_w009_q14",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_09",
+ "objectives": {
+ "questobj_s10_w009_q14_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_NightNight_Interact": {
+ "templateId": "Quest:quest_br_s10_nightnight_interact",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "interact_nightnight_00": 1,
+ "interact_nightnight_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q01b": {
+ "templateId": "Quest:quest_s10_ot_q01b",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q01b_obj01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_348_djremix_colord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q01a": {
+ "templateId": "Quest:quest_s10_ot_q01a",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q01a_obj01": 47
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_487_athena_commando_m_djremix",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_s10_ot_q01b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q02b": {
+ "templateId": "Quest:quest_s10_ot_q02b",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q02b_obj01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_347_sparkleremix_colore",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q02a": {
+ "templateId": "Quest:quest_s10_ot_q02a",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q02a_obj01": 70
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_485_athena_commando_f_sparkleremix",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_s10_ot_q02b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q03b": {
+ "templateId": "Quest:quest_s10_ot_q03b",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q03b_obj01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_346_voyagerremix_colorc",
+ "quantity": 1
+ },
+ {
+ "templateId": "CosmeticVariantToken:vtid_345_m_voyagerremix_backbling_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q03a": {
+ "templateId": "Quest:quest_s10_ot_q03a",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q03a_obj01": 87
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_489_athena_commando_m_voyagerremix",
+ "quantity": 1
+ },
+ {
+ "templateId": "Quest:quest_s10_ot_q03b",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q05": {
+ "templateId": "Quest:quest_s10_ot_q05",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q05_obj01": 2500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 2500
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_NightNight_Interact_02": {
+ "templateId": "Quest:quest_br_s10_nightnight_interact_02",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "interact_nightnight_02": 1,
+ "interact_nightnight_03": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q07": {
+ "templateId": "Quest:quest_s10_ot_q07",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q07_obj01": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 5000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_NightNight_Interact_03": {
+ "templateId": "Quest:quest_br_s10_nightnight_interact_03",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "interact_nightnight_04": 1,
+ "interact_nightnight_05": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_OT_q09": {
+ "templateId": "Quest:quest_s10_ot_q09",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_OT",
+ "objectives": {
+ "questobj_s10_ot_q09_obj01": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 10000
+ }
+ ],
+ "hiddenRewards": [
+ {
+ "templateId": "Token:athena_s10overtime_challenge_token",
+ "quantity": 1
+ }
+ ],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_BM_Damage_Boomerang": {
+ "templateId": "Quest:quest_br_bm_damage_boomerang",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_damage_badger": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_160_blackmonday02_pm0u6",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_BM_Interact_Lamps": {
+ "templateId": "Quest:quest_br_bm_interact_lamps",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_lightlamps_01": 1,
+ "athena_blackmonday_lightlamps_02": 1,
+ "athena_blackmonday_lightlamps_03": 1,
+ "athena_blackmonday_lightlamps_04": 1,
+ "athena_blackmonday_lightlamps_05": 1,
+ "athena_blackmonday_lightlamps_06": 1,
+ "athena_blackmonday_lightlamps_07": 1,
+ "athena_blackmonday_lightlamps_08": 1,
+ "athena_blackmonday_lightlamps_09": 1,
+ "athena_blackmonday_lightlamps_10": 1,
+ "athena_blackmonday_lightlamps_11": 1,
+ "athena_blackmonday_lightlamps_12": 1,
+ "athena_blackmonday_lightlamps_13": 1,
+ "athena_blackmonday_lightlamps_14": 1,
+ "athena_blackmonday_lightlamps_15": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_BM_Use_Grappler": {
+ "templateId": "Quest:quest_br_bm_use_grappler",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_use_grappler": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_BM_Interact_Bombs": {
+ "templateId": "Quest:quest_br_bm_interact_bombs",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_junkjunction": 1,
+ "athena_blackmonday_jam_hauntedhills": 1,
+ "athena_blackmonday_jam_pleasantpark": 1,
+ "athena_blackmonday_jam_theblock": 1,
+ "athena_blackmonday_jam_snobbyshores": 1,
+ "athena_blackmonday_jam_polarpeak": 1,
+ "athena_blackmonday_jam_shiftyshafts": 1,
+ "athena_blackmonday_jam_frostyflights": 1,
+ "athena_blackmonday_jam_happyhamlet": 1,
+ "athena_blackmonday_jam_tiltedtowers": 1,
+ "athena_blackmonday_jam_lootlake": 1,
+ "athena_blackmonday_jam_lazylagoon": 1,
+ "athena_blackmonday_jam_dustydepot": 1,
+ "athena_blackmonday_jam_saltysprings": 1,
+ "athena_blackmonday_jam_fatalfields": 1,
+ "athena_blackmonday_jam_luckylanding": 1,
+ "athena_blackmonday_jam_paradisepalms": 1,
+ "athena_blackmonday_jam_retailrow": 1,
+ "athena_blackmonday_jam_pressureplant": 1,
+ "athena_blackmonday_jam_sunnysteps": 1,
+ "athena_blackmonday_jam_lonelylodge": 1,
+ "athena_blackmonday_jam_greasygrove": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_BM_Damage_AfterUsing_Boomerang": {
+ "templateId": "Quest:quest_br_bm_damage_afterusing_boomerang",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_damage_afterusing_grappler": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_BM_GrappleLampBoomerang_SingleMatch": {
+ "templateId": "Quest:quest_br_bm_grapplelampboomerang_singlematch",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_BlackMonday",
+ "objectives": {
+ "athena_blackmonday_do3_grappler": 1,
+ "athena_blackmonday_do3_lamp": 1,
+ "athena_blackmonday_do3_boomerang": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenabattlestar",
+ "quantity": 10
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_CollectCash": {
+ "templateId": "Quest:quest_br_oak_collectcash",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_collectcash": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_157_barbequelarrymask",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_Eliminations": {
+ "templateId": "Quest:quest_br_oak_eliminations",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_eliminations": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_Search_Chests": {
+ "templateId": "Quest:quest_br_oak_search_chests",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_search_chests": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_FetchEye": {
+ "templateId": "Quest:quest_br_oak_fetcheye",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_fetcheye_01": 1,
+ "quest_br_oak_fetcheye_02": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [
+ {
+ "templateId": "AthenaDance:spid_155_barbequelarrybunnyhead",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_GainShield": {
+ "templateId": "Quest:quest_br_oak_gainshield",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_gainshield": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AccountResource:athenaseasonalxp",
+ "quantity": 500
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_Oak_Search_Logos": {
+ "templateId": "Quest:quest_br_oak_search_logos",
+ "challenge_bundle_id": "QS10-QuestBundle_Event_Oak",
+ "objectives": {
+ "quest_br_oak_search_logos_01": 1,
+ "quest_br_oak_search_logos_02": 1,
+ "quest_br_oak_search_logos_03": 1,
+ "quest_br_oak_search_logos_04": 1,
+ "quest_br_oak_search_logos_05": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [
+ {
+ "templateId": "BannerToken:bannertoken_004_oak",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {
+ "templateId": "GiftBox:gb_missioncomplete",
+ "giftBoxFormatData": {}
+ }
+ },
+ "QS10-Quest_BR_S10_Mystery_DestroyStructure_JunkRift": {
+ "templateId": "Quest:quest_br_s10_mystery_destroystructure_junkrift",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_destroystructure_junkrift": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_Visit_SingleMatch_DifferentRiftZone": {
+ "templateId": "Quest:quest_br_s10_mystery_visit_singlematch_differentriftzone",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_00": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_01": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_02": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_03": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_04": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_05": 1,
+ "quest_br_s10_mystery_visit_singlematch_differentriftzone_06": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_Eliminations_RiftZone": {
+ "templateId": "Quest:quest_br_s10_mystery_eliminations_riftzone",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_eliminations_riftzone": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_Search_AmmoBoxesChests_RiftZone": {
+ "templateId": "Quest:quest_br_s10_mystery_search_ammoboxeschests_riftzone",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_search_ammoboxeschests_riftzone": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_Placement_SoloDuoSquad_Top10_AfterLandInRift": {
+ "templateId": "Quest:quest_br_s10_mystery_placement_soloduosquad_top10_afterlandinrift",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_placement_soloduosquad_top10_afterlandinrift": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_Consume_GlitchedForaged_Different": {
+ "templateId": "Quest:quest_br_s10_mystery_consume_glitchedforaged_different",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_consume_glitchedforaged_different_00": 1,
+ "quest_br_s10_mystery_consume_glitchedforaged_different_01": 1,
+ "quest_br_s10_mystery_consume_glitchedforaged_different_02": 1,
+ "quest_br_s10_mystery_consume_glitchedforaged_different_03": 1,
+ "quest_br_s10_mystery_consume_glitchedforaged_different_04": 1,
+ "quest_br_s10_mystery_consume_glitchedforaged_different_05": 1
+ },
+ "objectiveCompletionCount": 4,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_Mystery_TouchCube_ZeroRift_LandingPod": {
+ "templateId": "Quest:quest_br_s10_mystery_touchcube_zerorift_landingpod",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_Mystery",
+ "objectives": {
+ "quest_br_s10_mystery_touchcube_zerorift_landingpod_00": 1,
+ "quest_br_s10_mystery_touchcube_zerorift_landingpod_01": 1,
+ "quest_br_s10_mystery_touchcube_zerorift_landingpod_02": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_01": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_01",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_01": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_02": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_02",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_02": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_03": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_03",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_03": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_04": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_04",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_04": 25
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_05": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_05",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_05": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_06": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_06",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_06": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_07": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_07",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_07": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_08": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_08",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_08": 45
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_09": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_09",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_09": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_10": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_10",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_10": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_11": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_11",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_11": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_LevelUp_SeasonLevel_12": {
+ "templateId": "Quest:quest_br_s10_levelup_seasonlevel_12",
+ "challenge_bundle_id": "QS10-MissionBundle_S10_SeasonLevel",
+ "objectives": {
+ "athena_season_levelup_s10_12": 65
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_SeasonX_Tier100": {
+ "templateId": "Quest:quest_br_s10_seasonx_tier100",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_SeasonX",
+ "objectives": {
+ "athena_s10_seasonx_tier100": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_SeasonX_SeasonLevel": {
+ "templateId": "Quest:quest_br_s10_seasonx_seasonlevel",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_SeasonX",
+ "objectives": {
+ "athena_s10_seasonx_seasonlevelmission": 12
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_SeasonX_BPMissions": {
+ "templateId": "Quest:quest_br_s10_seasonx_bpmissions",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_SeasonX",
+ "objectives": {
+ "athena_s10_seasonx_bpmissions_01a": 1,
+ "athena_s10_seasonx_bpmissions_01b": 1,
+ "athena_s10_seasonx_bpmissions_02": 1,
+ "athena_s10_seasonx_bpmissions_03": 1,
+ "athena_s10_seasonx_bpmissions_04": 1,
+ "athena_s10_seasonx_bpmissions_05": 1,
+ "athena_s10_seasonx_bpmissions_06": 1,
+ "athena_s10_seasonx_bpmissions_07": 1,
+ "athena_s10_seasonx_bpmissions_08": 1,
+ "athena_s10_seasonx_bpmissions_09": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_SeasonX_PrestigeMissions": {
+ "templateId": "Quest:quest_br_s10_seasonx_prestigemissions",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_SeasonX",
+ "objectives": {
+ "athena_s10_seasonx_prestigemissions_01a": 1,
+ "athena_s10_seasonx_prestigemissions_01b": 1,
+ "athena_s10_seasonx_prestigemissions_02": 1,
+ "athena_s10_seasonx_prestigemissions_03": 1,
+ "athena_s10_seasonx_prestigemissions_04": 1,
+ "athena_s10_seasonx_prestigemissions_05": 1,
+ "athena_s10_seasonx_prestigemissions_06": 1,
+ "athena_s10_seasonx_prestigemissions_07": 1,
+ "athena_s10_seasonx_prestigemissions_08": 1,
+ "athena_s10_seasonx_prestigemissions_09": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_S10_SeasonX_Mystery": {
+ "templateId": "Quest:quest_br_s10_seasonx_mystery",
+ "challenge_bundle_id": "QS10-QuestBundle_S10_SeasonX",
+ "objectives": {
+ "athena_s10_seasonx_mystery": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_01": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_01": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_325_knightremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_02": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_02": 22
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_108_knightremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_03": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_03": 95
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_165_knightremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_04": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_04": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_484_athena_commando_m_knightremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_05": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_05": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_317_knightremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_06": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_06": 65
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_323_knightremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_07": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_241_knightremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_BlackKnightRemix_08": {
+ "templateId": "Quest:quest_s10_style_blackknightremix_08",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_BlackKnight",
+ "objectives": {
+ "s10_style_blackknightremix_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_324_knightremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_01": {
+ "templateId": "Quest:quest_s10_style_djremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_01": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_106_djremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_02": {
+ "templateId": "Quest:quest_s10_style_djremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_02": 39
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_163_djremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_03": {
+ "templateId": "Quest:quest_s10_style_djremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_03": 43
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_065_djremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_04": {
+ "templateId": "Quest:quest_s10_style_djremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_04": 47
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_487_athena_commando_m_djremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_05": {
+ "templateId": "Quest:quest_s10_style_djremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_05": 54
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_288_djremix_headgearb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_06": {
+ "templateId": "Quest:quest_s10_style_djremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_06": 99
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_289_djremix_headgearc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_07": {
+ "templateId": "Quest:quest_s10_style_djremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_07": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_314_djremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_08": {
+ "templateId": "Quest:quest_s10_style_djremix_08",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_08": 40
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_315_djremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_09": {
+ "templateId": "Quest:quest_s10_style_djremix_09",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_243_djremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_DJRemix_10": {
+ "templateId": "Quest:quest_s10_style_djremix_10",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_DJYonger",
+ "objectives": {
+ "s10_style_djremix_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_316_djremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_01": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_486_athena_commando_f_streetracerdrift",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_02": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_02": 21
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaSkyDiveContrail:trails_id_074_driftlightning",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_03": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_03": 97
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_110_streetracerdriftremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_04": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_04": 10
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_309_streetracerdriftremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_05": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_05": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_310_streetracerdriftremix_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_06": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_06": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_311_streetracerdriftremix_staged",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_07": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_319_streetracerdriftremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_08": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_08",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_312_streetracerdriftremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_09": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_09",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_168_streetracerdriftremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_StreetRacerDrift_10": {
+ "templateId": "Quest:quest_s10_style_streetracerdrift_10",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Drift",
+ "objectives": {
+ "s10_style_streetracerdrift_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_313_streetracerdriftremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_01": {
+ "templateId": "Quest:quest_s10_style_rustremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_01": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_488_athena_commando_m_rustremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_02": {
+ "templateId": "Quest:quest_s10_style_rustremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_02": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_166_rustlordremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_03": {
+ "templateId": "Quest:quest_s10_style_rustremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_03": 38
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_320_rustlordremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_04": {
+ "templateId": "Quest:quest_s10_style_rustremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_04": 84
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaItemWrap:wrap_109_rustremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_05": {
+ "templateId": "Quest:quest_s10_style_rustremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_05": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_296_rustremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_06": {
+ "templateId": "Quest:quest_s10_style_rustremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_06": 35
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_294_rustremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_07": {
+ "templateId": "Quest:quest_s10_style_rustremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_244_rustremix1h",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_08": {
+ "templateId": "Quest:quest_s10_style_rustremix_08",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_295_rustremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_09": {
+ "templateId": "Quest:quest_s10_style_rustremix_09",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_09": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_321_rustlordremixscavenger",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_RustRemix_10": {
+ "templateId": "Quest:quest_s10_style_rustremix_10",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_RustLord",
+ "objectives": {
+ "s10_style_rustremix_10": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_297_rustremix_colord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_01": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_01": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_318_sparkleremix_colord",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_02": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_02": 55
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_242_sparkleremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_03": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_03": 70
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_485_athena_commando_f_sparkleremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_04": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_04": 71
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_318_sparkleremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_05": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_05": 75
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_290_sparkleremix_hairstyleb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_06": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_06": 50
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_317_sparkleremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_07": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_167_sparkleremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_SparkleRemix_08": {
+ "templateId": "Quest:quest_s10_style_sparkleremix_08",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Sparkle",
+ "objectives": {
+ "s10_style_sparkleremix_08": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_317_sparkleremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_01": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_01": 23
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_483_athena_commando_f_graffitiremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_02": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_02": 30
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_164_graffitiremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_03": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_03": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_304_graffitiremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_04": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_04": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_316_graffitiremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_05": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_05": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_305_graffitiremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_06": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_240_graffitiremix1h",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_GraffitiRemix_07": {
+ "templateId": "Quest:quest_s10_style_graffitiremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Teknique",
+ "objectives": {
+ "s10_style_graffitiremix_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_306_graffitiremix_colorc",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_01": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_01",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_01": 15
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaPickaxe:pickaxe_id_245_voyagerremix1h",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_02": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_02",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_02": 77
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaGlider:glider_id_169_voyagerremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_03": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_03",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_03": 87
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaCharacter:cid_489_athena_commando_m_voyagerremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_04": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_04",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_04": 93
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_291_voyagerremix_stageb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_05": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_05",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_05": 60
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_292_voyagerremix_stagec",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_06": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_06",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_06": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "AthenaBackpack:bid_322_voyagerremix",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_S10_Style_VoyagerRemix_07": {
+ "templateId": "Quest:quest_s10_style_voyagerremix_07",
+ "challenge_bundle_id": "QS10-UnlockPreviewBundle_S10_Voyager",
+ "objectives": {
+ "s10_style_voyagerremix_07": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [
+ {
+ "templateId": "CosmeticVariantToken:vtid_319_voyagerremix_colorb",
+ "quantity": 1
+ }
+ ],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_PlayFriend_Matches": {
+ "templateId": "Quest:quest_br_daily_playfriend_matches",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_playfriend_matches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Close": {
+ "templateId": "Quest:quest_br_daily_eliminations_close",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_eliminations_close": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_UseVehicle_Mech": {
+ "templateId": "Quest:quest_br_daily_usevehicle_mech",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_usevehicle_mech": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_GainShield": {
+ "templateId": "Quest:quest_br_daily_items_gainshield",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_items_gainshield": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Below": {
+ "templateId": "Quest:quest_br_daily_damage_below",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_damage_below": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_Dusty_Pleasant": {
+ "templateId": "Quest:quest_br_daily_search_chests_dusty_pleasant",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_search_chests_dusty_pleasant": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Snobby_Shifty": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_snobby_shifty",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week01",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_snobby_shifty_00": 1,
+ "quest_br_daily_visit_singlematch_snobby_shifty_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Placement_SoloOrDuo_Top10": {
+ "templateId": "Quest:quest_br_daily_placement_soloorduo_top10",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_placement_soloorduo_top10": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Pistol": {
+ "templateId": "Quest:quest_br_daily_eliminations_pistol",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_eliminations_pistol": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_Tilted_Junk": {
+ "templateId": "Quest:quest_br_daily_search_ammoboxes_tilted_junk",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_search_ammoboxes_tilted_junk": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_SupplyDrop": {
+ "templateId": "Quest:quest_br_daily_damage_supplydrop",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_damage_supplydrop": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_EachRarity": {
+ "templateId": "Quest:quest_br_daily_items_eachrarity",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_items_eachrarity_0": 1,
+ "quest_br_daily_items_eachrarity_1": 1,
+ "quest_br_daily_items_eachrarity_2": 1,
+ "quest_br_daily_items_eachrarity_3": 1,
+ "quest_br_daily_items_eachrarity_4": 1
+ },
+ "objectiveCompletionCount": 5,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Tilted_Fatal": {
+ "templateId": "Quest:quest_br_daily_landat_tilted_fatal",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_landat_tilted_fatal": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Assault": {
+ "templateId": "Quest:quest_br_daily_damage_assault",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week02",
+ "objectives": {
+ "quest_br_daily_damage_assault": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Explosive": {
+ "templateId": "Quest:quest_br_daily_damage_explosive",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_damage_explosive": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Shotgun": {
+ "templateId": "Quest:quest_br_daily_eliminations_shotgun",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_eliminations_shotgun": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminate_Zombies": {
+ "templateId": "Quest:quest_br_daily_eliminate_zombies",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_eliminate_zombies": 20
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Outlast_DuoOrSquads": {
+ "templateId": "Quest:quest_br_daily_outlast_duoorsquads",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_outlast_duoorsquads": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_UseThrown_DifferentMatches": {
+ "templateId": "Quest:quest_br_daily_items_usethrown_differentmatches",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_items_usethrown_differentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Paradise_Lucky": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_paradise_lucky",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_paradise_lucky_00": 1,
+ "quest_br_daily_visit_singlematch_paradise_lucky_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_Salty_Frosty": {
+ "templateId": "Quest:quest_br_daily_search_chests_salty_frosty",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week03",
+ "objectives": {
+ "quest_br_daily_search_chests_salty_frosty": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_Consume_GlitchyForaged": {
+ "templateId": "Quest:quest_br_daily_items_consume_glitchyforaged",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_items_consume_glitchyforaged": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Play_Arena": {
+ "templateId": "Quest:quest_br_daily_play_arena",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_play_arena": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Scoped": {
+ "templateId": "Quest:quest_br_daily_eliminations_scoped",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_eliminations_scoped": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Headshot": {
+ "templateId": "Quest:quest_br_daily_damage_headshot",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_damage_headshot": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_DifferentLocationsSingleMatch": {
+ "templateId": "Quest:quest_br_daily_search_chests_differentlocationssinglematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_search_chests_differentlocationssinglematch_00": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_01": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_02": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_03": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_04": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_05": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_06": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_07": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_08": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_09": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_10": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_11": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_12": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_13": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_14": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_15": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_16": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_17": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_18": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_19": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_20": 1,
+ "quest_br_daily_search_chests_differentlocationssinglematch_21": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Pressure_Happy": {
+ "templateId": "Quest:quest_br_daily_landat_pressure_happy",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_landat_pressure_happy": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Structures": {
+ "templateId": "Quest:quest_br_daily_damage_structures",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week04",
+ "objectives": {
+ "quest_br_daily_damage_structures": 1000
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Pickaxe": {
+ "templateId": "Quest:quest_br_daily_damage_pickaxe",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_damage_pickaxe": 100
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_FarAway": {
+ "templateId": "Quest:quest_br_daily_eliminations_faraway",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_eliminations_faraway": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_UseTrap_DifferentMatches": {
+ "templateId": "Quest:quest_br_daily_items_usetrap_differentmatches",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_items_usetrap_differentmatches": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Placement_DuoOrSquad_Top5": {
+ "templateId": "Quest:quest_br_daily_placement_duoorsquad_top5",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_placement_duoorsquad_top5": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Above": {
+ "templateId": "Quest:quest_br_daily_damage_above",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_damage_above": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Lonely_Lazy": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_lonely_lazy",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_lonely_lazy_00": 1,
+ "quest_br_daily_visit_singlematch_lonely_lazy_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_Shifty_Haunted": {
+ "templateId": "Quest:quest_br_daily_search_chests_shifty_haunted",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week05",
+ "objectives": {
+ "quest_br_daily_search_chests_shifty_haunted": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Sniper": {
+ "templateId": "Quest:quest_br_daily_eliminations_sniper",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_eliminations_sniper": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Outlast_SoloOrDuo": {
+ "templateId": "Quest:quest_br_daily_outlast_soloorduo",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_outlast_soloorduo": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Scoped": {
+ "templateId": "Quest:quest_br_daily_damage_scoped",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_damage_scoped": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_Fatal_Lonely": {
+ "templateId": "Quest:quest_br_daily_search_ammoboxes_fatal_lonely",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_search_ammoboxes_fatal_lonely": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_UseDifferentThrown_SingleMatch": {
+ "templateId": "Quest:quest_br_daily_items_usedifferentthrown_singlematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_items_usedifferentthrown_singlematch_00": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_01": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_02": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_03": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_04": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_05": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_06": 1,
+ "quest_br_daily_items_usedifferentthrown_singlematch_07": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Meteor_Island": {
+ "templateId": "Quest:quest_br_daily_landat_meteor_island",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_landat_meteor_island_00": 1,
+ "quest_br_daily_landat_meteor_island_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Loot_Sunny": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_loot_sunny",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week06",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_loot_sunny_00": 1,
+ "quest_br_daily_visit_singlematch_loot_sunny_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Explosive": {
+ "templateId": "Quest:quest_br_daily_eliminations_explosive",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_eliminations_explosive": 1
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_UseDifferentTrap": {
+ "templateId": "Quest:quest_br_daily_items_usedifferenttrap",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_items_usedifferenttrap_00": 1,
+ "quest_br_daily_items_usedifferenttrap_01": 1,
+ "quest_br_daily_items_usedifferenttrap_02": 1,
+ "quest_br_daily_items_usedifferenttrap_03": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_ChestAmmoVending_SameMatch": {
+ "templateId": "Quest:quest_br_daily_search_chestammovending_samematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_search_chestammovending_samematch_0": 1,
+ "quest_br_daily_search_chestammovending_samematch_1": 1,
+ "quest_br_daily_search_chestammovending_samematch_2": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Shotgun": {
+ "templateId": "Quest:quest_br_daily_damage_shotgun",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_damage_shotgun": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Frosty_Haunted": {
+ "templateId": "Quest:quest_br_daily_landat_frosty_haunted",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_landat_frosty_haunted": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Pistol": {
+ "templateId": "Quest:quest_br_daily_damage_pistol",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_damage_pistol": 200
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_Greasy_Sunny": {
+ "templateId": "Quest:quest_br_daily_search_chests_greasy_sunny",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week07",
+ "objectives": {
+ "quest_br_daily_search_chests_greasy_sunny": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_SingleMatch": {
+ "templateId": "Quest:quest_br_daily_damage_singlematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_damage_singlematch": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Salty_Junk": {
+ "templateId": "Quest:quest_br_daily_landat_salty_junk",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_landat_salty_junk": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Suppressed": {
+ "templateId": "Quest:quest_br_daily_eliminations_suppressed",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_eliminations_suppressed": 2
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_DifferentLocationsSingleMatch": {
+ "templateId": "Quest:quest_br_daily_search_ammoboxes_differentlocationssinglematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_00": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_01": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_02": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_03": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_04": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_05": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_06": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_07": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_08": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_09": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_10": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_11": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_12": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_13": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_14": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_15": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_16": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_17": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_18": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_19": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_20": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_21": 1,
+ "quest_br_daily_search_ammoboxes_differentlocationssinglematch_22": 1
+ },
+ "objectiveCompletionCount": 3,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_HotSpot": {
+ "templateId": "Quest:quest_br_daily_search_chests_hotspot",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_search_chests_hotspot": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Retail_Block": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_retail_block",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_retail_block_00": 1,
+ "quest_br_daily_visit_singlematch_retail_block_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_SMG": {
+ "templateId": "Quest:quest_br_daily_damage_smg",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week08",
+ "objectives": {
+ "quest_br_daily_damage_smg": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_SupplyDrops": {
+ "templateId": "Quest:quest_br_daily_search_supplydrops",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_search_supplydrops": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_SMG": {
+ "templateId": "Quest:quest_br_daily_eliminations_smg",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_eliminations_smg": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Polar_Moisty": {
+ "templateId": "Quest:quest_br_daily_landat_polar_moisty",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_landat_polar_moisty": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Sniper": {
+ "templateId": "Quest:quest_br_daily_damage_sniper",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_damage_sniper": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Items_GainHealth": {
+ "templateId": "Quest:quest_br_daily_items_gainhealth",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_items_gainhealth": 250
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_SingleMatch": {
+ "templateId": "Quest:quest_br_daily_search_chests_singlematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_search_chests_singlematch": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_SingleMatch_Dusty_Pleasant": {
+ "templateId": "Quest:quest_br_daily_visit_singlematch_dusty_pleasant",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week09",
+ "objectives": {
+ "quest_br_daily_visit_singlematch_dusty_pleasant_00": 1,
+ "quest_br_daily_visit_singlematch_dusty_pleasant_01": 1
+ },
+ "objectiveCompletionCount": 2,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Damage_Suppressed": {
+ "templateId": "Quest:quest_br_daily_damage_suppressed",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_damage_suppressed": 500
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Outlast_SoloOrSquad": {
+ "templateId": "Quest:quest_br_daily_outlast_soloorsquad",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_outlast_soloorsquad": 150
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Eliminations_Assault": {
+ "templateId": "Quest:quest_br_daily_eliminations_assault",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_eliminations_assault": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_Chests_Loot_Happy": {
+ "templateId": "Quest:quest_br_daily_search_chests_loot_happy",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_search_chests_loot_happy": 7
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_LandAt_Lucky_Retail": {
+ "templateId": "Quest:quest_br_daily_landat_lucky_retail",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_landat_lucky_retail": 3
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Search_AmmoBoxes_SingleMatch": {
+ "templateId": "Quest:quest_br_daily_search_ammoboxes_singlematch",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_search_ammoboxes_singlematch": 5
+ },
+ "objectiveCompletionCount": 1,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ },
+ "QS10-Quest_BR_Daily_Visit_DifferentLocations": {
+ "templateId": "Quest:quest_br_daily_visit_differentlocations",
+ "challenge_bundle_id": "QS10-QuestBundle_BR_S10_Daily_Week10",
+ "objectives": {
+ "quest_br_daily_visit_differentlocations_00": 1,
+ "quest_br_daily_visit_differentlocations_01": 1,
+ "quest_br_daily_visit_differentlocations_02": 1,
+ "quest_br_daily_visit_differentlocations_03": 1,
+ "quest_br_daily_visit_differentlocations_04": 1,
+ "quest_br_daily_visit_differentlocations_05": 1,
+ "quest_br_daily_visit_differentlocations_06": 1,
+ "quest_br_daily_visit_differentlocations_07": 1,
+ "quest_br_daily_visit_differentlocations_08": 1,
+ "quest_br_daily_visit_differentlocations_09": 1,
+ "quest_br_daily_visit_differentlocations_10": 1,
+ "quest_br_daily_visit_differentlocations_11": 1,
+ "quest_br_daily_visit_differentlocations_12": 1,
+ "quest_br_daily_visit_differentlocations_13": 1,
+ "quest_br_daily_visit_differentlocations_14": 1,
+ "quest_br_daily_visit_differentlocations_15": 1,
+ "quest_br_daily_visit_differentlocations_16": 1,
+ "quest_br_daily_visit_differentlocations_17": 1,
+ "quest_br_daily_visit_differentlocations_18": 1,
+ "quest_br_daily_visit_differentlocations_19": 1,
+ "quest_br_daily_visit_differentlocations_20": 1,
+ "quest_br_daily_visit_differentlocations_21": 1,
+ "quest_br_daily_visit_differentlocations_22": 1
+ },
+ "objectiveCompletionCount": 10,
+ "rewards": [],
+ "hiddenRewards": [],
+ "giftBoxToUse": {}
+ }
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/routes/auth.js b/routes/auth.js
new file mode 100644
index 0000000..380bd4e
--- /dev/null
+++ b/routes/auth.js
@@ -0,0 +1,279 @@
+const express = require("express");
+const app = express.Router();
+const jwt = require("jsonwebtoken");
+const bcrypt = require("bcrypt");
+
+const error = require("../structs/error.js");
+const functions = require("../structs/functions.js");
+
+const tokenCreation = require("../tokenManager/tokenCreation.js");
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+const User = require("../model/user.js");
+
+app.post("/account/api/oauth/token", async (req, res) => {
+ let clientId;
+
+ try {
+ clientId = functions.DecodeBase64(req.headers["authorization"].split(" ")[1]).split(":");
+
+ if (!clientId[1]) throw new Error("invalid client id");
+
+ clientId = clientId[0];
+ } catch {
+ return error.createError(
+ "errors.com.epicgames.common.oauth.invalid_client",
+ "It appears that your Authorization header may be invalid or not present, please verify that you are sending the correct headers.",
+ [], 1011, "invalid_client", 400, res
+ );
+ }
+
+ switch (req.body.grant_type) {
+ case "client_credentials":
+ let ip = req.ip;
+
+ let clientToken = global.clientTokens.findIndex(i => i.ip == ip);
+ if (clientToken != -1) global.clientTokens.splice(clientToken, 1);
+
+ const token = tokenCreation.createClient(clientId, req.body.grant_type, ip, 4); // expires in 4 hours
+
+ functions.UpdateTokens();
+
+ const decodedClient = jwt.decode(token);
+
+ res.json({
+ access_token: `eg1~${token}`,
+ expires_in: Math.round(((DateAddHours(new Date(decodedClient.creation_date), decodedClient.hours_expire).getTime()) - (new Date().getTime())) / 1000),
+ expires_at: DateAddHours(new Date(decodedClient.creation_date), decodedClient.hours_expire).toISOString(),
+ token_type: "bearer",
+ client_id: clientId,
+ internal_client: true,
+ client_service: "fortnite"
+ });
+ return;
+
+ case "password":
+ if (!req.body.username || !req.body.password) return error.createError(
+ "errors.com.epicgames.common.oauth.invalid_request",
+ "Username/password is required.",
+ [], 1013, "invalid_request", 400, res
+ );
+ const { username: email, password: password } = req.body;
+
+ req.user = await User.findOne({ email: email.toLowerCase() }).lean();
+
+ let err = () => error.createError(
+ "errors.com.epicgames.account.invalid_account_credentials",
+ "Your e-mail and/or password are incorrect. Please check them and try again.",
+ [], 18031, "invalid_grant", 400, res
+ );
+
+ if (!req.user) return err();
+ else {
+ if (!await bcrypt.compare(password, req.user.password)) return err();
+ }
+ break;
+
+ case "refresh_token":
+ if (!req.body.refresh_token) return error.createError(
+ "errors.com.epicgames.common.oauth.invalid_request",
+ "Refresh token is required.",
+ [], 1013, "invalid_request", 400, res
+ );
+
+ const refresh_token = req.body.refresh_token;
+
+ let refreshToken = global.refreshTokens.findIndex(i => i.token == refresh_token);
+ let object = global.refreshTokens[refreshToken];
+
+ try {
+ if (refreshToken == -1) throw new Error("Refresh token invalid.");
+ let decodedRefreshToken = jwt.decode(refresh_token.replace("eg1~", ""));
+
+ if (DateAddHours(new Date(decodedRefreshToken.creation_date), decodedRefreshToken.hours_expire).getTime() <= new Date().getTime()) {
+ throw new Error("Expired refresh token.");
+ }
+ } catch {
+ if (refreshToken != -1) {
+ global.refreshTokens.splice(refreshToken, 1);
+
+ functions.UpdateTokens();
+ }
+
+ error.createError(
+ "errors.com.epicgames.account.auth_token.invalid_refresh_token",
+ `Sorry the refresh token '${refresh_token}' is invalid`,
+ [refresh_token], 18036, "invalid_grant", 400, res
+ );
+
+ return;
+ }
+
+ req.user = await User.findOne({ accountId: object.accountId }).lean();
+ break;
+
+ case "exchange_code":
+ if (!req.body.exchange_code) return error.createError(
+ "errors.com.epicgames.common.oauth.invalid_request",
+ "Exchange code is required.",
+ [], 1013, "invalid_request", 400, res
+ );
+
+ const { exchange_code } = req.body;
+
+ let index = global.exchangeCodes.findIndex(i => i.exchange_code == exchange_code);
+ let exchange = global.exchangeCodes[index];
+
+ if (index == -1) return error.createError(
+ "errors.com.epicgames.account.oauth.exchange_code_not_found",
+ "Sorry the exchange code you supplied was not found. It is possible that it was no longer valid",
+ [], 18057, "invalid_grant", 400, res
+ );
+
+ global.exchangeCodes.splice(index, 1);
+
+ req.user = await User.findOne({ accountId: exchange.accountId }).lean();
+ break;
+
+ default:
+ error.createError(
+ "errors.com.epicgames.common.oauth.unsupported_grant_type",
+ `Unsupported grant type: ${req.body.grant_type}`,
+ [], 1016, "unsupported_grant_type", 400, res
+ );
+ return;
+ }
+
+ if (req.user.banned) return error.createError(
+ "errors.com.epicgames.account.account_not_active",
+ "You have been permanently banned from Fortnite.",
+ [], -1, undefined, 400, res
+ );
+
+ let refreshIndex = global.refreshTokens.findIndex(i => i.accountId == req.user.accountId);
+ if (refreshIndex != -1) global.refreshTokens.splice(refreshIndex, 1);
+
+ let accessIndex = global.accessTokens.findIndex(i => i.accountId == req.user.accountId);
+ if (accessIndex != -1) {
+ global.accessTokens.splice(accessIndex, 1);
+
+ let xmppClient = global.Clients.find(i => i.accountId == req.user.accountId);
+ if (xmppClient) xmppClient.client.close();
+ }
+
+ const deviceId = functions.MakeID().replace(/-/ig, "");
+ const accessToken = tokenCreation.createAccess(req.user, clientId, req.body.grant_type, deviceId, 8); // expires in 8 hours
+ const refreshToken = tokenCreation.createRefresh(req.user, clientId, req.body.grant_type, deviceId, 24); // expires in 24 hours
+
+ functions.UpdateTokens();
+
+ const decodedAccess = jwt.decode(accessToken);
+ const decodedRefresh = jwt.decode(refreshToken);
+
+ res.json({
+ access_token: `eg1~${accessToken}`,
+ expires_in: Math.round(((DateAddHours(new Date(decodedAccess.creation_date), decodedAccess.hours_expire).getTime()) - (new Date().getTime())) / 1000),
+ expires_at: DateAddHours(new Date(decodedAccess.creation_date), decodedAccess.hours_expire).toISOString(),
+ token_type: "bearer",
+ refresh_token: `eg1~${refreshToken}`,
+ refresh_expires: Math.round(((DateAddHours(new Date(decodedRefresh.creation_date), decodedRefresh.hours_expire).getTime()) - (new Date().getTime())) / 1000),
+ refresh_expires_at: DateAddHours(new Date(decodedRefresh.creation_date), decodedRefresh.hours_expire).toISOString(),
+ account_id: req.user.accountId,
+ client_id: clientId,
+ internal_client: true,
+ client_service: "fortnite",
+ displayName: req.user.username,
+ app: "fortnite",
+ in_app_id: req.user.accountId,
+ device_id: deviceId
+ });
+});
+
+app.get("/account/api/oauth/verify", verifyToken, (req, res) => {
+ let token = req.headers["authorization"].replace("bearer ", "");
+ const decodedToken = jwt.decode(token.replace("eg1~", ""));
+
+ res.json({
+ token: token,
+ session_id: decodedToken.jti,
+ token_type: "bearer",
+ client_id: decodedToken.clid,
+ internal_client: true,
+ client_service: "fortnite",
+ account_id: req.user.accountId,
+ expires_in: Math.round(((DateAddHours(new Date(decodedToken.creation_date), decodedToken.hours_expire).getTime()) - (new Date().getTime())) / 1000),
+ expires_at: DateAddHours(new Date(decodedToken.creation_date), decodedToken.hours_expire).toISOString(),
+ auth_method: decodedToken.am,
+ display_name: req.user.username,
+ app: "fortnite",
+ in_app_id: req.user.accountId,
+ device_id: decodedToken.dvid
+ });
+});
+
+app.get("/account/api/oauth/exchange", verifyToken, (req, res) => {
+ return res.status(400).json({
+ "error": "This endpoint is deprecated, please use the discord bot to generate an exchange code."
+ });
+ // remove the return code above if you still want to make use of this endpoint
+
+ let token = req.headers["authorization"].replace("bearer ", "");
+ const exchange_code = functions.MakeID().replace(/-/ig, "");
+
+ const decodedToken = jwt.decode(token.replace("eg1~", ""));
+
+ global.exchangeCodes.push({
+ accountId: req.user.accountId,
+ exchange_code: exchange_code,
+ creatingClientId: decodedToken.clid
+ });
+
+ setTimeout(() => {
+ let exchangeCode = global.exchangeCodes.findIndex(i => i.exchange_code == exchange_code);
+
+ if (exchangeCode != -1) global.exchangeCodes.splice(exchangeCode, 1);
+ }, 300000) // remove exchange code in 5 minutes if unused
+
+ res.json({
+ expiresInSeconds: 300,
+ code: exchange_code,
+ creatingClientId: decodedToken.clid
+ });
+});
+
+app.delete("/account/api/oauth/sessions/kill", (req, res) => {
+ res.status(204).end();
+});
+
+app.delete("/account/api/oauth/sessions/kill/:token", (req, res) => {
+ let token = req.params.token;
+
+ let accessIndex = global.accessTokens.findIndex(i => i.token == token);
+
+ if (accessIndex != -1) {
+ let object = global.accessTokens[accessIndex];
+
+ global.accessTokens.splice(accessIndex, 1);
+
+ let xmppClient = global.Clients.find(i => i.token == object.token);
+ if (xmppClient) xmppClient.client.close();
+
+ let refreshIndex = global.refreshTokens.findIndex(i => i.accountId == object.accountId);
+ if (refreshIndex != -1) global.refreshTokens.splice(refreshIndex, 1);
+ }
+
+ let clientIndex = global.clientTokens.findIndex(i => i.token == token);
+ if (clientIndex != -1) global.clientTokens.splice(clientIndex, 1);
+
+ if (accessIndex != -1 || clientIndex != -1) functions.UpdateTokens();
+
+ res.status(204).end();
+});
+
+function DateAddHours(pdate, number) {
+ let date = pdate;
+ date.setHours(date.getHours() + number);
+
+ return date;
+}
+
+module.exports = app;
diff --git a/routes/cloudstorage.js b/routes/cloudstorage.js
new file mode 100644
index 0000000..c200d37
--- /dev/null
+++ b/routes/cloudstorage.js
@@ -0,0 +1,132 @@
+const express = require("express");
+const app = express.Router();
+const fs = require("fs");
+const crypto = require("crypto");
+const path = require("path");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+const functions = require("../structs/functions.js");
+
+let seasons = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];
+
+app.get("/fortnite/api/cloudstorage/system", (req, res) => {
+ const dir = path.join(__dirname, "..", "CloudStorage");
+
+ let CloudFiles = [];
+
+ fs.readdirSync(dir).forEach(name => {
+ if (name.toLowerCase().endsWith(".ini")) {
+ const ParsedFile = fs.readFileSync(path.join(dir, name)).toString();
+ const ParsedStats = fs.statSync(path.join(dir, name));
+
+ CloudFiles.push({
+ "uniqueFilename": name,
+ "filename": name,
+ "hash": crypto.createHash('sha1').update(ParsedFile).digest('hex'),
+ "hash256": crypto.createHash('sha256').update(ParsedFile).digest('hex'),
+ "length": ParsedFile.length,
+ "contentType": "application/octet-stream",
+ "uploaded": ParsedStats.mtime,
+ "storageType": "S3",
+ "storageIds": {},
+ "doNotCache": true
+ });
+ }
+ });
+
+ res.json(CloudFiles);
+});
+
+app.get("/fortnite/api/cloudstorage/system/:file", (req, res) => {
+ if (req.params.file.includes("..")) return res.status(404).end();
+ if (req.params.file.includes("~")) return res.status(404).end();
+
+ const file = path.join(__dirname, "..", "CloudStorage", req.params.file);
+
+ if (fs.existsSync(file)) return res.status(200).send(fs.readFileSync(file));
+
+ res.status(200).end();
+});
+
+app.get("/fortnite/api/cloudstorage/user/*/:file", verifyToken, (req, res) => {
+ let clientSettingsPath = path.join(__dirname, "..", "ClientSettings", req.user.accountId);
+ if (!fs.existsSync(clientSettingsPath)) fs.mkdirSync(clientSettingsPath);
+
+ if (req.params.file.toLowerCase() != "clientsettings.sav") return res.status(200).end();
+
+ const memory = functions.GetVersionInfo(req);
+ if (!seasons.includes(memory.season)) return res.status(200).end();
+
+ let file = path.join(clientSettingsPath, `ClientSettings-${memory.season}.Sav`);
+
+ if (fs.existsSync(file)) return res.status(200).send(fs.readFileSync(file));
+
+ res.status(200).end();
+});
+
+app.get("/fortnite/api/cloudstorage/user/:accountId", verifyToken, (req, res) => {
+ let clientSettingsPath = path.join(__dirname, "..", "ClientSettings", req.user.accountId);
+ if (!fs.existsSync(clientSettingsPath)) fs.mkdirSync(clientSettingsPath);
+
+ const memory = functions.GetVersionInfo(req);
+ if (!seasons.includes(memory.season)) return res.json([]);
+
+ let file = path.join(clientSettingsPath, `ClientSettings-${memory.season}.Sav`);
+
+ if (fs.existsSync(file)) {
+ const ParsedFile = fs.readFileSync(file, 'latin1');
+ const ParsedStats = fs.statSync(file);
+
+ return res.json([{
+ "uniqueFilename": "ClientSettings.Sav",
+ "filename": "ClientSettings.Sav",
+ "hash": crypto.createHash('sha1').update(ParsedFile).digest('hex'),
+ "hash256": crypto.createHash('sha256').update(ParsedFile).digest('hex'),
+ "length": Buffer.byteLength(ParsedFile),
+ "contentType": "application/octet-stream",
+ "uploaded": ParsedStats.mtime,
+ "storageType": "S3",
+ "storageIds": {},
+ "accountId": req.user.accountId,
+ "doNotCache": false
+ }]);
+ }
+
+ res.json([]);
+});
+
+app.put("/fortnite/api/cloudstorage/user/*/:file", verifyToken, getRawBody, (req, res) => {
+ if (Buffer.byteLength(req.rawBody) >= 400000) return res.status(403).json({ "error": "File size must be less than 400kb." });
+
+ let clientSettingsPath = path.join(__dirname, "..", "ClientSettings", req.user.accountId);
+ if (!fs.existsSync(clientSettingsPath)) fs.mkdirSync(clientSettingsPath);
+
+ if (req.params.file.toLowerCase() != "clientsettings.sav") return res.status(204).end();
+
+ const memory = functions.GetVersionInfo(req);
+ if (!seasons.includes(memory.season)) return res.status(204).end();
+
+ let file = path.join(clientSettingsPath, `ClientSettings-${memory.season}.Sav`);
+ fs.writeFileSync(file, req.rawBody, 'latin1');
+
+ res.status(204).end();
+});
+
+function getRawBody(req, res, next) {
+ if (req.headers["content-length"]) {
+ if (Number(req.headers["content-length"]) >= 400000) return res.status(403).json({ "error": "File size must be less than 400kb." });
+ }
+
+ // Get raw body in encoding latin1 for ClientSettings
+ try {
+ req.rawBody = "";
+ req.setEncoding("latin1");
+
+ req.on("data", (chunk) => req.rawBody += chunk);
+ req.on("end", () => next());
+ } catch {
+ res.status(400).json({ "error": "Something went wrong while trying to access the request body." });
+ }
+}
+
+module.exports = app;
diff --git a/routes/contentpages.js b/routes/contentpages.js
new file mode 100644
index 0000000..94a11e1
--- /dev/null
+++ b/routes/contentpages.js
@@ -0,0 +1,11 @@
+const express = require("express");
+const app = express.Router();
+const functions = require("../structs/functions.js");
+
+app.get("/content/api/pages/*", async (req, res) => {
+ const contentpages = functions.getContentPages(req);
+
+ res.json(contentpages);
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/friends.js b/routes/friends.js
new file mode 100644
index 0000000..b78050d
--- /dev/null
+++ b/routes/friends.js
@@ -0,0 +1,229 @@
+const express = require("express");
+const app = express.Router();
+
+const functions = require("../structs/functions.js");
+
+const Friends = require("../model/friends.js");
+const friendManager = require("../structs/friend.js");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+app.get("/friends/api/v1/*/settings", (req, res) => {
+ res.json({});
+});
+
+app.get("/friends/api/v1/*/blocklist", (req, res) => {
+ res.json([]);
+});
+
+app.get("/friends/api/public/list/fortnite/*/recentPlayers", (req, res) => {
+ res.json([]);
+});
+
+app.all("/friends/api/v1/*/friends/:friendId/alias", verifyToken, getRawBody, async (req, res) => {
+ let friends = await Friends.findOne({ accountId: req.user.accountId });
+
+ let validationFail = () => error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ "Validation Failed. Invalid fields were [alias]",
+ ["[alias]"], 1040, undefined, 404, res
+ );
+
+ const allowedCharacters = (" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~").split("");
+
+ for (let character of req.rawBody) {
+ if (!allowedCharacters.includes(character)) return validationFail();
+ }
+
+ if (!friends.list.accepted.find(i => i.accountId == req.params.friendId)) return error.createError(
+ "errors.com.epicgames.friends.friendship_not_found",
+ `Friendship between ${req.user.accountId} and ${req.params.friendId} does not exist`,
+ [req.user.accountId,req.params.friendId], 14004, undefined, 404, res
+ );
+
+ const friendIndex = friends.list.accepted.findIndex(i => i.accountId == req.params.friendId);
+
+ switch (req.method) {
+ case "PUT":
+ if ((req.rawBody < 3) || (req.rawBody > 16)) return validationFail();
+
+ friends.list.accepted[friendIndex].alias = req.rawBody;
+
+ await friends.updateOne({ $set: { list: friends.list } });
+ break;
+
+ case "DELETE":
+ friends.list.accepted[friendIndex].alias = "";
+
+ await friends.updateOne({ $set: { list: friends.list } });
+ break;
+ }
+
+ res.status(204).end();
+});
+
+app.get("/friends/api/public/friends/:accountId", verifyToken, async (req, res) => {
+ let response = [];
+
+ const friends = await Friends.findOne({ accountId: req.user.accountId }).lean();
+
+ friends.list.accepted.forEach(acceptedFriend => {
+ response.push({
+ "accountId": acceptedFriend.accountId,
+ "status": "ACCEPTED",
+ "direction": "OUTBOUND",
+ "created": acceptedFriend.created,
+ "favorite": false
+ });
+ });
+
+ friends.list.incoming.forEach(incomingFriend => {
+ response.push({
+ "accountId": incomingFriend.accountId,
+ "status": "PENDING",
+ "direction": "INBOUND",
+ "created": incomingFriend.created,
+ "favorite": false
+ });
+ });
+
+ friends.list.outgoing.forEach(outgoingFriend => {
+ response.push({
+ "accountId": outgoingFriend.accountId,
+ "status": "PENDING",
+ "direction": "OUTBOUND",
+ "created": outgoingFriend.created,
+ "favorite": false
+ });
+ });
+
+ res.json(response);
+});
+
+app.post("/friends/api/*/friends*/:receiverId", verifyToken, async (req, res) => {
+ let sender = await Friends.findOne({ accountId: req.user.accountId });
+ let receiver = await Friends.findOne({ accountId: req.params.receiverId });
+ if (!sender || !receiver) return res.status(403).end();
+
+ if (sender.list.incoming.find(i => i.accountId == receiver.accountId)) {
+ if (!await friendManager.acceptFriendReq(sender.accountId, receiver.accountId)) return res.status(403).end();
+
+ functions.getPresenceFromUser(sender.accountId, receiver.accountId, false);
+ functions.getPresenceFromUser(receiver.accountId, sender.accountId, false);
+ } else if (!sender.list.outgoing.find(i => i.accountId == receiver.accountId)) {
+ if (!await friendManager.sendFriendReq(sender.accountId, receiver.accountId)) return res.status(403).end();
+ }
+
+ res.status(204).end();
+});
+
+app.delete("/friends/api/*/friends*/:receiverId", verifyToken, async (req, res) => {
+ let sender = await Friends.findOne({ accountId: req.user.accountId });
+ let receiver = await Friends.findOne({ accountId: req.params.receiverId });
+ if (!sender || !receiver) return res.status(403).end();
+
+ if (!await friendManager.deleteFriend(sender.accountId, receiver.accountId)) return res.status(403).end();
+
+ functions.getPresenceFromUser(sender.accountId, receiver.accountId, true);
+ functions.getPresenceFromUser(receiver.accountId, sender.accountId, true);
+
+ res.status(204).end();
+});
+
+app.post("/friends/api/*/blocklist*/:receiverId", verifyToken, async (req, res) => {
+ let sender = await Friends.findOne({ accountId: req.user.accountId });
+ let receiver = await Friends.findOne({ accountId: req.params.receiverId });
+ if (!sender || !receiver) return res.status(403).end();
+
+ if (!await friendManager.blockFriend(sender.accountId, receiver.accountId)) return res.status(403).end();
+
+ functions.getPresenceFromUser(sender.accountId, receiver.accountId, true);
+ functions.getPresenceFromUser(receiver.accountId, sender.accountId, true);
+
+ res.status(204).end();
+});
+
+app.delete("/friends/api/*/blocklist*/:receiverId", verifyToken, async (req, res) => {
+ let sender = await Friends.findOne({ accountId: req.user.accountId });
+ let receiver = await Friends.findOne({ accountId: req.params.receiverId });
+ if (!sender || !receiver) return res.status(403).end();
+
+ if (!await friendManager.deleteFriend(sender.accountId, receiver.accountId)) return res.status(403).end();
+
+ res.status(204).end();
+});
+
+app.get("/friends/api/v1/:accountId/summary", verifyToken, async (req, res) => {
+ let response = {
+ "friends": [],
+ "incoming": [],
+ "outgoing": [],
+ "suggested": [],
+ "blocklist": [],
+ "settings": {
+ "acceptInvites": "public"
+ }
+ }
+
+ const friends = await Friends.findOne({ accountId: req.user.accountId }).lean();
+
+ friends.list.accepted.forEach(acceptedFriend => {
+ response.friends.push({
+ "accountId": acceptedFriend.accountId,
+ "groups": [],
+ "mutual": 0,
+ "alias": acceptedFriend.alias ? acceptedFriend.alias : "",
+ "note": "",
+ "favorite": false,
+ "created": acceptedFriend.created
+ });
+ });
+
+ friends.list.incoming.forEach(incomingFriend => {
+ response.incoming.push({
+ "accountId": incomingFriend.accountId,
+ "mutual": 0,
+ "favorite": false,
+ "created": incomingFriend.created
+ });
+ });
+
+ friends.list.outgoing.forEach(outgoingFriend => {
+ response.outgoing.push({
+ "accountId": outgoingFriend.accountId,
+ "favorite": false
+ });
+ });
+
+ friends.list.blocked.forEach(blockedFriend => {
+ response.blocklist.push({
+ "accountId": blockedFriend.accountId
+ });
+ });
+
+ res.json(response);
+});
+
+app.get("/friends/api/public/blocklist/*", verifyToken, async (req, res) => {
+ let friends = await Friends.findOne({ accountId: req.user.accountId }).lean();
+
+ res.json({
+ "blockedUsers": friends.list.blocked.map(i => i.accountId)
+ });
+});
+
+function getRawBody(req, res, next) {
+ if (req.headers["content-length"]) {
+ if (Number(req.headers["content-length"]) > 16) return res.status(403).json({ "error": "File size must be 16 bytes or less." });
+ }
+
+ try {
+ req.rawBody = "";
+ req.on("data", (chunk) => req.rawBody += chunk);
+ req.on("end", () => next());
+ } catch {
+ res.status(400).json({ "error": "Something went wrong while trying to access the request body." });
+ }
+}
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/lightswitch.js b/routes/lightswitch.js
new file mode 100644
index 0000000..54fd9e1
--- /dev/null
+++ b/routes/lightswitch.js
@@ -0,0 +1,47 @@
+const express = require("express");
+const app = express.Router();
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+app.get("/lightswitch/api/service/Fortnite/status", async (req, res) => {
+ res.json({
+ "serviceInstanceId": "fortnite",
+ "status": "UP",
+ "message": "Fortnite is online",
+ "maintenanceUri": null,
+ "overrideCatalogIds": [
+ "a7f138b2e51945ffbfdacc1af0541053"
+ ],
+ "allowedActions": [],
+ "banned": false,
+ "launcherInfoDTO": {
+ "appName": "Fortnite",
+ "catalogItemId": "4fe75bbc5a674f4f9b356b5c90567da5",
+ "namespace": "fn"
+ }
+ });
+});
+
+app.get("/lightswitch/api/service/bulk/status", async (req, res) => {
+ res.json([{
+ "serviceInstanceId": "fortnite",
+ "status": "UP",
+ "message": "fortnite is up.",
+ "maintenanceUri": null,
+ "overrideCatalogIds": [
+ "a7f138b2e51945ffbfdacc1af0541053"
+ ],
+ "allowedActions": [
+ "PLAY",
+ "DOWNLOAD"
+ ],
+ "banned": false,
+ "launcherInfoDTO": {
+ "appName": "Fortnite",
+ "catalogItemId": "4fe75bbc5a674f4f9b356b5c90567da5",
+ "namespace": "fn"
+ }
+ }]);
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/main.js b/routes/main.js
new file mode 100644
index 0000000..aa64a08
--- /dev/null
+++ b/routes/main.js
@@ -0,0 +1,127 @@
+const express = require("express");
+const fs = require("fs");
+const app = express.Router();
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+app.post("/fortnite/api/game/v2/chat/*/*/*/pc", (req, res) => {
+ let resp = config.chat.EnableGlobalChat ? { "GlobalChatRooms": [{ "roomName": "reloadbackendglobal" }] } : {};
+
+ res.json(resp);
+});
+
+app.post("/fortnite/api/game/v2/tryPlayOnPlatform/account/*", (req, res) => {
+ res.setHeader("Content-Type", "text/plain");
+ res.send(true);
+});
+
+app.get("/launcher/api/public/distributionpoints/", (req, res) => {
+ res.json({
+ "distributions": [
+ "https://download.epicgames.com/",
+ "https://download2.epicgames.com/",
+ "https://download3.epicgames.com/",
+ "https://download4.epicgames.com/",
+ "https://epicgames-download1.akamaized.net/"
+ ]
+ });
+});
+
+app.get("/waitingroom/api/waitingroom", (req, res) => {
+ res.status(204);
+ res.end();
+});
+
+app.get("/socialban/api/public/v1/*", (req, res) => {
+ res.json({
+ "bans": [],
+ "warnings": []
+ });
+});
+
+app.get("/fortnite/api/game/v2/events/tournamentandhistory/*/EU/WindowsClient", (req, res) => {
+ res.json({});
+});
+
+app.get("/fortnite/api/statsv2/account/:accountId", (req, res) => {
+ res.json({
+ "startTime": 0,
+ "endTime": 0,
+ "stats": {},
+ "accountId": req.params.accountId
+ });
+});
+
+app.get("/statsproxy/api/statsv2/account/:accountId", (req, res) => {
+ res.json({
+ "startTime": 0,
+ "endTime": 0,
+ "stats": {},
+ "accountId": req.params.accountId
+ });
+});
+
+app.get("/fortnite/api/stats/accountId/:accountId/bulk/window/alltime", (req, res) => {
+ res.json({
+ "startTime": 0,
+ "endTime": 0,
+ "stats": {},
+ "accountId": req.params.accountId
+ });
+});
+
+app.post("/fortnite/api/feedback/*", (req, res) => {
+ res.status(200);
+ res.end();
+});
+
+app.post("/fortnite/api/statsv2/query", (req, res) => {
+ res.json([]);
+});
+
+app.post("/statsproxy/api/statsv2/query", (req, res) => {
+ res.json([]);
+});
+
+app.post("/fortnite/api/game/v2/events/v2/setSubgroup/*", (req, res) => {
+ res.status(204);
+ res.end();
+});
+
+app.get("/fortnite/api/game/v2/enabled_features", (req, res) => {
+ res.json([]);
+});
+
+app.get("/api/v1/events/Fortnite/download/*", (req, res) => {
+ res.json({});
+});
+
+app.get("/fortnite/api/game/v2/twitch/*", (req, res) => {
+ res.status(200);
+ res.end();
+});
+
+app.get("/fortnite/api/game/v2/world/info", (req, res) => {
+ res.json({});
+});
+
+app.post("/fortnite/api/game/v2/chat/*/recommendGeneralChatRooms/pc", (req, res) => {
+ res.json({});
+});
+
+app.get("/fortnite/api/receipts/v1/account/*/receipts", (req, res) => {
+ res.json([]);
+});
+
+app.get("/fortnite/api/game/v2/leaderboards/cohort/*", (req, res) => {
+ res.json([]);
+});
+
+app.post("/datarouter/api/v1/public/data", (req, res) => {
+ res.status(204);
+ res.end();
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/matchmaking.js b/routes/matchmaking.js
new file mode 100644
index 0000000..e16b09f
--- /dev/null
+++ b/routes/matchmaking.js
@@ -0,0 +1,108 @@
+const express = require("express");
+const app = express.Router();
+const fs = require("fs");
+const functions = require("../structs/functions.js");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+let buildUniqueId = {};
+
+app.get("/fortnite/api/matchmaking/session/findPlayer/*", (req, res) => {
+ res.status(200).end();
+});
+
+app.get("/fortnite/api/game/v2/matchmakingservice/ticket/player/*", verifyToken, (req, res) => {
+ if (typeof req.query.bucketId != "string") return res.status(400).end();
+ if (req.query.bucketId.split(":").length != 4) return res.status(400).end();
+
+ buildUniqueId[req.user.accountId] = req.query.bucketId.split(":")[0];
+
+ const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+ res.json({
+ "serviceUrl": `ws://${config.matchmakerIP}`,
+ "ticketType": "mms-player",
+ "payload": "69=",
+ "signature": "420="
+ });
+ res.end();
+});
+
+app.get("/fortnite/api/game/v2/matchmaking/account/:accountId/session/:sessionId", (req, res) => {
+ res.json({
+ "accountId": req.params.accountId,
+ "sessionId": req.params.sessionId,
+ "key": "none"
+ });
+});
+
+app.get("/fortnite/api/matchmaking/session/:sessionId", verifyToken, (req, res) => {
+ const config = JSON.parse(fs.readFileSync("./Config/config.json").toString());
+
+ let gameServerInfo = {
+ serverAddress: "127.0.0.1",
+ serverPort: 7777
+ }
+
+ try {
+ let calculateIp = config.gameServerIP.split(":")[0];
+ let calculatePort = Number(config.gameServerIP.split(":")[1]);
+
+ if (calculateIp) gameServerInfo.serverAddress = calculateIp;
+ if (Number.isNaN(calculatePort) || !calculatePort) throw new Error("Invalid port.");
+
+ gameServerInfo.serverPort = calculatePort;
+ } catch {}
+
+ res.json({
+ "id": req.params.sessionId,
+ "ownerId": functions.MakeID().replace(/-/ig, "").toUpperCase(),
+ "ownerName": "[DS]fortnite-liveeugcec1c2e30ubrcore0a-z8hj-1968",
+ "serverName": "[DS]fortnite-liveeugcec1c2e30ubrcore0a-z8hj-1968",
+ "serverAddress": gameServerInfo.serverAddress,
+ "serverPort": gameServerInfo.serverPort,
+ "maxPublicPlayers": 220,
+ "openPublicPlayers": 175,
+ "maxPrivatePlayers": 0,
+ "openPrivatePlayers": 0,
+ "attributes": {
+ "REGION_s": "EU",
+ "GAMEMODE_s": "FORTATHENA",
+ "ALLOWBROADCASTING_b": true,
+ "SUBREGION_s": "GB",
+ "DCID_s": "FORTNITE-LIVEEUGCEC1C2E30UBRCORE0A-14840880",
+ "tenant_s": "Fortnite",
+ "MATCHMAKINGPOOL_s": "Any",
+ "STORMSHIELDDEFENSETYPE_i": 0,
+ "HOTFIXVERSION_i": 0,
+ "PLAYLISTNAME_s": "Playlist_DefaultSolo",
+ "SESSIONKEY_s": functions.MakeID().replace(/-/ig, "").toUpperCase(),
+ "TENANT_s": "Fortnite",
+ "BEACONPORT_i": 15009
+ },
+ "publicPlayers": [],
+ "privatePlayers": [],
+ "totalPlayers": 45,
+ "allowJoinInProgress": false,
+ "shouldAdvertise": false,
+ "isDedicated": false,
+ "usesStats": false,
+ "allowInvites": false,
+ "usesPresence": false,
+ "allowJoinViaPresence": true,
+ "allowJoinViaPresenceFriendsOnly": false,
+ "buildUniqueId": buildUniqueId[req.user.accountId] || "0",
+ "lastUpdated": new Date().toISOString(),
+ "started": false
+ });
+});
+
+app.post("/fortnite/api/matchmaking/session/*/join", (req, res) => {
+ res.status(204).end();
+});
+
+app.post("/fortnite/api/matchmaking/session/matchMakingRequest", (req, res) => {
+ res.json([]);
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/mcp.js b/routes/mcp.js
new file mode 100644
index 0000000..1a6f374
--- /dev/null
+++ b/routes/mcp.js
@@ -0,0 +1,2555 @@
+const express = require("express");
+const app = express.Router();
+
+const Friends = require("../model/friends");
+const Profile = require("../model/profiles.js");
+const profileManager = require("../structs/profile.js");
+const error = require("../structs/error.js");
+const functions = require("../structs/functions.js");
+const config = require('../Config/config.json')
+const fs = require("fs");
+const path = require("path");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+global.giftReceived = {};
+
+app.post("/fortnite/api/game/v2/profile/*/client/SetReceiveGiftsEnabled", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ if (req.query.profileId != "common_core") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `SetReceiveGiftsEnabled is not valid on ${req.query.profileId} profile`,
+ ["SetReceiveGiftsEnabled",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ const memory = functions.GetVersionInfo(req);
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ if (typeof req.body.bReceiveGifts != "boolean") return ValidationError("bReceiveGifts", "a boolean", res);
+
+ profile.stats.attributes.allowed_to_receive_gifts = req.body.bReceiveGifts;
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "allowed_to_receive_gifts",
+ "value": profile.stats.attributes.allowed_to_receive_gifts
+ });
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", verifyToken, async (req, res) => {
+
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+ let athena = profiles.profiles["athena"];
+ var AthenaQuestIDS = JSON.parse(JSON.stringify(require("./../responses/quests.json")));
+ const memory = functions.GetVersionInfo(req);
+
+ var ApplyProfileChanges = [];
+ var Notifications = [];
+ var BaseRevision = profile.rvn || 0;
+ var QueryRevision = req.query.rvn || -1;
+ var StatChanged = false;
+
+ var QuestCount = 0;
+ var ShouldGiveQuest = true;
+ var DateFormat = (new Date().toISOString()).split("T")[0];
+ var DailyQuestIDS;
+ var SeasonQuestIDS;
+
+ const SeasonPrefix = memory.season < 10 ? `0${memory.season}` : memory.season;
+
+ try {
+ if (req.query.profileId == "profile0") {
+
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("quest:daily")) {
+ QuestCount += 1;
+ }
+ }
+ }
+
+ if (req.query.profileId == "athena") {
+ DailyQuestIDS = AthenaQuestIDS.Daily
+
+ if (AthenaQuestIDS.hasOwnProperty(`Season${SeasonPrefix}`)) {
+ SeasonQuestIDS = AthenaQuestIDS[`Season${SeasonPrefix}`]
+ }
+
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("quest:athenadaily")) {
+ QuestCount += 1;
+ }
+ }
+ }
+
+ if (profile.stats.attributes.hasOwnProperty("quest_manager")) {
+ if (profile.stats.attributes.quest_manager.hasOwnProperty("dailyLoginInterval")) {
+ if (profile.stats.attributes.quest_manager.dailyLoginInterval.includes("T")) {
+ var DailyLoginDate = (profile.stats.attributes.quest_manager.dailyLoginInterval).split("T")[0];
+
+ if (DailyLoginDate == DateFormat) {
+ ShouldGiveQuest = false;
+ } else {
+ ShouldGiveQuest = true;
+ if (profile.stats.attributes.quest_manager.dailyQuestRerolls <= 0) {
+ profile.stats.attributes.quest_manager.dailyQuestRerolls += 1;
+ }
+ }
+ }
+ }
+ }
+
+ if (QuestCount < 3 && ShouldGiveQuest == true) {
+ const NewQuestID = functions.MakeID();
+ var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length);
+
+ for (var key in profile.items) {
+ while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) {
+ randomNumber = Math.floor(Math.random() * DailyQuestIDS.length);
+ }
+ }
+
+ profile.items[NewQuestID] = {
+ "templateId": DailyQuestIDS[randomNumber].templateId,
+ "attributes": {
+ "creation_time": new Date().toISOString(),
+ "level": -1,
+ "item_seen": false,
+ "sent_new_notification": false,
+ "xp_reward_scalar": 1,
+ "quest_state": "Active",
+ "last_state_change_time": new Date().toISOString(),
+ "max_level_bonus": 0,
+ "xp": 0,
+ "favorite": false
+ },
+ "quantity": 1
+ };
+
+ for (var i in DailyQuestIDS[randomNumber].objectives) {
+ profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i].toLowerCase()}`] = 0
+ }
+
+ profile.stats.attributes.quest_manager.dailyLoginInterval = new Date().toISOString();
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": NewQuestID,
+ "item": profile.items[NewQuestID]
+ })
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "quest_manager",
+ "value": profile.stats.attributes.quest_manager
+ })
+
+ StatChanged = true;
+ }
+ } catch (err) {}
+
+ for (var key in profile.items) {
+ if (key.startsWith("QS") && Number.isInteger(Number(key[2])) && Number.isInteger(Number(key[3])) && key[4] === "-") {
+ if (!key.startsWith(`QS${SeasonPrefix}-`)) {
+ delete profile.items[key];
+
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": key
+ })
+
+ StatChanged = true;
+ }
+ }
+ }
+
+ if (SeasonQuestIDS) {
+ var QuestsToAdd = [];
+
+ if (req.query.profileId == "athena") {
+ for (var ChallengeBundleScheduleID in SeasonQuestIDS.ChallengeBundleSchedules) {
+ if (profile.items.hasOwnProperty(ChallengeBundleScheduleID)) {
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": ChallengeBundleScheduleID
+ })
+ }
+
+ var ChallengeBundleSchedule = SeasonQuestIDS.ChallengeBundleSchedules[ChallengeBundleScheduleID];
+
+ profile.items[ChallengeBundleScheduleID] = {
+ "templateId": ChallengeBundleSchedule.templateId,
+ "attributes": {
+ "unlock_epoch": new Date().toISOString(),
+ "max_level_bonus": 0,
+ "level": 1,
+ "item_seen": true,
+ "xp": 0,
+ "favorite": false,
+ "granted_bundles": ChallengeBundleSchedule.granted_bundles
+ },
+ "quantity": 1
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ChallengeBundleScheduleID,
+ "item": profile.items[ChallengeBundleScheduleID]
+ })
+
+ StatChanged = true;
+ }
+
+ for (var ChallengeBundleID in SeasonQuestIDS.ChallengeBundles) {
+ if (profile.items.hasOwnProperty(ChallengeBundleID)) {
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": ChallengeBundleID
+ })
+ }
+
+ var ChallengeBundle = SeasonQuestIDS.ChallengeBundles[ChallengeBundleID];
+
+ if (config.bCompletedSeasonalQuests == true && ChallengeBundle.hasOwnProperty("questStages")) {
+ ChallengeBundle.grantedquestinstanceids = ChallengeBundle.grantedquestinstanceids.concat(ChallengeBundle.questStages);
+ }
+
+ profile.items[ChallengeBundleID] = {
+ "templateId": ChallengeBundle.templateId,
+ "attributes": {
+ "has_unlock_by_completion": false,
+ "num_quests_completed": 0,
+ "level": 0,
+ "grantedquestinstanceids": ChallengeBundle.grantedquestinstanceids,
+ "item_seen": true,
+ "max_allowed_bundle_level": 0,
+ "num_granted_bundle_quests": 0,
+ "max_level_bonus": 0,
+ "challenge_bundle_schedule_id": ChallengeBundle.challenge_bundle_schedule_id,
+ "num_progress_quests_completed": 0,
+ "xp": 0,
+ "favorite": false
+ },
+ "quantity": 1
+ }
+
+ QuestsToAdd = QuestsToAdd.concat(ChallengeBundle.grantedquestinstanceids);
+ profile.items[ChallengeBundleID].attributes.num_granted_bundle_quests = ChallengeBundle.grantedquestinstanceids.length;
+
+ if (config.bCompletedSeasonalQuests == true) {
+ profile.items[ChallengeBundleID].attributes.num_quests_completed = ChallengeBundle.grantedquestinstanceids.length;
+ profile.items[ChallengeBundleID].attributes.num_progress_quests_completed = ChallengeBundle.grantedquestinstanceids.length;
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ChallengeBundleID,
+ "item": profile.items[ChallengeBundleID]
+ })
+
+ StatChanged = true;
+ }
+ }
+ }
+
+ function ParseQuest(QuestID) {
+ var Quest = SeasonQuestIDS.Quests[QuestID];
+
+ if (profile.items.hasOwnProperty(QuestID)) {
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": QuestID
+ })
+ }
+
+ profile.items[QuestID] = {
+ "templateId": Quest.templateId,
+ "attributes": {
+ "creation_time": new Date().toISOString(),
+ "level": -1,
+ "item_seen": true,
+ "sent_new_notification": true,
+ "challenge_bundle_id": Quest.challenge_bundle_id || "",
+ "xp_reward_scalar": 1,
+ "quest_state": "Active",
+ "last_state_change_time": new Date().toISOString(),
+ "max_level_bonus": 0,
+ "xp": 0,
+ "favorite": false
+ },
+ "quantity": 1
+ }
+
+ if (config.bCompletedSeasonalQuests == true) {
+ profile.items[QuestID].attributes.quest_state = "Claimed";
+
+ if (Quest.hasOwnProperty("rewards")) {
+ for (var reward in Quest.rewards) {
+ if (Quest.rewards[reward].templateId.startsWith("Quest:")) {
+ for (var Q in SeasonQuestIDS.Quests) {
+ if (SeasonQuestIDS.Quests[Q].templateId == Quest.rewards[reward].templateId) {
+ SeasonQuestIDS.ChallengeBundles[SeasonQuestIDS.Quests[Q].challenge_bundle_id].grantedquestinstanceids.push(Q)
+ ParseQuest(Q)
+ }
+ }
+ }
+ }
+ }
+ }
+
+ for (var i in Quest.objectives) {
+ if (config.bCompletedSeasonalQuests == true) {
+ profile.items[QuestID].attributes[`completion_${i}`] = Quest.objectives[i];
+ } else {
+ profile.items[QuestID].attributes[`completion_${i}`] = 0;
+ }
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": QuestID,
+ "item": profile.items[QuestID]
+ })
+
+ StatChanged = true;
+ }
+
+ for (var Quest in QuestsToAdd) {
+ ParseQuest(QuestsToAdd[Quest])
+ }
+
+
+ if (StatChanged == true) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ // this doesn't work properly on version v12.20 and above but whatever
+ if (QueryRevision != BaseRevision) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ //multiUpdate: MultiUpdate,
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+ let profile = profiles.profiles[req.query.profileId];
+
+ // do not change any of these or you will end up breaking it
+ var ApplyProfileChanges = [];
+ var Notifications = [];
+ var BaseRevision = profile.rvn || 0;
+ var QueryRevision = req.query.rvn || -1;
+ var StatChanged = false;
+
+ var DailyQuestPath = req.query.profileId == "profile0" == "./../responses/quests.json";
+ var DailyQuestIDS = JSON.parse(JSON.stringify(require(DailyQuestPath))).Daily;
+
+ const NewQuestID = functions.MakeID();
+ var randomNumber = Math.floor(Math.random() * DailyQuestIDS.length);
+
+ for (var key in profile.items) {
+ while (DailyQuestIDS[randomNumber].templateId.toLowerCase() == profile.items[key].templateId.toLowerCase()) {
+ randomNumber = Math.floor(Math.random() * DailyQuestIDS.length);
+ }
+ }
+
+ if (req.body.questId && profile.stats.attributes.quest_manager.dailyQuestRerolls >= 1) {
+ profile.stats.attributes.quest_manager.dailyQuestRerolls -= 1;
+
+ delete profile.items[req.body.questId];
+
+ profile.items[NewQuestID] = {
+ "templateId": DailyQuestIDS[randomNumber].templateId,
+ "attributes": {
+ "creation_time": new Date().toISOString(),
+ "level": -1,
+ "item_seen": false,
+ "sent_new_notification": false,
+ "xp_reward_scalar": 1,
+ "quest_state": "Active",
+ "last_state_change_time": new Date().toISOString(),
+ "max_level_bonus": 0,
+ "xp": 0,
+ "favorite": false
+ },
+ "quantity": 1
+ };
+
+ for (var i in DailyQuestIDS[randomNumber].objectives) {
+ profile.items[NewQuestID].attributes[`completion_${DailyQuestIDS[randomNumber].objectives[i].toLowerCase()}`] = 0
+ }
+
+ StatChanged = true;
+ }
+
+ if (StatChanged == true) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "quest_manager",
+ "value": profile.stats.attributes.quest_manager
+ })
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": NewQuestID,
+ "item": profile.items[NewQuestID]
+ })
+
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": req.body.questId
+ })
+
+ Notifications.push({
+ "type": "dailyQuestReroll",
+ "primary": true,
+ "newQuestId": DailyQuestIDS[randomNumber].templateId
+ })
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ // this doesn't work properly on version v12.20 and above but whatever
+ if (QueryRevision != BaseRevision) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ "profileRevision": profile.rvn || 0,
+ "profileId": req.query.profileId || "athena",
+ "profileChangesBaseRevision": BaseRevision,
+ "profileChanges": ApplyProfileChanges,
+ "notifications": Notifications,
+ "profileCommandRevision": profile.commandRevision || 0,
+ "serverTime": new Date().toISOString(),
+ "responseVersion": 1
+ })
+});
+
+// NIGGER CODE
+app.post("/fortnite/api/game/v2/profile/*/client/MarkNewQuestNotificationSent", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+ let profile = profiles.profiles[req.query.profileId];
+
+ // do not change any of these or you will end up breaking it
+ var ApplyProfileChanges = [];
+ var Notifications = [];
+ var BaseRevision = profile.rvn || 0;
+ var QueryRevision = req.query.rvn || -1;
+ var StatChanged = false;
+
+ if (req.body.itemIds) {
+ for (var i in req.body.itemIds) {
+ var id = req.body.itemIds[i];
+
+ profile.items[id].attributes.sent_new_notification = true
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": id,
+ "attributeName": "sent_new_notification",
+ "attributeValue": true
+ })
+ }
+
+ StatChanged = true;
+ }
+
+ if (StatChanged == true) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ // erm what the sigma
+ if (QueryRevision != BaseRevision) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/AthenaPinQuest", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+ let profile = profiles.profiles[req.query.profileId];
+
+ // do not change any of these or you will end up breaking it
+ var ApplyProfileChanges = [];
+ var BaseRevision = profile.rvn || 0;
+ var QueryRevision = req.query.rvn || -1;
+ var StatChanged = false;
+
+ if (profile.stats.attributes.hasOwnProperty("pinned_quest")) {
+ profile.stats.attributes.pinned_quest = req.body.pinnedQuest || "";
+ StatChanged = true;
+ }
+
+ if (StatChanged == true) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "pinned_quest",
+ "value": profile.stats.attributes.pinned_quest
+ })
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ // this doesn't work properly on version v12.20 and above but whatever
+ if (QueryRevision != BaseRevision) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/GiftCatalogEntry", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ if (req.query.profileId != "common_core") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `GiftCatalogEntry is not valid on ${req.query.profileId} profile`,
+ ["GiftCatalogEntry",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ const memory = functions.GetVersionInfo(req);
+
+ let Notifications = [];
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+ let validGiftBoxes = [
+ "GiftBox:gb_default",
+ "GiftBox:gb_giftwrap1",
+ "GiftBox:gb_giftwrap2",
+ "GiftBox:gb_giftwrap3"
+ ];
+
+ let missingFields = checkFields(["offerId","receiverAccountIds","giftWrapTemplateId"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.offerId != "string") return ValidationError("offerId", "a string", res);
+ if (!Array.isArray(req.body.receiverAccountIds)) return ValidationError("receiverAccountIds", "an array", res);
+ if (typeof req.body.giftWrapTemplateId != "string") return ValidationError("giftWrapTemplateId", "a string", res);
+ if (typeof req.body.personalMessage != "string") return ValidationError("personalMessage", "a string", res);
+
+ if (req.body.personalMessage.length > 100) return error.createError(
+ "errors.com.epicgames.string.length_check",
+ `The personalMessage you provided is longer than 100 characters, please make sure your personal message is less than 100 characters long and try again.`,
+ undefined, 16027, undefined, 400, res
+ );
+
+ if (!validGiftBoxes.includes(req.body.giftWrapTemplateId)) return error.createError(
+ "errors.com.epicgames.giftbox.invalid",
+ `The giftbox you provided is invalid, please provide a valid giftbox and try again.`,
+ undefined, 16027, undefined, 400, res
+ );
+
+ if (req.body.receiverAccountIds.length < 1 || req.body.receiverAccountIds.length > 5) return error.createError(
+ "errors.com.epicgames.item.quantity.range_check",
+ `You need to atleast gift to 1 person and can not gift to more than 5 people.`,
+ undefined, 16027, undefined, 400, res
+ );
+
+ if (checkIfDuplicateExists(req.body.receiverAccountIds)) return error.createError(
+ "errors.com.epicgames.array.duplicate_found",
+ `There are duplicate accountIds in receiverAccountIds, please remove the duplicates and try again.`,
+ undefined, 16027, undefined, 400, res
+ );
+
+ let sender = await Friends.findOne({ accountId: req.user.accountId }).lean();
+
+ for (let receiverId of req.body.receiverAccountIds) {
+ if (typeof receiverId != "string") return error.createError(
+ "errors.com.epicgames.array.invalid_string",
+ `There is a non-string object inside receiverAccountIds, please provide a valid value and try again.`,
+ undefined, 16027, undefined, 400, res
+ );
+
+ if (!sender.list.accepted.find(i => i.accountId == receiverId) && receiverId != req.user.accountId) return error.createError(
+ "errors.com.epicgames.friends.no_relationship",
+ `User ${req.user.accountId} is not friends with ${receiverId}`,
+ [req.user.accountId,receiverId], 28004, undefined, 403, res
+ );
+ }
+
+ if (!profile.items) profile.items = {};
+
+ let findOfferId = functions.getOfferID(req.body.offerId);
+ if (!findOfferId) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Offer ID (id: '${req.body.offerId}') not found`,
+ [req.body.offerId], 16027, undefined, 400, res
+ );
+
+ switch (true) {
+ case /^BR(Daily|Weekly)Storefront$/.test(findOfferId.name):
+ if (findOfferId.offerId.prices[0].currencyType.toLowerCase() == "mtxcurrency") {
+ let paid = false;
+ let price = (findOfferId.offerId.prices[0].finalPrice) * req.body.receiverAccountIds.length;
+
+ for (let key in profile.items) {
+ if (!profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) continue;
+
+ let currencyPlatform = profile.items[key].attributes.platform;
+ if ((currencyPlatform.toLowerCase() != profile.stats.attributes.current_mtx_platform.toLowerCase()) && (currencyPlatform.toLowerCase() != "shared")) continue;
+
+ if (profile.items[key].quantity < price) return error.createError(
+ "errors.com.epicgames.currency.mtx.insufficient",
+ `You can not afford this item (${price}), you only have ${profile.items[key].quantity}.`,
+ [`${price}`,`${profile.items[key].quantity}`], 1040, undefined, 400, res
+ );
+
+ profile.items[key].quantity -= price;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemQuantityChanged",
+ "itemId": key,
+ "quantity": profile.items[key].quantity
+ });
+
+ paid = true;
+
+ break;
+ }
+
+ if (!paid && price > 0) return error.createError(
+ "errors.com.epicgames.currency.mtx.insufficient",
+ `You can not afford this item.`,
+ [], 1040, undefined, 400, res
+ );
+ }
+
+ for (let receiverId of req.body.receiverAccountIds) {
+ const receiverProfiles = await Profile.findOne({ accountId: receiverId });
+ let athena = receiverProfiles.profiles["athena"];
+ let common_core = receiverProfiles.profiles["common_core"];
+
+ if (!athena.items) athena.items = {};
+
+ if (!common_core.stats.attributes.allowed_to_receive_gifts) return error.createError(
+ "errors.com.epicgames.user.gift_disabled",
+ `User ${receiverId} has disabled receiving gifts.`,
+ [receiverId], 28004, undefined, 403, res
+ );
+
+ for (let itemGrant of findOfferId.offerId.itemGrants) {
+ for (let itemId in athena.items) {
+ if (itemGrant.templateId.toLowerCase() == athena.items[itemId].templateId.toLowerCase()) return error.createError(
+ "errors.com.epicgames.modules.gamesubcatalog.purchase_not_allowed",
+ `User ${receiverId} already owns this item.`,
+ [receiverId], 28004, undefined, 403, res
+ );
+ }
+ }
+ }
+
+ for (let receiverId of req.body.receiverAccountIds) {
+ const receiverProfiles = await Profile.findOne({ accountId: receiverId });
+ let athena = receiverProfiles.profiles["athena"];
+ let common_core = ((receiverId == req.user.accountId) ? profile : receiverProfiles.profiles["common_core"]);
+
+ let giftBoxItemID = functions.MakeID();
+ let giftBoxItem = {
+ "templateId": req.body.giftWrapTemplateId,
+ "attributes": {
+ "fromAccountId": req.user.accountId,
+ "lootList": [],
+ "params": {
+ "userMessage": req.body.personalMessage
+ },
+ "level": 1,
+ "giftedOn": new Date().toISOString()
+ },
+ "quantity": 1
+ };
+
+ if (!athena.items) athena.items = {};
+ if (!common_core.items) common_core.items = {};
+
+ for (let value of findOfferId.offerId.itemGrants) {
+ const ID = functions.MakeID();
+
+ const Item = {
+ "templateId": value.templateId,
+ "attributes": {
+ "item_seen": false,
+ "variants": [],
+ },
+ "quantity": 1
+ };
+
+ athena.items[ID] = Item;
+
+ giftBoxItem.attributes.lootList.push({
+ "itemType": Item.templateId,
+ "itemGuid": ID,
+ "itemProfile": "athena",
+ "quantity": 1
+ });
+ }
+
+ common_core.items[giftBoxItemID] = giftBoxItem;
+
+ if (receiverId == req.user.accountId) ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": giftBoxItemID,
+ "item": common_core.items[giftBoxItemID]
+ });
+
+ athena.rvn += 1;
+ athena.commandRevision += 1;
+ athena.updated = new Date().toISOString();
+
+ common_core.rvn += 1;
+ common_core.commandRevision += 1;
+ common_core.updated = new Date().toISOString();
+
+ await receiverProfiles.updateOne({ $set: { [`profiles.athena`]: athena, [`profiles.common_core`]: common_core } });
+
+ global.giftReceived[receiverId] = true;
+
+ functions.sendXmppMessageToId({
+ type: "com.epicgames.gift.received",
+ payload: {},
+ timestamp: new Date().toISOString()
+ }, receiverId);
+ }
+ break;
+ }
+
+ if (ApplyProfileChanges.length > 0 && !req.body.receiverAccountIds.includes(req.user.accountId)) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/RemoveGiftBox", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ if (req.query.profileId != "common_core" && req.query.profileId != "profile0") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `RemoveGiftBox is not valid on ${req.query.profileId} profile`,
+ ["RemoveGiftBox",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ const memory = functions.GetVersionInfo(req);
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ if (typeof req.body.giftBoxItemId == "string") {
+ if (!profile.items[req.body.giftBoxItemId]) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Item (id: '${req.body.giftBoxItemId}') not found`,
+ [req.body.giftBoxItemId], 16027, undefined, 400, res
+ );
+
+ if (!profile.items[req.body.giftBoxItemId].templateId.startsWith("GiftBox:")) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `The specified item id is not a giftbox.`,
+ [req.body.giftBoxItemId], 16027, undefined, 400, res
+ );
+
+ delete profile.items[req.body.giftBoxItemId];
+
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": req.body.giftBoxItemId
+ });
+ }
+
+ if (Array.isArray(req.body.giftBoxItemIds)) {
+ for (let giftBoxItemId of req.body.giftBoxItemIds) {
+ if (typeof giftBoxItemId != "string") continue;
+ if (!profile.items[giftBoxItemId]) continue;
+ if (!profile.items[giftBoxItemId].templateId.startsWith("GiftBox:")) continue;
+
+ delete profile.items[giftBoxItemId];
+
+ ApplyProfileChanges.push({
+ "changeType": "itemRemoved",
+ "itemId": giftBoxItemId
+ });
+ }
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/PurchaseCatalogEntry", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+ let athena = profiles.profiles["athena"];
+
+ if (req.query.profileId != "common_core" && req.query.profileId != "profile0") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `PurchaseCatalogEntry is not valid on ${req.query.profileId} profile`,
+ ["PurchaseCatalogEntry",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let MultiUpdate = [{
+ "profileRevision": athena.rvn || 0,
+ "profileId": "athena",
+ "profileChangesBaseRevision": athena.rvn || 0,
+ "profileChanges": [],
+ "profileCommandRevision": athena.commandRevision || 0,
+ }];
+
+ const memory = functions.GetVersionInfo(req);
+
+ let Notifications = [];
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ let missingFields = checkFields(["offerId"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.offerId != "string") return ValidationError("offerId", "a string", res);
+ if (typeof req.body.purchaseQuantity != "number") return ValidationError("purchaseQuantity", "a number", res);
+ if (req.body.purchaseQuantity < 1) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. 'purchaseQuantity' is less than 1.`,
+ ['purchaseQuantity'], 1040, undefined, 400, res
+ );
+
+ if (!profile.items) profile.items = {};
+ if (!athena.items) athena.items = {};
+
+ let findOfferId = functions.getOfferID(req.body.offerId);
+ if (!findOfferId) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Offer ID (id: '${req.body.offerId}') not found`,
+ [req.body.offerId], 16027, undefined, 400, res
+ );
+
+ if (config.EnableBattlepass === true) {
+ if (memory.season == config.BattlePassSeason) {
+ var season = `Season${config.BattlePassSeason}`; // Don't change it if you don't know what it is
+ var ItemExists = false;
+ let BattlePass = JSON.parse(fs.readFileSync(path.join(__dirname, "../responses/Athena/BattlePass/", `${season}.json`), "utf8"));
+ if (!BattlePass)
+ return error.createError("errors.com.epicgames.fortnite.id_invalid", `No Battle Pass for this season.`, [req.body.offerId], 16027, undefined, 400, res);
+ if (req.body.offerId == BattlePass.battlePassOfferId || req.body.offerId == BattlePass.battleBundleOfferId || req.body.offerId == BattlePass.tierOfferId) {
+ let offerId = req.body.offerId;
+ let purchaseQuantity = req.body.purchaseQuantity || 1;
+ let totalPrice = findOfferId.offerId.prices[0].finalPrice * purchaseQuantity;
+
+ if (req.body.offerId == BattlePass.battlePassOfferId || req.body.offerId == BattlePass.battleBundleOfferId || req.body.offerId == BattlePass.tierOfferId) {
+ if (findOfferId.offerId.prices[0].currencyType.toLowerCase() == "mtxcurrency") {
+ let paid = false;
+ for (let key in profile.items) {
+ if (!profile.items[key].templateId.toLowerCase().startsWith("currency:mtx"))
+ continue;
+ let currencyPlatform = profile.items[key].attributes.platform;
+ if ((currencyPlatform.toLowerCase() != profile.stats.attributes.current_mtx_platform.toLowerCase()) && (currencyPlatform.toLowerCase() != "shared"))
+ continue;
+ if (profile.items[key].quantity < totalPrice)
+ return error.createError("errors.com.epicgames.currency.mtx.insufficient", `You cannot afford this item (${totalPrice}), you only have ${profile.items[key].quantity}.`, [`${totalPrice}`, `${profile.items[key].quantity}`], 1040, undefined, 400, res);
+
+ profile.items[key].quantity -= totalPrice;
+ ApplyProfileChanges.push({
+ "changeType": "itemQuantityChanged",
+ "itemId": key,
+ "quantity": profile.items[key].quantity
+ });
+ paid = true;
+ break;
+ }
+ if (!paid && totalPrice > 0)
+ return error.createError("errors.com.epicgames.currency.mtx.insufficient", `You cannot afford this item (${totalPrice}).`, [`${totalPrice}`], 1040, undefined, 400, res);
+ }
+ }
+ if (BattlePass.battlePassOfferId == offerId || BattlePass.battleBundleOfferId == offerId) {
+ var lootList = [];
+ var EndingTier = athena.stats.attributes.book_level;
+ athena.stats.attributes.book_purchased = true;
+ if (BattlePass.battleBundleOfferId == offerId) {
+ athena.stats.attributes.book_level += 25;
+ if (athena.stats.attributes.book_level > 100)
+ athena.stats.attributes.book_level = 100;
+ EndingTier = athena.stats.attributes.book_level;
+ }
+ for (var i = 0; i < EndingTier; i++) {
+ var FreeTier = BattlePass.freeRewards[i] || {};
+ var PaidTier = BattlePass.paidRewards[i] || {};
+ for (var item in FreeTier) {
+ if (item.toLowerCase() == "token:athenaseasonxpboost") {
+ athena.stats.attributes.season_match_boost += FreeTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_match_boost",
+ "value": athena.stats.attributes.season_match_boost
+ });
+ }
+ if (item.toLowerCase() == "token:athenaseasonfriendxpboost") {
+ athena.stats.attributes.season_friend_match_boost += FreeTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_friend_match_boost",
+ "value": athena.stats.attributes.season_friend_match_boost
+ });
+ }
+ if (item.toLowerCase().startsWith("currency:mtx")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) {
+ if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") {
+ profile.items[key].attributes.quantity += FreeTier[item];
+ break;
+ }
+ }
+ }
+ }
+ if (item.toLowerCase().startsWith("homebasebanner")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ profile.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": profile.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ var Item = { "templateId": item, "attributes": { "item_seen": false }, "quantity": 1 };
+ profile.items[ItemID] = Item;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ if (item.toLowerCase().startsWith("athena")) {
+ for (var key in athena.items) {
+ if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ athena.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": athena.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ const Item = { "templateId": item, "attributes": { "max_level_bonus": 0, "level": 1, "item_seen": false, "xp": 0, "variants": [], "favorite": false }, "quantity": FreeTier[item] };
+ athena.items[ItemID] = Item;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ lootList.push({
+ "itemType": item,
+ "itemGuid": item,
+ "quantity": FreeTier[item]
+ });
+ }
+ for (var item in PaidTier) {
+ if (item.toLowerCase() == "token:athenaseasonxpboost") {
+ athena.stats.attributes.season_match_boost += PaidTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_match_boost",
+ "value": athena.stats.attributes.season_match_boost
+ });
+ }
+ if (item.toLowerCase() == "token:athenaseasonfriendxpboost") {
+ athena.stats.attributes.season_friend_match_boost += PaidTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_friend_match_boost",
+ "value": athena.stats.attributes.season_friend_match_boost
+ });
+ }
+ if (item.toLowerCase().startsWith("currency:mtx")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) {
+ if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") {
+ profile.items[key].quantity += PaidTier[item];
+ break;
+ }
+ }
+ }
+ }
+ if (item.toLowerCase().startsWith("homebasebanner")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ profile.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": profile.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ var Item = { "templateId": item, "attributes": { "item_seen": false }, "quantity": 1 };
+ profile.items[ItemID] = Item;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ if (item.toLowerCase().startsWith("athena")) {
+ for (var key in athena.items) {
+ if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ athena.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": athena.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ const Item = { "templateId": item, "attributes": { "max_level_bonus": 0, "level": 1, "item_seen": false, "xp": 0, "variants": [], "favorite": false }, "quantity": PaidTier[item] };
+ athena.items[ItemID] = Item;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ lootList.push({
+ "itemType": item,
+ "itemGuid": item,
+ "quantity": PaidTier[item]
+ });
+ }
+ }
+ var GiftBoxID = functions.MakeID();
+ var GiftBox = { "templateId": 8 <= 4 ? "GiftBox:gb_battlepass" : "GiftBox:gb_battlepasspurchased", "attributes": { "max_level_bonus": 0, "fromAccountId": "", "lootList": lootList } };
+ if (8 > 2) {
+ profile.items[GiftBoxID] = GiftBox;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": GiftBoxID,
+ "item": GiftBox
+ });
+ }
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "book_purchased",
+ "value": athena.stats.attributes.book_purchased
+ });
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "book_level",
+ "value": athena.stats.attributes.book_level
+ });
+ }
+ if (BattlePass.tierOfferId == offerId) {
+ var lootList = [];
+ var StartingTier = athena.stats.attributes.book_level;
+ var EndingTier;
+ athena.stats.attributes.book_level += req.body.purchaseQuantity || 1;
+ EndingTier = athena.stats.attributes.book_level;
+ for (let i = StartingTier; i < EndingTier; i++) {
+ var FreeTier = BattlePass.freeRewards[i] || {};
+ var PaidTier = BattlePass.paidRewards[i] || {};
+ for (var item in FreeTier) {
+ if (item.toLowerCase() == "token:athenaseasonxpboost") {
+ athena.stats.attributes.season_match_boost += FreeTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_match_boost",
+ "value": athena.stats.attributes.season_match_boost
+ });
+ }
+ if (item.toLowerCase() == "token:athenaseasonfriendxpboost") {
+ athena.stats.attributes.season_friend_match_boost += FreeTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_friend_match_boost",
+ "value": athena.stats.attributes.season_friend_match_boost
+ });
+ }
+ if (item.toLowerCase().startsWith("currency:mtx")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) {
+ if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") {
+ profile.items[key].quantity += FreeTier[item];
+ break;
+ }
+ }
+ }
+ }
+ if (item.toLowerCase().startsWith("homebasebanner")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ profile.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": profile.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ var Item = { "templateId": item, "attributes": { "item_seen": false }, "quantity": 1 };
+ profile.items[ItemID] = Item;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ if (item.toLowerCase().startsWith("athena")) {
+ for (var key in athena.items) {
+ if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ athena.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": athena.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ const Item = { "templateId": item, "attributes": { "max_level_bonus": 0, "level": 1, "item_seen": false, "xp": 0, "variants": [], "favorite": false }, "quantity": FreeTier[item] };
+ athena.items[ItemID] = Item;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ lootList.push({
+ "itemType": item,
+ "itemGuid": item,
+ "quantity": FreeTier[item]
+ });
+ }
+ for (var item in PaidTier) {
+ if (item.toLowerCase() == "token:athenaseasonxpboost") {
+ athena.stats.attributes.season_match_boost += PaidTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_match_boost",
+ "value": athena.stats.attributes.season_match_boost
+ });
+ }
+ if (item.toLowerCase() == "token:athenaseasonfriendxpboost") {
+ athena.stats.attributes.season_friend_match_boost += PaidTier[item];
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "season_friend_match_boost",
+ "value": athena.stats.attributes.season_friend_match_boost
+ });
+ }
+ if (item.toLowerCase().startsWith("currency:mtx")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) {
+ if (profile.items[key].attributes.platform.toLowerCase() == profile.stats.attributes.current_mtx_platform.toLowerCase() || profile.items[key].attributes.platform.toLowerCase() == "shared") {
+ profile.items[key].quantity += PaidTier[item];
+ break;
+ }
+ }
+ }
+ }
+ if (item.toLowerCase().startsWith("homebasebanner")) {
+ for (var key in profile.items) {
+ if (profile.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ profile.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": profile.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ var Item = { "templateId": item, "attributes": { "item_seen": false }, "quantity": 1 };
+ profile.items[ItemID] = Item;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ if (item.toLowerCase().startsWith("athena")) {
+ for (var key in athena.items) {
+ if (athena.items[key].templateId.toLowerCase() == item.toLowerCase()) {
+ athena.items[key].attributes.item_seen = false;
+ ItemExists = true;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": key,
+ "attributeName": "item_seen",
+ "attributeValue": athena.items[key].attributes.item_seen
+ });
+ }
+ }
+ if (ItemExists == false) {
+ var ItemID = functions.MakeID();
+ const Item = { "templateId": item, "attributes": { "max_level_bonus": 0, "level": 1, "item_seen": false, "xp": 0, "variants": [], "favorite": false }, "quantity": PaidTier[item] };
+ athena.items[ItemID] = Item;
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ItemID,
+ "item": Item
+ });
+ }
+ ItemExists = false;
+ }
+ lootList.push({
+ "itemType": item,
+ "itemGuid": item,
+ "quantity": PaidTier[item]
+ });
+ }
+ }
+ var GiftBoxID = functions.MakeID();
+ var GiftBox = { "templateId": "GiftBox:gb_battlepass", "attributes": { "max_level_bonus": 0, "fromAccountId": "", "lootList": lootList } };
+ if (8 > 2) {
+ profile.items[GiftBoxID] = GiftBox;
+ ApplyProfileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": GiftBoxID,
+ "item": GiftBox
+ });
+ }
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "statModified",
+ "name": "book_level",
+ "value": athena.stats.attributes.book_level
+ });
+ }
+ if (MultiUpdate[0].profileChanges.length > 0) {
+ athena.rvn += 1;
+ athena.commandRevision += 1;
+ athena.updated = new Date().toISOString();
+ MultiUpdate[0].profileRevision = athena.rvn;
+ MultiUpdate[0].profileCommandRevision = athena.commandRevision;
+ }
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+ await profiles?.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile, [`profiles.athena`]: athena } });
+ }
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ multiUpdate: MultiUpdate,
+ responseVersion: 1
+ });
+ if (ApplyProfileChanges.length > 0) {
+ await profiles?.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile, [`profiles.athena`]: athena } });
+ }
+ return;
+ }
+ }
+}
+
+ switch (true) {
+ case /^BR(Daily|Weekly|Season)Storefront$/.test(findOfferId.name):
+ Notifications.push({
+ "type": "CatalogPurchase",
+ "primary": true,
+ "lootResult": {
+ "items": []
+ }
+ });
+
+ for (let value of findOfferId.offerId.itemGrants) {
+ const ID = functions.MakeID();
+
+ for (let itemId in athena.items) {
+ if (value.templateId.toLowerCase() == athena.items[itemId].templateId.toLowerCase()) return error.createError(
+ "errors.com.epicgames.offer.already_owned",
+ `You have already bought this item before.`,
+ undefined, 1040, undefined, 400, res
+ );
+ }
+
+ const Item = {
+ "templateId": value.templateId,
+ "attributes": {
+ "item_seen": false,
+ "variants": [],
+ },
+ "quantity": 1
+ };
+
+ athena.items[ID] = Item;
+
+ MultiUpdate[0].profileChanges.push({
+ "changeType": "itemAdded",
+ "itemId": ID,
+ "item": athena.items[ID]
+ });
+
+ Notifications[0].lootResult.items.push({
+ "itemType": Item.templateId,
+ "itemGuid": ID,
+ "itemProfile": "athena",
+ "quantity": 1
+ });
+ }
+
+ if (findOfferId.offerId.prices[0].currencyType.toLowerCase() == "mtxcurrency") {
+ let paid = false;
+
+ for (let key in profile.items) {
+ if (!profile.items[key].templateId.toLowerCase().startsWith("currency:mtx")) continue;
+
+ let currencyPlatform = profile.items[key].attributes.platform;
+ if ((currencyPlatform.toLowerCase() != profile.stats.attributes.current_mtx_platform.toLowerCase()) && (currencyPlatform.toLowerCase() != "shared")) continue;
+
+ if (profile.items[key].quantity < findOfferId.offerId.prices[0].finalPrice) return error.createError(
+ "errors.com.epicgames.currency.mtx.insufficient",
+ `You can not afford this item (${findOfferId.offerId.prices[0].finalPrice}), you only have ${profile.items[key].quantity}.`,
+ [`${findOfferId.offerId.prices[0].finalPrice}`,`${profile.items[key].quantity}`], 1040, undefined, 400, res
+ );
+
+ profile.items[key].quantity -= findOfferId.offerId.prices[0].finalPrice;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemQuantityChanged",
+ "itemId": key,
+ "quantity": profile.items[key].quantity
+ });
+
+ paid = true;
+
+ break;
+ }
+
+ if (!paid && findOfferId.offerId.prices[0].finalPrice > 0) return error.createError(
+ "errors.com.epicgames.currency.mtx.insufficient",
+ `You can not afford this item (${findOfferId.offerId.prices[0].finalPrice}).`,
+ [`${findOfferId.offerId.prices[0].finalPrice}`], 1040, undefined, 400, res
+ );
+ }
+
+ if (MultiUpdate[0].profileChanges.length > 0) {
+ athena.rvn += 1;
+ athena.commandRevision += 1;
+ athena.updated = new Date().toISOString();
+
+ MultiUpdate[0].profileRevision = athena.rvn;
+ MultiUpdate[0].profileCommandRevision = athena.commandRevision;
+ }
+ break;
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile, [`profiles.athena`]: athena } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ notifications: Notifications,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ multiUpdate: MultiUpdate,
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/MarkItemSeen", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ let missingFields = checkFields(["itemIds"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (!Array.isArray(req.body.itemIds)) return ValidationError("itemIds", "an array", res);
+
+ if (!profile.items) profile.items = {};
+
+ for (let i in req.body.itemIds) {
+ if (!profile.items[req.body.itemIds[i]]) continue;
+
+ profile.items[req.body.itemIds[i]].attributes.item_seen = true;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.itemIds[i],
+ "attributeName": "item_seen",
+ "attributeValue": true
+ });
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/SetItemFavoriteStatusBatch", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `SetItemFavoriteStatusBatch is not valid on ${req.query.profileId} profile`,
+ ["SetItemFavoriteStatusBatch",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ let missingFields = checkFields(["itemIds","itemFavStatus"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (!Array.isArray(req.body.itemIds)) return ValidationError("itemIds", "an array", res);
+ if (!Array.isArray(req.body.itemFavStatus)) return ValidationError("itemFavStatus", "an array", res);
+
+ if (!profile.items) profile.items = {};
+
+ for (let i in req.body.itemIds) {
+ if (!profile.items[req.body.itemIds[i]]) continue;
+ if (typeof req.body.itemFavStatus[i] != "boolean") continue;
+
+ profile.items[req.body.itemIds[i]].attributes.favorite = req.body.itemFavStatus[i];
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.itemIds[i],
+ "attributeName": "favorite",
+ "attributeValue": profile.items[req.body.itemIds[i]].attributes.favorite
+ });
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/SetBattleRoyaleBanner", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `SetBattleRoyaleBanner is not valid on ${req.query.profileId} profile`,
+ ["SetBattleRoyaleBanner",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ let missingFields = checkFields(["homebaseBannerIconId","homebaseBannerColorId"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.homebaseBannerIconId != "string") return ValidationError("homebaseBannerIconId", "a string", res);
+ if (typeof req.body.homebaseBannerColorId != "string") return ValidationError("homebaseBannerColorId", "a string", res);
+
+ let bannerProfileId = memory.build < 3.5 ? "profile0" : "common_core";
+
+ let HomebaseBannerIconID = "";
+ let HomebaseBannerColorID = "";
+
+ if (!profiles.profiles[bannerProfileId].items) profiles.profiles[bannerProfileId].items = {};
+
+ for (let itemId in profiles.profiles[bannerProfileId].items) {
+ let templateId = profiles.profiles[bannerProfileId].items[itemId].templateId;
+
+ if (templateId.toLowerCase() == `HomebaseBannerIcon:${req.body.homebaseBannerIconId}`.toLowerCase()) { HomebaseBannerIconID = itemId; continue; }
+ if (templateId.toLowerCase() == `HomebaseBannerColor:${req.body.homebaseBannerColorId}`.toLowerCase()) { HomebaseBannerColorID = itemId; continue; }
+
+ if (HomebaseBannerIconID && HomebaseBannerColorID) break;
+ }
+
+ if (!HomebaseBannerIconID) return error.createError(
+ "errors.com.epicgames.fortnite.item_not_found",
+ `Banner template 'HomebaseBannerIcon:${req.body.homebaseBannerIconId}' not found in profile`,
+ [`HomebaseBannerIcon:${req.body.homebaseBannerIconId}`], 16006, undefined, 400, res
+ );
+
+ if (!HomebaseBannerColorID) return error.createError(
+ "errors.com.epicgames.fortnite.item_not_found",
+ `Banner template 'HomebaseBannerColor:${req.body.homebaseBannerColorId}' not found in profile`,
+ [`HomebaseBannerColor:${req.body.homebaseBannerColorId}`], 16006, undefined, 400, res
+ );
+
+ if (!profile.items) profile.items = {};
+
+ let activeLoadoutId = profile.stats.attributes.loadouts[profile.stats.attributes.active_loadout_index];
+
+ profile.stats.attributes.banner_icon = req.body.homebaseBannerIconId;
+ profile.stats.attributes.banner_color = req.body.homebaseBannerColorId;
+
+ profile.items[activeLoadoutId].attributes.banner_icon_template = req.body.homebaseBannerIconId;
+ profile.items[activeLoadoutId].attributes.banner_color_template = req.body.homebaseBannerColorId;
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "banner_icon",
+ "value": profile.stats.attributes.banner_icon
+ });
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "banner_color",
+ "value": profile.stats.attributes.banner_color
+ });
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/EquipBattleRoyaleCustomization", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `EquipBattleRoyaleCustomization is not valid on ${req.query.profileId} profile`,
+ ["EquipBattleRoyaleCustomization",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+ let specialCosmetics = [
+ "AthenaCharacter:cid_random",
+ "AthenaBackpack:bid_random",
+ "AthenaPickaxe:pickaxe_random",
+ "AthenaGlider:glider_random",
+ "AthenaSkyDiveContrail:trails_random",
+ "AthenaItemWrap:wrap_random",
+ "AthenaMusicPack:musicpack_random",
+ "AthenaLoadingScreen:lsid_random"
+ ];
+
+ let missingFields = checkFields(["slotName"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.itemToSlot != "string") return ValidationError("itemToSlot", "a string", res);
+ if (typeof req.body.slotName != "string") return ValidationError("slotName", "a string", res);
+
+ if (!profile.items) profile.items = {};
+
+ if (!profile.items[req.body.itemToSlot] && req.body.itemToSlot) {
+ let item = req.body.itemToSlot;
+
+ if (!specialCosmetics.includes(item)) {
+ return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Item (id: '${req.body.itemToSlot}') not found`,
+ [req.body.itemToSlot], 16027, undefined, 400, res
+ );
+ } else {
+ if (!item.startsWith(`Athena${req.body.slotName}:`)) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Cannot slot item of type ${item.split(":")[0]} in slot of category ${req.body.slotName}`,
+ [item.split(":")[0],req.body.slotName], 16027, undefined, 400, res
+ );
+ }
+ }
+
+ if (profile.items[req.body.itemToSlot]) {
+ if (!profile.items[req.body.itemToSlot].templateId.startsWith(`Athena${req.body.slotName}:`)) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Cannot slot item of type ${profile.items[req.body.itemToSlot].templateId.split(":")[0]} in slot of category ${req.body.slotName}`,
+ [profile.items[req.body.itemToSlot].templateId.split(":")[0],req.body.slotName], 16027, undefined, 400, res
+ );
+
+ let Variants = req.body.variantUpdates;
+
+ if (Array.isArray(Variants)) {
+ for (let i in Variants) {
+ if (typeof Variants[i] != "object") continue;
+ if (!Variants[i].channel) continue;
+ if (!Variants[i].active) continue;
+
+ let index = profile.items[req.body.itemToSlot].attributes.variants.findIndex(x => x.channel == Variants[i].channel);
+
+ if (index == -1) continue;
+ if (!profile.items[req.body.itemToSlot].attributes.variants[index].owned.includes(Variants[i].active)) continue;
+
+ profile.items[req.body.itemToSlot].attributes.variants[index].active = Variants[i].active;
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.itemToSlot,
+ "attributeName": "variants",
+ "attributeValue": profile.items[req.body.itemToSlot].attributes.variants
+ });
+ }
+ }
+
+ let slotNames = ["Character","Backpack","Pickaxe","Glider","SkyDiveContrail","MusicPack","LoadingScreen"];
+
+ let activeLoadoutId = profile.stats.attributes.loadouts[profile.stats.attributes.active_loadout_index];
+ let templateId = profile.items[req.body.itemToSlot] ? profile.items[req.body.itemToSlot].templateId : req.body.itemToSlot;
+
+ switch (req.body.slotName) {
+ case "Dance":
+ if (!profile.items[activeLoadoutId].attributes.locker_slots_data.slots[req.body.slotName]) break;
+
+ if (typeof req.body.indexWithinSlot != "number") return ValidationError("indexWithinSlot", "a number", res);
+
+ if (req.body.indexWithinSlot >= 0 && req.body.indexWithinSlot <= 5) {
+ profile.stats.attributes.favorite_dance[req.body.indexWithinSlot] = req.body.itemToSlot;
+ profile.items[activeLoadoutId].attributes.locker_slots_data.slots.Dance.items[req.body.indexWithinSlot] = templateId;
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "favorite_dance",
+ "value": profile.stats.attributes["favorite_dance"]
+ });
+ }
+ break;
+
+ case "ItemWrap":
+ if (!profile.items[activeLoadoutId].attributes.locker_slots_data.slots[req.body.slotName]) break;
+
+ if (typeof req.body.indexWithinSlot != "number") return ValidationError("indexWithinSlot", "a number", res);
+
+ switch (true) {
+ case req.body.indexWithinSlot >= 0 && req.body.indexWithinSlot <= 7:
+ profile.stats.attributes.favorite_itemwraps[req.body.indexWithinSlot] = req.body.itemToSlot;
+ profile.items[activeLoadoutId].attributes.locker_slots_data.slots.ItemWrap.items[req.body.indexWithinSlot] = templateId;
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "favorite_itemwraps",
+ "value": profile.stats.attributes["favorite_itemwraps"]
+ });
+ break;
+
+ case req.body.indexWithinSlot == -1:
+ for (let i = 0; i < 7; i++) {
+ profile.stats.attributes.favorite_itemwraps[i] = req.body.itemToSlot;
+ profile.items[activeLoadoutId].attributes.locker_slots_data.slots.ItemWrap.items[i] = templateId;
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": "favorite_itemwraps",
+ "value": profile.stats.attributes["favorite_itemwraps"]
+ });
+ break;
+ }
+ break;
+
+ default:
+ if (!slotNames.includes(req.body.slotName)) break;
+ if (!profile.items[activeLoadoutId].attributes.locker_slots_data.slots[req.body.slotName]) break;
+
+ if (req.body.slotName == "Pickaxe" || req.body.slotName == "Glider") {
+ if (!req.body.itemToSlot) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `${req.body.slotName} can not be empty.`,
+ [req.body.slotName], 16027, undefined, 400, res
+ );
+ }
+
+ profile.stats.attributes[(`favorite_${req.body.slotName}`).toLowerCase()] = req.body.itemToSlot;
+ profile.items[activeLoadoutId].attributes.locker_slots_data.slots[req.body.slotName].items = [templateId];
+
+ ApplyProfileChanges.push({
+ "changeType": "statModified",
+ "name": (`favorite_${req.body.slotName}`).toLowerCase(),
+ "value": profile.stats.attributes[(`favorite_${req.body.slotName}`).toLowerCase()]
+ });
+ break;
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/SetCosmeticLockerBanner", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `SetCosmeticLockerBanner is not valid on ${req.query.profileId} profile`,
+ ["SetCosmeticLockerBanner",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ let missingFields = checkFields(["bannerIconTemplateName","bannerColorTemplateName","lockerItem"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.lockerItem != "string") return ValidationError("lockerItem", "a string", res);
+ if (typeof req.body.bannerIconTemplateName != "string") return ValidationError("bannerIconTemplateName", "a string", res);
+ if (typeof req.body.bannerColorTemplateName != "string") return ValidationError("bannerColorTemplateName", "a string", res);
+
+ if (!profile.items) profile.items = {};
+
+ if (!profile.items[req.body.lockerItem]) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Item (id: '${req.body.lockerItem}') not found`,
+ [req.body.lockerItem], 16027, undefined, 400, res
+ );
+
+ if (profile.items[req.body.lockerItem].templateId.toLowerCase() != "cosmeticlocker:cosmeticlocker_athena") return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `lockerItem id is not a cosmeticlocker`,
+ ["lockerItem"], 16027, undefined, 400, res
+ );
+
+ let bannerProfileId = "common_core";
+
+ let HomebaseBannerIconID = "";
+ let HomebaseBannerColorID = "";
+
+ if (!profiles.profiles[bannerProfileId].items) profiles.profiles[bannerProfileId].items = {};
+
+ for (let itemId in profiles.profiles[bannerProfileId].items) {
+ let templateId = profiles.profiles[bannerProfileId].items[itemId].templateId;
+
+ if (templateId.toLowerCase() == `HomebaseBannerIcon:${req.body.bannerIconTemplateName}`.toLowerCase()) { HomebaseBannerIconID = itemId; continue; }
+ if (templateId.toLowerCase() == `HomebaseBannerColor:${req.body.bannerColorTemplateName}`.toLowerCase()) { HomebaseBannerColorID = itemId; continue; }
+
+ if (HomebaseBannerIconID && HomebaseBannerColorID) break;
+ }
+
+ if (!HomebaseBannerIconID) return error.createError(
+ "errors.com.epicgames.fortnite.item_not_found",
+ `Banner template 'HomebaseBannerIcon:${req.body.bannerIconTemplateName}' not found in profile`,
+ [`HomebaseBannerIcon:${req.body.bannerIconTemplateName}`], 16006, undefined, 400, res
+ );
+
+ if (!HomebaseBannerColorID) return error.createError(
+ "errors.com.epicgames.fortnite.item_not_found",
+ `Banner template 'HomebaseBannerColor:${req.body.bannerColorTemplateName}' not found in profile`,
+ [`HomebaseBannerColor:${req.body.bannerColorTemplateName}`], 16006, undefined, 400, res
+ );
+
+ profile.items[req.body.lockerItem].attributes.banner_icon_template = req.body.bannerIconTemplateName;
+ profile.items[req.body.lockerItem].attributes.banner_color_template = req.body.bannerColorTemplateName;
+
+ profile.stats.attributes.banner_icon = req.body.bannerIconTemplateName;
+ profile.stats.attributes.banner_color = req.body.bannerColorTemplateName;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "banner_icon_template",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.banner_icon_template
+ });
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "banner_color_template",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.banner_color_template
+ });
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/SetCosmeticLockerSlot", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `SetCosmeticLockerSlot is not valid on ${req.query.profileId} profile`,
+ ["SetCosmeticLockerSlot",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+ let specialCosmetics = [
+ "AthenaCharacter:cid_random",
+ "AthenaBackpack:bid_random",
+ "AthenaPickaxe:pickaxe_random",
+ "AthenaGlider:glider_random",
+ "AthenaSkyDiveContrail:trails_random",
+ "AthenaItemWrap:wrap_random",
+ "AthenaMusicPack:musicpack_random",
+ "AthenaLoadingScreen:lsid_random"
+ ];
+
+ let missingFields = checkFields(["category","lockerItem"], req.body);
+
+ if (missingFields.fields.length > 0) return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. [${missingFields.fields.join(", ")}] field(s) is missing.`,
+ [`[${missingFields.fields.join(", ")}]`], 1040, undefined, 400, res
+ );
+
+ if (typeof req.body.itemToSlot != "string") return ValidationError("itemToSlot", "a string", res);
+ if (typeof req.body.slotIndex != "number") return ValidationError("slotIndex", "a number", res);
+ if (typeof req.body.lockerItem != "string") return ValidationError("lockerItem", "a string", res);
+ if (typeof req.body.category != "string") return ValidationError("category", "a string", res);
+
+ if (!profile.items) profile.items = {};
+
+ let itemToSlotID = "";
+
+ if (req.body.itemToSlot) {
+ for (let itemId in profile.items) {
+ if (profile.items[itemId].templateId.toLowerCase() == req.body.itemToSlot.toLowerCase()) { itemToSlotID = itemId; break; };
+ }
+ }
+
+ if (!profile.items[req.body.lockerItem]) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Item (id: '${req.body.lockerItem}') not found`,
+ [req.body.lockerItem], 16027, undefined, 400, res
+ );
+
+ if (profile.items[req.body.lockerItem].templateId.toLowerCase() != "cosmeticlocker:cosmeticlocker_athena") return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `lockerItem id is not a cosmeticlocker`,
+ ["lockerItem"], 16027, undefined, 400, res
+ );
+
+ if (!profile.items[itemToSlotID] && req.body.itemToSlot) {
+ let item = req.body.itemToSlot;
+
+ if (!specialCosmetics.includes(item)) {
+ return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Item (id: '${req.body.itemToSlot}') not found`,
+ [req.body.itemToSlot], 16027, undefined, 400, res
+ );
+ } else {
+ if (!item.startsWith(`Athena${req.body.category}:`)) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Cannot slot item of type ${item.split(":")[0]} in slot of category ${req.body.category}`,
+ [item.split(":")[0],req.body.category], 16027, undefined, 400, res
+ );
+ }
+ }
+
+ if (profile.items[itemToSlotID]) {
+ if (!profile.items[itemToSlotID].templateId.startsWith(`Athena${req.body.category}:`)) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Cannot slot item of type ${profile.items[itemToSlotID].templateId.split(":")[0]} in slot of category ${req.body.category}`,
+ [profile.items[itemToSlotID].templateId.split(":")[0],req.body.category], 16027, undefined, 400, res
+ );
+
+ let Variants = req.body.variantUpdates;
+
+ if (Array.isArray(Variants)) {
+ for (let i in Variants) {
+ if (typeof Variants[i] != "object") continue;
+ if (!Variants[i].channel) continue;
+ if (!Variants[i].active) continue;
+
+ let index = profile.items[itemToSlotID].attributes.variants.findIndex(x => x.channel == Variants[i].channel);
+
+ if (index == -1) continue;
+ if (!profile.items[itemToSlotID].attributes.variants[index].owned.includes(Variants[i].active)) continue;
+
+ profile.items[itemToSlotID].attributes.variants[index].active = Variants[i].active;
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": itemToSlotID,
+ "attributeName": "variants",
+ "attributeValue": profile.items[itemToSlotID].attributes.variants
+ });
+ }
+ }
+
+ switch (req.body.category) {
+ case "Dance":
+ if (!profile.items[req.body.lockerItem].attributes.locker_slots_data.slots[req.body.category]) break;
+
+ if (req.body.slotIndex >= 0 && req.body.slotIndex <= 5) {
+ profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.Dance.items[req.body.slotIndex] = req.body.itemToSlot;
+ profile.stats.attributes.favorite_dance[req.body.slotIndex] = itemToSlotID || req.body.itemToSlot;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "locker_slots_data",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.locker_slots_data
+ });
+ }
+ break;
+
+ case "ItemWrap":
+ if (!profile.items[req.body.lockerItem].attributes.locker_slots_data.slots[req.body.category]) break;
+
+ switch (true) {
+ case req.body.slotIndex >= 0 && req.body.slotIndex <= 7:
+ profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.ItemWrap.items[req.body.slotIndex] = req.body.itemToSlot;
+ profile.stats.attributes.favorite_itemwraps[req.body.slotIndex] = itemToSlotID || req.body.itemToSlot;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "locker_slots_data",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.locker_slots_data
+ });
+ break;
+
+ case req.body.slotIndex == -1:
+ for (let i = 0; i < 7; i++) {
+ profile.items[req.body.lockerItem].attributes.locker_slots_data.slots.ItemWrap.items[i] = req.body.itemToSlot;
+ profile.stats.attributes.favorite_itemwraps[i] = itemToSlotID || req.body.itemToSlot;
+ }
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "locker_slots_data",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.locker_slots_data
+ });
+ break;
+ }
+ break;
+
+ default:
+ if (!profile.items[req.body.lockerItem].attributes.locker_slots_data.slots[req.body.category]) break;
+
+ if (req.body.category == "Pickaxe" || req.body.category == "Glider") {
+ if (!req.body.itemToSlot) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `${req.body.category} can not be empty.`,
+ [req.body.category], 16027, undefined, 400, res
+ );
+ }
+
+ profile.items[req.body.lockerItem].attributes.locker_slots_data.slots[req.body.category].items = [req.body.itemToSlot];
+ profile.stats.attributes[(`favorite_${req.body.category}`).toLowerCase()] = itemToSlotID || req.body.itemToSlot;
+
+ ApplyProfileChanges.push({
+ "changeType": "itemAttrChanged",
+ "itemId": req.body.lockerItem,
+ "attributeName": "locker_slots_data",
+ "attributeValue": profile.items[req.body.lockerItem].attributes.locker_slots_data
+ });
+ break;
+ }
+
+ if (ApplyProfileChanges.length > 0) {
+ profile.rvn += 1;
+ profile.commandRevision += 1;
+ profile.updated = new Date().toISOString();
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/*/client/:operation", verifyToken, async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.user.accountId });
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ if (profile.rvn == profile.commandRevision) {
+ profile.rvn += 1;
+
+ if (req.query.profileId == "athena") {
+ if (!profile.stats.attributes.last_applied_loadout) profile.stats.attributes.last_applied_loadout = profile.stats.attributes.loadouts[0];
+ }
+
+ await profiles.updateOne({ $set: { [`profiles.${req.query.profileId}`]: profile } });
+ }
+
+ const memory = functions.GetVersionInfo(req);
+
+ if (req.query.profileId == "athena") profile.stats.attributes.season_num = memory.season;
+
+ let MultiUpdate = [];
+
+ if ((req.query.profileId == "common_core") && global.giftReceived[req.user.accountId]) {
+ global.giftReceived[req.user.accountId] = false;
+
+ let athena = profiles.profiles["athena"];
+
+ MultiUpdate = [{
+ "profileRevision": athena.rvn || 0,
+ "profileId": "athena",
+ "profileChangesBaseRevision": athena.rvn || 0,
+ "profileChanges": [{
+ "changeType": "fullProfileUpdate",
+ "profile": athena
+ }],
+ "profileCommandRevision": athena.commandRevision || 0,
+ }];
+ }
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let ProfileRevisionCheck = (memory.build >= 12.20) ? profile.commandRevision : profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ switch (req.params.operation) {
+ case "QueryProfile": break;
+ case "ClientQuestLogin": break;
+ case "RefreshExpeditions": break;
+ case "GetMcpTimeForLogin": break;
+ case "IncrementNamedCounterStat": break;
+ case "SetHardcoreModifier": break;
+ case "SetMtxPlatform": break;
+ case "BulkEquipBattleRoyaleCustomization": break;
+
+ default:
+ error.createError(
+ "errors.com.epicgames.fortnite.operation_not_found",
+ `Operation ${req.params.operation} not valid`,
+ [req.params.operation], 16035, undefined, 404, res
+ );
+ return;
+ }
+
+ if (QueryRevision != ProfileRevisionCheck) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ multiUpdate: MultiUpdate,
+ responseVersion: 1
+ });
+});
+
+app.post("/fortnite/api/game/v2/profile/:accountId/dedicated_server/:operation", async (req, res) => {
+ const profiles = await Profile.findOne({ accountId: req.params.accountId }).lean();
+ if (!profiles) return res.status(404).json({});
+
+ if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError(
+ "errors.com.epicgames.modules.profiles.operation_forbidden",
+ `Unable to find template configuration for profile ${req.query.profileId}`,
+ [req.query.profileId], 12813, undefined, 403, res
+ );
+
+ let profile = profiles.profiles[req.query.profileId];
+
+ if (req.query.profileId != "athena") return error.createError(
+ "errors.com.epicgames.modules.profiles.invalid_command",
+ `dedicated_server is not valid on ${req.query.profileId} profile`,
+ ["dedicated_server",req.query.profileId], 12801, undefined, 400, res
+ );
+
+ let ApplyProfileChanges = [];
+ let BaseRevision = profile.rvn;
+ let QueryRevision = req.query.rvn || -1;
+
+ if (QueryRevision != BaseRevision) {
+ ApplyProfileChanges = [{
+ "changeType": "fullProfileUpdate",
+ "profile": profile
+ }];
+ }
+
+ res.json({
+ profileRevision: profile.rvn || 0,
+ profileId: req.query.profileId,
+ profileChangesBaseRevision: BaseRevision,
+ profileChanges: ApplyProfileChanges,
+ profileCommandRevision: profile.commandRevision || 0,
+ serverTime: new Date().toISOString(),
+ responseVersion: 1
+ });
+});
+
+function checkFields(fields, body) {
+ let missingFields = { fields: [] };
+
+ fields.forEach(field => {
+ if (!body[field]) missingFields.fields.push(field);
+ });
+
+ return missingFields;
+}
+
+function ValidationError(field, type, res) {
+ return error.createError(
+ "errors.com.epicgames.validation.validation_failed",
+ `Validation Failed. '${field}' is not ${type}.`,
+ [field], 1040, undefined, 400, res
+ );
+}
+
+function checkIfDuplicateExists(arr) {
+ return new Set(arr).size !== arr.length
+}
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/storefront.js b/routes/storefront.js
new file mode 100644
index 0000000..e0dfd9e
--- /dev/null
+++ b/routes/storefront.js
@@ -0,0 +1,60 @@
+const express = require("express");
+const app = express.Router();
+const Profile = require("../model/profiles.js");
+const Friends = require("../model/friends.js");
+const functions = require("../structs/functions.js");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+const keychain = require("../responses/keychain.json");
+
+app.get("/fortnite/api/storefront/v2/catalog", (req, res) => {
+ if (req.headers["user-agent"].includes("2870186")) return res.status(404).end();
+
+ res.json(functions.getItemShop());
+});
+
+app.get("/fortnite/api/storefront/v2/gift/check_eligibility/recipient/:recipientId/offer/:offerId", verifyToken, async (req, res) => {
+ const findOfferId = functions.getOfferID(req.params.offerId);
+ if (!findOfferId) return error.createError(
+ "errors.com.epicgames.fortnite.id_invalid",
+ `Offer ID (id: "${req.params.offerId}") not found`,
+ [req.params.offerId], 16027, undefined, 400, res
+ );
+
+ let sender = await Friends.findOne({ accountId: req.user.accountId }).lean();
+
+ if (!sender.list.accepted.find(i => i.accountId == req.params.recipientId) && req.params.recipientId != req.user.accountId) return error.createError(
+ "errors.com.epicgames.friends.no_relationship",
+ `User ${req.user.accountId} is not friends with ${req.params.recipientId}`,
+ [req.user.accountId,req.params.recipientId], 28004, undefined, 403, res
+ );
+
+ const profiles = await Profile.findOne({ accountId: req.params.recipientId });
+
+ let athena = profiles.profiles["athena"];
+
+ for (let itemGrant of findOfferId.offerId.itemGrants) {
+ for (let itemId in athena.items) {
+ if (itemGrant.templateId.toLowerCase() == athena.items[itemId].templateId.toLowerCase()) return error.createError(
+ "errors.com.epicgames.modules.gamesubcatalog.purchase_not_allowed",
+ `Could not purchase catalog offer ${findOfferId.offerId.devName}, item ${itemGrant.templateId}`,
+ [findOfferId.offerId.devName,itemGrant.templateId], 28004, undefined, 403, res
+ );
+ }
+ }
+
+ res.json({
+ price: findOfferId.offerId.prices[0],
+ items: findOfferId.offerId.itemGrants
+ });
+});
+
+app.get("/fortnite/api/storefront/v2/keychain", (req, res) => {
+ res.json(keychain);
+});
+
+app.get("/catalog/api/shared/bulk/offers", (req, res) => {
+ res.json({});
+});
+
+module.exports = app;
diff --git a/routes/timeline.js b/routes/timeline.js
new file mode 100644
index 0000000..ac83cfe
--- /dev/null
+++ b/routes/timeline.js
@@ -0,0 +1,57 @@
+const express = require("express");
+const app = express.Router();
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+const functions = require("../structs/functions.js");
+
+app.get("/fortnite/api/calendar/v1/timeline", (req, res) => {
+ const memory = functions.GetVersionInfo(req);
+
+ let activeEvents = [
+ {
+ "eventType": `EventFlag.Season${memory.season}`,
+ "activeUntil": "9999-01-01T00:00:00.000Z",
+ "activeSince": "2020-01-01T00:00:00.000Z"
+ },
+ {
+ "eventType": `EventFlag.${memory.lobby}`,
+ "activeUntil": "9999-01-01T00:00:00.000Z",
+ "activeSince": "2020-01-01T00:00:00.000Z"
+ }
+ ];
+
+ res.json({
+ channels: {
+ "client-matchmaking": {
+ states: [],
+ cacheExpire: "9999-01-01T00:00:00.000Z"
+ },
+ "client-events": {
+ states: [{
+ validFrom: "0001-01-01T00:00:00.000Z",
+ activeEvents: activeEvents,
+ state: {
+ activeStorefronts: [],
+ eventNamedWeights: {},
+ seasonNumber: memory.season,
+ seasonTemplateId: `AthenaSeason:athenaseason${memory.season}`,
+ matchXpBonusPoints: 0,
+ seasonBegin: "2020-01-01T00:00:00Z",
+ seasonEnd: "9999-01-01T00:00:00Z",
+ seasonDisplayedEnd: "9999-01-01T00:00:00Z",
+ weeklyStoreEnd: "9999-01-01T00:00:00Z",
+ stwEventStoreEnd: "9999-01-01T00:00:00.000Z",
+ stwWeeklyStoreEnd: "9999-01-01T00:00:00.000Z",
+ dailyStoreEnd: "9999-01-01T00:00:00Z"
+ }
+ }],
+ cacheExpire: "9999-01-01T00:00:00.000Z"
+ }
+ },
+ eventsTimeOffsetHrs: 0,
+ cacheIntervalMins: 10,
+ currentTime: new Date().toISOString()
+ });
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/user.js b/routes/user.js
new file mode 100644
index 0000000..258e497
--- /dev/null
+++ b/routes/user.js
@@ -0,0 +1,137 @@
+const express = require("express");
+const app = express.Router();
+
+const error = require("../structs/error.js");
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+const User = require("../model/user.js");
+
+app.get("/account/api/public/account", async (req, res) => {
+ let response = [];
+
+ if (typeof req.query.accountId == "string") {
+ let user = await User.findOne({ accountId: req.query.accountId, banned: false }).lean();
+
+ if (user) {
+ response.push({
+ id: user.accountId,
+ displayName: user.username,
+ externalAuths: {}
+ });
+ }
+ }
+
+ if (Array.isArray(req.query.accountId)) {
+ let users = await User.find({ accountId: { $in: req.query.accountId }, banned: false }).lean();
+
+ if (users) {
+ for (let user of users) {
+ if (response.length >= 100) break;
+
+ response.push({
+ id: user.accountId,
+ displayName: user.username,
+ externalAuths: {}
+ });
+ }
+ }
+ }
+
+ res.json(response);
+});
+
+app.get("/account/api/public/account/displayName/:displayName", async (req, res) => {
+ let user = await User.findOne({ username_lower: req.params.displayName.toLowerCase(), banned: false }).lean();
+ if (!user) return error.createError(
+ "errors.com.epicgames.account.account_not_found",
+ `Sorry, we couldn't find an account for ${req.params.displayName}`,
+ [req.params.displayName], 18007, undefined, 404, res
+ );
+
+ res.json({
+ id: user.accountId,
+ displayName: user.username,
+ externalAuths: {}
+ });
+});
+
+app.get("/persona/api/public/account/lookup", async (req, res) => {
+ if (typeof req.query.q != "string" || !req.query.q) return error.createError(
+ "errors.com.epicgames.bad_request",
+ "Required String parameter 'q' is invalid or not present",
+ undefined, 1001, undefined, 400, res
+ );
+
+ let user = await User.findOne({ username_lower: req.query.q.toLowerCase(), banned: false }).lean();
+ if (!user) return error.createError(
+ "errors.com.epicgames.account.account_not_found",
+ `Sorry, we couldn't find an account for ${req.query.q}`,
+ [req.query.q], 18007, undefined, 404, res
+ );
+
+ res.json({
+ id: user.accountId,
+ displayName: user.username,
+ externalAuths: {}
+ });
+});
+
+app.get("/api/v1/search/:accountId", async (req, res) => {
+ let response = [];
+
+ if (typeof req.query.prefix != "string" || !req.query.prefix) return error.createError(
+ "errors.com.epicgames.bad_request",
+ "Required String parameter 'prefix' is invalid or not present",
+ undefined, 1001, undefined, 400, res
+ );
+
+ let users = await User.find({ username_lower: new RegExp(`^${req.query.prefix.toLowerCase()}`), banned: false }).lean();
+
+ for (let user of users) {
+ if (response.length >= 100) break;
+
+ response.push({
+ accountId: user.accountId,
+ matches: [
+ {
+ "value": user.username,
+ "platform": "epic"
+ }
+ ],
+ matchType: req.query.prefix.toLowerCase() == user.username_lower ? "exact" : "prefix",
+ epicMutuals: 0,
+ sortPosition: response.length
+ });
+ }
+
+ res.json(response);
+});
+
+app.get("/account/api/public/account/:accountId", verifyToken, (req, res) => {
+ res.json({
+ id: req.user.accountId,
+ displayName: req.user.username,
+ name: "Lawin",
+ email: `[hidden]@${req.user.email.split("@")[1]}`,
+ failedLoginAttempts: 0,
+ lastLogin: new Date().toISOString(),
+ numberOfDisplayNameChanges: 0,
+ ageGroup: "UNKNOWN",
+ headless: false,
+ country: "US",
+ lastName: "Server",
+ preferredLanguage: "en",
+ canUpdateDisplayName: false,
+ tfaEnabled: false,
+ emailVerified: true,
+ minorVerified: false,
+ minorExpected: false,
+ minorStatus: "UNKNOWN"
+ });
+});
+
+app.get("/account/api/public/account/*/externalAuths", (req, res) => {
+ res.json([]);
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/routes/version.js b/routes/version.js
new file mode 100644
index 0000000..d387501
--- /dev/null
+++ b/routes/version.js
@@ -0,0 +1,49 @@
+const express = require("express");
+const app = express.Router();
+
+const { verifyToken, verifyClient } = require("../tokenManager/tokenVerify.js");
+
+app.get("/fortnite/api/version", (req, res) => {
+ res.json({
+ "app": "fortnite",
+ "serverDate": new Date().toISOString(),
+ "overridePropertiesVersion": "unknown",
+ "cln": "17951730",
+ "build": "444",
+ "moduleName": "Fortnite-Core",
+ "buildDate": "2021-10-27T21:00:51.697Z",
+ "version": "18.30",
+ "branch": "Release-18.30",
+ "modules": {
+ "Epic-LightSwitch-AccessControlCore": {
+ "cln": "17237679",
+ "build": "b2130",
+ "buildDate": "2021-08-19T18:56:08.144Z",
+ "version": "1.0.0",
+ "branch": "trunk"
+ },
+ "epic-xmpp-api-v1-base": {
+ "cln": "5131a23c1470acbd9c94fae695ef7d899c1a41d6",
+ "build": "b3595",
+ "buildDate": "2019-07-30T09:11:06.587Z",
+ "version": "0.0.1",
+ "branch": "master"
+ },
+ "epic-common-core": {
+ "cln": "17909521",
+ "build": "3217",
+ "buildDate": "2021-10-25T18:41:12.486Z",
+ "version": "3.0",
+ "branch": "TRUNK"
+ }
+ }
+ });
+});
+
+app.get("/fortnite/api*/versioncheck*", (req, res) => {
+ res.json({
+ "type": "NO_UPDATE"
+ });
+});
+
+module.exports = app;
\ No newline at end of file
diff --git a/start.bat b/start.bat
new file mode 100644
index 0000000..e9286e9
--- /dev/null
+++ b/start.bat
@@ -0,0 +1,6 @@
+@echo off
+title Reload Backend
+
+:start
+node index.js
+goto start
diff --git a/structs/error.js b/structs/error.js
new file mode 100644
index 0000000..7137b69
--- /dev/null
+++ b/structs/error.js
@@ -0,0 +1,21 @@
+function createError(errorCode, errorMessage, messageVars, numericErrorCode, error, statusCode, res) {
+ res.set({
+ 'X-Epic-Error-Name': errorCode,
+ 'X-Epic-Error-Code': numericErrorCode
+ });
+
+ res.status(statusCode).json({
+ errorCode: errorCode,
+ errorMessage: errorMessage,
+ messageVars: messageVars,
+ numericErrorCode: numericErrorCode,
+ originatingService: "any",
+ intent: "prod",
+ error_description: errorMessage,
+ error: error
+ });
+}
+
+module.exports = {
+ createError
+}
\ No newline at end of file
diff --git a/structs/friend.js b/structs/friend.js
new file mode 100644
index 0000000..f79782a
--- /dev/null
+++ b/structs/friend.js
@@ -0,0 +1,202 @@
+const Friends = require("../model/friends.js");
+const functions = require("../structs/functions.js");
+
+async function validateFriendAdd(accountId, friendId) {
+ let sender = await Friends.findOne({ accountId: accountId }).lean();
+ let receiver = await Friends.findOne({ accountId: friendId }).lean();
+ if (!sender || !receiver) return false;
+
+ if (sender.list.accepted.find(i => i.accountId == receiver.accountId) || receiver.list.accepted.find(i => i.accountId == sender.accountId)) return false;
+ if (sender.list.blocked.find(i => i.accountId == receiver.accountId) || receiver.list.blocked.find(i => i.accountId == sender.accountId)) return false;
+ if (sender.accountId == receiver.accountId) return false;
+
+ return true;
+}
+
+async function validateFriendDelete(accountId, friendId) {
+ let sender = await Friends.findOne({ accountId: accountId }).lean();
+ let receiver = await Friends.findOne({ accountId: friendId }).lean();
+ if (!sender || !receiver) return false;
+
+ return true;
+}
+
+async function validateFriendBlock(accountId, friendId) {
+ let sender = await Friends.findOne({ accountId: accountId }).lean();
+ let receiver = await Friends.findOne({ accountId: friendId }).lean();
+ if (!sender || !receiver) return false;
+
+ if (sender.list.blocked.find(i => i.accountId == receiver.accountId)) return false;
+ if (sender.accountId == receiver.accountId) return false;
+
+ return true;
+}
+
+async function sendFriendReq(fromId, toId) {
+ if (!await validateFriendAdd(fromId, toId)) return false;
+
+ let from = await Friends.findOne({ accountId: fromId });
+ let fromFriends = from.list;
+
+ let to = await Friends.findOne({ accountId: toId });
+ let toFriends = to.list;
+
+ fromFriends.outgoing.push({ accountId: to.accountId, created: new Date().toISOString() });
+
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": to.accountId,
+ "status": "PENDING",
+ "direction": "OUTBOUND",
+ "created": new Date().toISOString(),
+ "favorite": false
+ },
+ "type": "com.epicgames.friends.core.apiobjects.Friend",
+ "timestamp": new Date().toISOString()
+ }, from.accountId);
+
+ toFriends.incoming.push({ accountId: from.accountId, created: new Date().toISOString() });
+
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": from.accountId,
+ "status": "PENDING",
+ "direction": "INBOUND",
+ "created": new Date().toISOString(),
+ "favorite": false
+ },
+ "type": "com.epicgames.friends.core.apiobjects.Friend",
+ "timestamp": new Date().toISOString()
+ }, to.accountId);
+
+ await from.updateOne({ $set: { list: fromFriends } });
+ await to.updateOne({ $set: { list: toFriends } });
+
+ return true;
+}
+
+async function acceptFriendReq(fromId, toId) {
+ if (!await validateFriendAdd(fromId, toId)) return false;
+
+ let from = await Friends.findOne({ accountId: fromId });
+ let fromFriends = from.list;
+
+ let to = await Friends.findOne({ accountId: toId });
+ let toFriends = to.list;
+
+ let incomingIndex = fromFriends.incoming.findIndex(i => i.accountId == to.accountId);
+
+ if (incomingIndex != -1) {
+ fromFriends.incoming.splice(incomingIndex, 1);
+ fromFriends.accepted.push({ accountId: to.accountId, created: new Date().toISOString() });
+
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": to.accountId,
+ "status": "ACCEPTED",
+ "direction": "OUTBOUND",
+ "created": new Date().toISOString(),
+ "favorite": false
+ },
+ "type": "com.epicgames.friends.core.apiobjects.Friend",
+ "timestamp": new Date().toISOString()
+ }, from.accountId);
+
+ toFriends.outgoing.splice(toFriends.outgoing.findIndex(i => i.accountId == from.accountId), 1);
+ toFriends.accepted.push({ accountId: from.accountId, created: new Date().toISOString() });
+
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": from.accountId,
+ "status": "ACCEPTED",
+ "direction": "OUTBOUND",
+ "created": new Date().toISOString(),
+ "favorite": false
+ },
+ "type": "com.epicgames.friends.core.apiobjects.Friend",
+ "timestamp": new Date().toISOString()
+ }, to.accountId);
+
+ await from.updateOne({ $set: { list: fromFriends } });
+ await to.updateOne({ $set: { list: toFriends } });
+ }
+
+ return true;
+}
+
+async function deleteFriend(fromId, toId) {
+ if (!await validateFriendDelete(fromId, toId)) return false;
+
+ let from = await Friends.findOne({ accountId: fromId });
+ let fromFriends = from.list;
+
+ let to = await Friends.findOne({ accountId: toId });
+ let toFriends = to.list;
+
+ let removed = false;
+
+ for (let listType in fromFriends) {
+ let findFriend = fromFriends[listType].findIndex(i => i.accountId == to.accountId);
+ let findToFriend = toFriends[listType].findIndex(i => i.accountId == from.accountId);
+
+ if (findFriend != -1) {
+ fromFriends[listType].splice(findFriend, 1);
+ removed = true;
+ }
+
+ if (listType == "blocked") continue;
+
+ if (findToFriend != -1) toFriends[listType].splice(findToFriend, 1);
+ }
+
+ if (removed == true) {
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": to.accountId,
+ "reason": "DELETED"
+ },
+ "type": "com.epicgames.friends.core.apiobjects.FriendRemoval",
+ "timestamp": new Date().toISOString()
+ }, from.accountId);
+
+ functions.sendXmppMessageToId({
+ "payload": {
+ "accountId": from.accountId,
+ "reason": "DELETED"
+ },
+ "type": "com.epicgames.friends.core.apiobjects.FriendRemoval",
+ "timestamp": new Date().toISOString()
+ }, to.accountId);
+
+ await from.updateOne({ $set: { list: fromFriends } });
+ await to.updateOne({ $set: { list: toFriends } });
+ }
+
+ return true;
+}
+
+async function blockFriend(fromId, toId) {
+ if (!await validateFriendDelete(fromId, toId)) return false;
+ if (!await validateFriendBlock(fromId, toId)) return false;
+ await deleteFriend(fromId, toId);
+
+ let from = await Friends.findOne({ accountId: fromId });
+ let fromFriends = from.list;
+
+ let to = await Friends.findOne({ accountId: toId });
+
+ fromFriends.blocked.push({ accountId: to.accountId, created: new Date().toISOString() });
+
+ await from.updateOne({ $set: { list: fromFriends } });
+
+ return true;
+}
+
+module.exports = {
+ validateFriendAdd,
+ validateFriendDelete,
+ sendFriendReq,
+ acceptFriendReq,
+ blockFriend,
+ deleteFriend
+}
\ No newline at end of file
diff --git a/structs/functions.js b/structs/functions.js
new file mode 100644
index 0000000..f32aaa4
--- /dev/null
+++ b/structs/functions.js
@@ -0,0 +1,330 @@
+const XMLBuilder = require("xmlbuilder");
+const uuid = require("uuid");
+const bcrypt = require("bcrypt");
+const fs = require("fs");
+const crypto = require("crypto");
+const path = require("path");
+
+const User = require("../model/user.js");
+const Profile = require("../model/profiles.js");
+const profileManager = require("../structs/profile.js");
+const Friends = require("../model/friends.js");
+
+async function sleep(ms) {
+ await new Promise((resolve, reject) => {
+ setTimeout(resolve, ms);
+ })
+}
+
+function GetVersionInfo(req) {
+ let memory = {
+ season: 0,
+ build: 0.0,
+ CL: "0",
+ lobby: ""
+ }
+
+ if (req.headers["user-agent"]) {
+ let CL = "";
+
+ try {
+ let BuildID = req.headers["user-agent"].split("-")[3].split(",")[0];
+
+ if (!Number.isNaN(Number(BuildID))) CL = BuildID;
+ else {
+ BuildID = req.headers["user-agent"].split("-")[3].split(" ")[0];
+
+ if (!Number.isNaN(Number(BuildID))) CL = BuildID;
+ }
+ } catch {
+ try {
+ let BuildID = req.headers["user-agent"].split("-")[1].split("+")[0];
+
+ if (!Number.isNaN(Number(BuildID))) CL = BuildID;
+ } catch {}
+ }
+
+ try {
+ let Build = req.headers["user-agent"].split("Release-")[1].split("-")[0];
+
+ if (Build.split(".").length == 3) {
+ let Value = Build.split(".");
+ Build = Value[0] + "." + Value[1] + Value[2];
+ }
+
+ memory.season = Number(Build.split(".")[0]);
+ memory.build = Number(Build);
+ memory.CL = CL;
+ memory.lobby = `LobbySeason${memory.season}`;
+
+ if (Number.isNaN(memory.season)) throw new Error();
+ } catch {
+ if (Number(memory.CL) < 3724489) {
+ memory.season = 0;
+ memory.build = 0.0;
+ memory.CL = CL;
+ memory.lobby = "LobbySeason0";
+ } else if (Number(memory.CL) <= 3790078) {
+ memory.season = 1;
+ memory.build = 1.0;
+ memory.CL = CL;
+ memory.lobby = "LobbySeason1";
+ } else {
+ memory.season = 2;
+ memory.build = 2.0;
+ memory.CL = CL;
+ memory.lobby = "LobbyWinterDecor";
+ }
+ }
+ }
+
+ return memory;
+}
+
+function getContentPages(req) {
+ const memory = GetVersionInfo(req);
+
+ const contentpages = JSON.parse(fs.readFileSync(path.join(__dirname, "..", "responses", "contentpages.json")).toString());
+
+ let Language = "en";
+
+ try {
+ if (req.headers["accept-language"]) {
+ if (req.headers["accept-language"].includes("-") && req.headers["accept-language"] != "es-419") {
+ Language = req.headers["accept-language"].split("-")[0];
+ } else {
+ Language = req.headers["accept-language"];
+ }
+ }
+ } catch {}
+
+ const modes = ["saveTheWorldUnowned", "battleRoyale", "creative", "saveTheWorld"];
+ const news = ["savetheworldnews", "battleroyalenews"];
+
+ try {
+ modes.forEach(mode => {
+ contentpages.subgameselectdata[mode].message.title = contentpages.subgameselectdata[mode].message.title[Language]
+ contentpages.subgameselectdata[mode].message.body = contentpages.subgameselectdata[mode].message.body[Language]
+ })
+ } catch {}
+
+ try {
+ if (memory.build < 5.30) {
+ news.forEach(mode => {
+ contentpages[mode].news.messages[0].image = "https://cdn.discordapp.com/attachments/927739901540188200/930879507496308736/discord.png";
+ contentpages[mode].news.messages[1].image = "https://cdn.discordapp.com/attachments/927739901540188200/930879519882088508/lawin.png";
+ });
+ }
+ } catch {}
+
+ try {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].stage = `season${memory.season}`;
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[1].stage = `season${memory.season}`;
+
+ if (memory.season == 10) {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].stage = "seasonx";
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[1].stage = "seasonx";
+ }
+
+ if (memory.build == 11.31 || memory.build == 11.40) {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].stage = "Winter19";
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[1].stage = "Winter19";
+ }
+
+ if (memory.build == 19.01) {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].stage = "winter2021";
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].backgroundimage = "https://cdn.discordapp.com/attachments/927739901540188200/930880158167085116/t-bp19-lobby-xmas-2048x1024-f85d2684b4af.png";
+ contentpages.subgameinfo.battleroyale.image = "https://cdn.discordapp.com/attachments/927739901540188200/930880421514846268/19br-wf-subgame-select-512x1024-16d8bb0f218f.jpg";
+ contentpages.specialoffervideo.bSpecialOfferEnabled = "true";
+ }
+
+ if (memory.season == 20) {
+ if (memory.build == 20.40) {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp20-40-armadillo-glowup-lobby-2048x2048-2048x2048-3b83b887cc7f.jpg"
+ } else {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/t-bp20-lobby-2048x1024-d89eb522746c.png";
+ }
+ }
+
+ if (memory.season == 21) {
+ contentpages.dynamicbackgrounds.backgrounds.backgrounds[0].backgroundimage = "https://cdn2.unrealengine.com/s21-lobby-background-2048x1024-2e7112b25dc3.jpg"
+ }
+ } catch {}
+
+ return contentpages;
+}
+
+function getItemShop() {
+ const catalog = JSON.parse(fs.readFileSync(path.join(__dirname, "..", "responses", "catalog.json")).toString());
+ const CatalogConfig = JSON.parse(fs.readFileSync(path.join(__dirname, "..", "Config", "catalog_config.json").toString()));
+
+ try {
+ for (let value in CatalogConfig) {
+ if (!Array.isArray(CatalogConfig[value].itemGrants)) continue;
+ if (CatalogConfig[value].itemGrants.length == 0) continue;
+
+ const CatalogEntry = {"devName":"","offerId":"","fulfillmentIds":[],"dailyLimit":-1,"weeklyLimit":-1,"monthlyLimit":-1,"categories":[],"prices":[{"currencyType":"MtxCurrency","currencySubType":"","regularPrice":0,"finalPrice":0,"saleExpiration":"9999-12-02T01:12:00Z","basePrice":0}],"matchFilter":"","filterWeight":0,"appStoreId":[],"requirements":[],"offerType":"StaticPrice","giftInfo":{"bIsEnabled":true,"forcedGiftBoxTemplateId":"","purchaseRequirements":[],"giftRecordIds":[]},"refundable":false,"metaInfo":[],"displayAssetPath":"","itemGrants":[],"sortPriority":0,"catalogGroupPriority":0};
+
+ let i = catalog.storefronts.findIndex(p => p.name == (value.toLowerCase().startsWith("daily") ? "BRDailyStorefront" : "BRWeeklyStorefront"));
+ if (i == -1) continue;
+
+ for (let itemGrant of CatalogConfig[value].itemGrants) {
+ if (typeof itemGrant != "string") continue;
+ if (itemGrant.length == 0) continue;
+
+ CatalogEntry.requirements.push({ "requirementType": "DenyOnItemOwnership", "requiredId": itemGrant, "minQuantity": 1 });
+ CatalogEntry.itemGrants.push({ "templateId": itemGrant, "quantity": 1 });
+ }
+
+ CatalogEntry.prices = [{
+ "currencyType": "MtxCurrency",
+ "currencySubType": "",
+ "regularPrice": CatalogConfig[value].price,
+ "finalPrice": CatalogConfig[value].price,
+ "saleExpiration": "9999-12-02T01:12:00Z",
+ "basePrice": CatalogConfig[value].price
+ }];
+
+ if (CatalogEntry.itemGrants.length > 0) {
+ let uniqueIdentifier = crypto.createHash("sha1").update(`${JSON.stringify(CatalogConfig[value].itemGrants)}_${CatalogConfig[value].price}`).digest("hex");
+
+ CatalogEntry.devName = uniqueIdentifier;
+ CatalogEntry.offerId = uniqueIdentifier;
+
+ catalog.storefronts[i].catalogEntries.push(CatalogEntry);
+ }
+ }
+ } catch {}
+
+ return catalog;
+}
+
+function getOfferID(offerId) {
+ const catalog = getItemShop();
+
+ for (let storefront of catalog.storefronts) {
+ let findOfferId = storefront.catalogEntries.find(i => i.offerId == offerId);
+
+ if (findOfferId) return {
+ name: storefront.name,
+ offerId: findOfferId
+ };
+ }
+}
+
+function MakeID() {
+ return uuid.v4();
+}
+
+function sendXmppMessageToAll(body) {
+ if (!global.Clients) return;
+ if (typeof body == "object") body = JSON.stringify(body);
+
+ global.Clients.forEach(ClientData => {
+ ClientData.client.send(XMLBuilder.create("message")
+ .attribute("from", "xmpp-admin@prod.ol.epicgames.com")
+ .attribute("xmlns", "jabber:client")
+ .attribute("to", ClientData.jid)
+ .element("body", `${body}`).up().toString());
+ });
+}
+
+function sendXmppMessageToId(body, toAccountId) {
+ if (!global.Clients) return;
+ if (typeof body == "object") body = JSON.stringify(body);
+
+ let receiver = global.Clients.find(i => i.accountId == toAccountId);
+ if (!receiver) return;
+
+ receiver.client.send(XMLBuilder.create("message")
+ .attribute("from", "xmpp-admin@prod.ol.epicgames.com")
+ .attribute("to", receiver.jid)
+ .attribute("xmlns", "jabber:client")
+ .element("body", `${body}`).up().toString());
+}
+
+function getPresenceFromUser(fromId, toId, offline) {
+ if (!global.Clients) return;
+
+ let SenderData = global.Clients.find(i => i.accountId == fromId);
+ let ClientData = global.Clients.find(i => i.accountId == toId);
+
+ if (!SenderData || !ClientData) return;
+
+ let xml = XMLBuilder.create("presence")
+ .attribute("to", ClientData.jid)
+ .attribute("xmlns", "jabber:client")
+ .attribute("from", SenderData.jid)
+ .attribute("type", offline ? "unavailable" : "available")
+
+ if (SenderData.lastPresenceUpdate.away) xml = xml.element("show", "away").up().element("status", SenderData.lastPresenceUpdate.status).up();
+ else xml = xml.element("status", SenderData.lastPresenceUpdate.status).up();
+
+ ClientData.client.send(xml.toString());
+}
+
+async function registerUser(discordId, username, email, plainPassword) {
+ email = email.toLowerCase();
+
+ if (!discordId || !username || !email || !plainPassword) return { message: "Username/email/password is required.", status: 400 };
+
+ if (await User.findOne({ discordId })) return { message: "You already created an account!", status: 400 };
+
+ const accountId = MakeID().replace(/-/ig, "");
+
+ // filters
+ const emailFilter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
+ if (!emailFilter.test(email)) return { message: "You did not provide a valid email address!", status: 400 };
+ if (username.length >= 25) return { message: "Your username must be less than 25 characters long.", status: 400 };
+ if (username.length < 3) return { message: "Your username must be atleast 3 characters long.", status: 400 };
+ if (plainPassword.length >= 128) return { message: "Your password must be less than 128 characters long.", status: 400 };
+ if (plainPassword.length < 8) return { message: "Your password must be atleast 8 characters long.", status: 400 };
+
+ const allowedCharacters = (" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~").split("");
+
+ for (let character of username) {
+ if (!allowedCharacters.includes(character)) return { message: "Your username has special characters, please remove them and try again.", status: 400 };
+ }
+
+ const hashedPassword = await bcrypt.hash(plainPassword, 10);
+
+ try {
+ await User.create({ created: new Date().toISOString(), discordId, accountId, username, username_lower: username.toLowerCase(), email, password: hashedPassword }).then(async (i) => {
+ await Profile.create({ created: i.created, accountId: i.accountId, profiles: profileManager.createProfiles(i.accountId) });
+ await Friends.create({ created: i.created, accountId: i.accountId });
+ });
+ } catch (err) {
+ if (err.code == 11000) return { message: `Username or email is already in use.`, status: 400 };
+
+ return { message: "An unknown error has occured, please try again later.", status: 400 };
+ };
+
+ return { message: `Successfully created an account with the username ${username}`, status: 200 };
+}
+
+function DecodeBase64(str) {
+ return Buffer.from(str, 'base64').toString();
+}
+
+function UpdateTokens() {
+ fs.writeFileSync("./tokenManager/tokens.json", JSON.stringify({
+ accessTokens: global.accessTokens,
+ refreshTokens: global.refreshTokens,
+ clientTokens: global.clientTokens
+ }, null, 2));
+}
+
+module.exports = {
+ sleep,
+ GetVersionInfo,
+ getContentPages,
+ getItemShop,
+ getOfferID,
+ MakeID,
+ sendXmppMessageToAll,
+ sendXmppMessageToId,
+ getPresenceFromUser,
+ registerUser,
+ DecodeBase64,
+ UpdateTokens
+}
\ No newline at end of file
diff --git a/structs/log.js b/structs/log.js
new file mode 100644
index 0000000..f952002
--- /dev/null
+++ b/structs/log.js
@@ -0,0 +1,46 @@
+function backend() {
+ let msg = "";
+
+ for (let i in backend.arguments) {
+ msg += `${i == "0" ? "" : " "}${backend.arguments[i]}`;
+ }
+
+ console.log(`\x1b[32mBackend Log\x1b[0m: ${msg}`);
+}
+
+function bot() {
+ let msg = "";
+
+ for (let i in bot.arguments) {
+ msg += `${i == "0" ? "" : " "}${bot.arguments[i]}`;
+ }
+
+ console.log(`\x1b[33mBot Log\x1b[0m: ${msg}`);
+}
+
+function xmpp() {
+ let msg = "";
+
+ for (let i in xmpp.arguments) {
+ msg += `${i == "0" ? "" : " "}${xmpp.arguments[i]}`;
+ }
+
+ console.log(`\x1b[34mXmpp Log\x1b[0m: ${msg}`);
+}
+
+function error() {
+ let msg = "";
+
+ for (let i in error.arguments) {
+ msg += `${i == "0" ? "" : " "}${error.arguments[i]}`;
+ }
+
+ console.log(`\x1b[31mError\x1b[0m: ${msg}`);
+}
+
+module.exports = {
+ backend,
+ bot,
+ xmpp,
+ error
+}
\ No newline at end of file
diff --git a/structs/profile.js b/structs/profile.js
new file mode 100644
index 0000000..01e182d
--- /dev/null
+++ b/structs/profile.js
@@ -0,0 +1,34 @@
+const fs = require("fs");
+
+function createProfiles(accountId) {
+ let profiles = {};
+
+ fs.readdirSync("./Config/DefaultProfiles").forEach(fileName => {
+ const profile = require(`../Config/DefaultProfiles/${fileName}`);
+
+ profile.accountId = accountId;
+ profile.created = new Date().toISOString();
+ profile.updated = new Date().toISOString();
+
+ profiles[profile.profileId] = profile;
+ });
+
+ return profiles;
+}
+
+async function validateProfile(profileId, profiles) {
+ try {
+ let profile = profiles.profiles[profileId];
+
+ if (!profile || !profileId) throw new Error("Invalid profile/profileId");
+ } catch {
+ return false;
+ }
+
+ return true;
+}
+
+module.exports = {
+ createProfiles,
+ validateProfile
+}
\ No newline at end of file
diff --git a/tokenManager/tokenCreation.js b/tokenManager/tokenCreation.js
new file mode 100644
index 0000000..4bf38bc
--- /dev/null
+++ b/tokenManager/tokenCreation.js
@@ -0,0 +1,69 @@
+const functions = require("../structs/functions.js");
+const jwt = require("jsonwebtoken");
+
+function createClient(clientId, grant_type, ip, expiresIn) {
+ let clientToken = jwt.sign({
+ "p": Buffer.from(functions.MakeID()).toString("base64"),
+ "clsvc": "fortnite",
+ "t": "s",
+ "mver": false,
+ "clid": clientId,
+ "ic": true,
+ "am": grant_type,
+ "jti": functions.MakeID().replace(/-/ig, ""),
+ "creation_date": new Date(),
+ "hours_expire": expiresIn
+ }, global.JWT_SECRET, { expiresIn: `${expiresIn}h` });
+
+ global.clientTokens.push({ ip: ip, token: `eg1~${clientToken}` });
+
+ return clientToken;
+}
+
+function createAccess(user, clientId, grant_type, deviceId, expiresIn) {
+ let accessToken = jwt.sign({
+ "app": "fortnite",
+ "sub": user.accountId,
+ "dvid": deviceId,
+ "mver": false,
+ "clid": clientId,
+ "dn": user.username,
+ "am": grant_type,
+ "p": Buffer.from(functions.MakeID()).toString("base64"),
+ "iai": user.accountId,
+ "sec": 1,
+ "clsvc": "fortnite",
+ "t": "s",
+ "ic": true,
+ "jti": functions.MakeID().replace(/-/ig, ""),
+ "creation_date": new Date(),
+ "hours_expire": expiresIn
+ }, global.JWT_SECRET, { expiresIn: `${expiresIn}h` });
+
+ global.accessTokens.push({ accountId: user.accountId, token: `eg1~${accessToken}` });
+
+ return accessToken;
+}
+
+function createRefresh(user, clientId, grant_type, deviceId, expiresIn) {
+ let refreshToken = jwt.sign({
+ "sub": user.accountId,
+ "dvid": deviceId,
+ "t": "r",
+ "clid": clientId,
+ "am": grant_type,
+ "jti": functions.MakeID().replace(/-/ig, ""),
+ "creation_date": new Date(),
+ "hours_expire": expiresIn
+ }, global.JWT_SECRET, { expiresIn: `${expiresIn}h` });
+
+ global.refreshTokens.push({ accountId: user.accountId, token: `eg1~${refreshToken}` });
+
+ return refreshToken;
+}
+
+module.exports = {
+ createClient,
+ createAccess,
+ createRefresh
+}
\ No newline at end of file
diff --git a/tokenManager/tokenVerify.js b/tokenManager/tokenVerify.js
new file mode 100644
index 0000000..a754fde
--- /dev/null
+++ b/tokenManager/tokenVerify.js
@@ -0,0 +1,104 @@
+const jwt = require("jsonwebtoken");
+
+const User = require("../model/user.js");
+const functions = require("../structs/functions.js");
+const error = require("../structs/error.js");
+
+async function verifyToken(req, res, next) {
+ let authErr = () => error.createError(
+ "errors.com.epicgames.common.authorization.authorization_failed",
+ `Authorization failed for ${req.originalUrl}`,
+ [req.originalUrl], 1032, undefined, 401, res
+ );
+
+ if (!req.headers["authorization"] || !req.headers["authorization"].startsWith("bearer eg1~")) return authErr();
+
+ const token = req.headers["authorization"].replace("bearer eg1~", "");
+
+ try {
+ const decodedToken = jwt.decode(token);
+
+ if (!global.accessTokens.find(i => i.token == `eg1~${token}`)) throw new Error("Invalid token.");
+
+ if (DateAddHours(new Date(decodedToken.creation_date), decodedToken.hours_expire).getTime() <= new Date().getTime()) {
+ throw new Error("Expired access token.");
+ }
+
+ req.user = await User.findOne({ accountId: decodedToken.sub }).lean();
+
+ if (req.user.banned) return error.createError(
+ "errors.com.epicgames.account.account_not_active",
+ "You have been permanently banned from Fortnite.",
+ [], -1, undefined, 400, res
+ );
+
+ next();
+ } catch {
+ let accessIndex = global.accessTokens.findIndex(i => i.token == `eg1~${token}`);
+ if (accessIndex != -1) {
+ global.accessTokens.splice(accessIndex, 1);
+
+ functions.UpdateTokens();
+ }
+
+ return authErr();
+ }
+}
+
+async function verifyClient(req, res, next) {
+ let authErr = () => error.createError(
+ "errors.com.epicgames.common.authorization.authorization_failed",
+ `Authorization failed for ${req.originalUrl}`,
+ [req.originalUrl], 1032, undefined, 401, res
+ );
+
+ if (!req.headers["authorization"] || !req.headers["authorization"].startsWith("bearer eg1~")) return authErr();
+
+ const token = req.headers["authorization"].replace("bearer eg1~", "");
+
+ try {
+ const decodedToken = jwt.decode(token);
+
+ let findAccess = global.accessTokens.find(i => i.token == `eg1~${token}`);
+
+ if (!findAccess && !global.clientTokens.find(i => i.token == `eg1~${token}`)) throw new Error("Invalid token.");
+
+ if (DateAddHours(new Date(decodedToken.creation_date), decodedToken.hours_expire).getTime() <= new Date().getTime()) {
+ throw new Error("Expired access/client token.");
+ }
+
+ if (findAccess) {
+ req.user = await User.findOne({ accountId: decodedToken.sub }).lean();
+
+ if (req.user.banned) return error.createError(
+ "errors.com.epicgames.account.account_not_active",
+ "You have been permanently banned from Fortnite.",
+ [], -1, undefined, 400, res
+ );
+ }
+
+ next();
+ } catch (err) {
+ let accessIndex = global.accessTokens.findIndex(i => i.token == `eg1~${token}`);
+ if (accessIndex != -1) global.accessTokens.splice(accessIndex, 1);
+
+ let clientIndex = global.clientTokens.findIndex(i => i.token == `eg1~${token}`);
+ if (clientIndex != -1) global.clientTokens.splice(clientIndex, 1);
+
+ if (accessIndex != -1 || clientIndex != -1) functions.UpdateTokens();
+
+ return authErr();
+ }
+}
+
+function DateAddHours(pdate, number) {
+ let date = pdate;
+ date.setHours(date.getHours() + number);
+
+ return date;
+}
+
+module.exports = {
+ verifyToken,
+ verifyClient
+}
\ No newline at end of file
diff --git a/tokenManager/tokens.json b/tokenManager/tokens.json
new file mode 100644
index 0000000..70bc6d6
--- /dev/null
+++ b/tokenManager/tokens.json
@@ -0,0 +1,132 @@
+{
+ "accessTokens": [
+ {
+ "accountId": "17b3e746b51e4d55b9fb4c7944c8fc22",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6IjE3YjNlNzQ2YjUxZTRkNTViOWZiNGM3OTQ0YzhmYzIyIiwiZHZpZCI6Ijk0M2Q2MjkyZDcxZjRmZjViNDU1MDE2MjEyOGFkNzRkIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiRmlza2VuIiwiYW0iOiJwYXNzd29yZCIsInAiOiJaRFprT0RNelkyTXRNREExTnkwMFltWXdMVGc1WlRjdFltRmtaR00wTmprd05UbG0iLCJpYWkiOiIxN2IzZTc0NmI1MWU0ZDU1YjlmYjRjNzk0NGM4ZmMyMiIsInNlYyI6MSwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwiaWMiOnRydWUsImp0aSI6ImUxNWU0MzU2N2ZkZjRlNjlhNjcwYWI4ZDU3MTA2Yzg2IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjE6MDc6MjguNTA0WiIsImhvdXJzX2V4cGlyZSI6OCwiaWF0IjoxNzIwMTI3MjQ4LCJleHAiOjE3MjAxNTYwNDh9.9ncABkt3qrvo2CLt7TB2w6XGJmNAfi4eSr-UERAKnr4"
+ },
+ {
+ "accountId": "991a475866dd4910878d4aba87ff2879",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6Ijk5MWE0NzU4NjZkZDQ5MTA4NzhkNGFiYTg3ZmYyODc5IiwiZHZpZCI6IjkyODkzMmQzMmZkNzQ4MzY5YjBjOWFhYzE3MGQ0NzMxIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiY2FjYSIsImFtIjoicGFzc3dvcmQiLCJwIjoiWVRaaE1UQTROamt0TTJZNFpTMDBaV000TFdFeE1XVXRNMlE1WVRaaE1tRTNaREF3IiwiaWFpIjoiOTkxYTQ3NTg2NmRkNDkxMDg3OGQ0YWJhODdmZjI4NzkiLCJzZWMiOjEsImNsc3ZjIjoiZm9ydG5pdGUiLCJ0IjoicyIsImljIjp0cnVlLCJqdGkiOiIyMDBjNDgxYTU4ODI0MjE0YWEwOTViOTRkZWVjYjRkZSIsImNyZWF0aW9uX2RhdGUiOiIyMDI0LTA3LTA0VDIyOjA0OjM2Ljg1M1oiLCJob3Vyc19leHBpcmUiOjgsImlhdCI6MTcyMDEzMDY3NiwiZXhwIjoxNzIwMTU5NDc2fQ.uwBn4oGx2GCcjeISe0rSBSi5unGl1P5nESPWR-NTu9w"
+ },
+ {
+ "accountId": "4074b82eece54257954323dcb2e7b2df",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6IjQwNzRiODJlZWNlNTQyNTc5NTQzMjNkY2IyZTdiMmRmIiwiZHZpZCI6IjA3NjlkN2QxOGZlZDQxNzlhYTBkZjM1NTFhM2I4Nzg4IiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiTUJQQWJlbCIsImFtIjoicGFzc3dvcmQiLCJwIjoiTUROaU5HVmlZemN0WkRVM01DMDBNRGM1TFRrM05ERXRObVkyTlRZM1lUWmhPRFppIiwiaWFpIjoiNDA3NGI4MmVlY2U1NDI1Nzk1NDMyM2RjYjJlN2IyZGYiLCJzZWMiOjEsImNsc3ZjIjoiZm9ydG5pdGUiLCJ0IjoicyIsImljIjp0cnVlLCJqdGkiOiI2NjZlZWFlY2FhYWE0ODFhYWEzNzI5MWM4ZDk3NWYzZSIsImNyZWF0aW9uX2RhdGUiOiIyMDI0LTA3LTA1VDAwOjUyOjAwLjUxN1oiLCJob3Vyc19leHBpcmUiOjgsImlhdCI6MTcyMDE0MDcyMCwiZXhwIjoxNzIwMTY5NTIwfQ.B9HZXgjBws0VijXhjQT27edVGL7O1TfdaHaUr6IvogI"
+ },
+ {
+ "accountId": "40211d5be4954f00acc5650829de8f43",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6IjQwMjExZDViZTQ5NTRmMDBhY2M1NjUwODI5ZGU4ZjQzIiwiZHZpZCI6ImYzNGQwYjU2MWI3NTQ4MWNhMTc1YmRkNzJjNmQ2OTZiIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiZGdkZ2RnIiwiYW0iOiJwYXNzd29yZCIsInAiOiJOV1E0Tm1Vek1HWXRaR1k1WWkwME9ERmpMVGszWmpjdE1UWTBNRE15TW1FeU1UQTAiLCJpYWkiOiI0MDIxMWQ1YmU0OTU0ZjAwYWNjNTY1MDgyOWRlOGY0MyIsInNlYyI6MSwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwiaWMiOnRydWUsImp0aSI6ImU2YTMwYzFiYTViNDQ0ZTc4YmNiM2Q4ZGQ3YTI5NTc5IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDE6NDY6NTguMzU2WiIsImhvdXJzX2V4cGlyZSI6OCwiaWF0IjoxNzIwMTQ0MDE4LCJleHAiOjE3MjAxNzI4MTh9.VQRSl8lel1f0ef5eIy-oDLP0gZ21m0_FHoV73CVsUbk"
+ },
+ {
+ "accountId": "d082eeaec6a84b58b7eede8de8ba3ef1",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6ImQwODJlZWFlYzZhODRiNThiN2VlZGU4ZGU4YmEzZWYxIiwiZHZpZCI6IjIwMjJkNzBhMjc4OTQ2M2Y5YTE1ZTg5MTM3MzFmZTMyIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiW093bmVyXSBFcGljSG9zdGluZ1NlcnZlciIsImFtIjoicmVmcmVzaF90b2tlbiIsInAiOiJNREkwTVRGbU5ERXRNamMwTmkwME5HVXlMVGxoTldVdFlqY3dNMlF6TXpjeE1EVm0iLCJpYWkiOiJkMDgyZWVhZWM2YTg0YjU4YjdlZWRlOGRlOGJhM2VmMSIsInNlYyI6MSwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwiaWMiOnRydWUsImp0aSI6ImQyMWFiNDJlOGEwZjRkZDViMTUwYTJkZmExNzJhN2Q1IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDM6Mzc6NDUuOTUwWiIsImhvdXJzX2V4cGlyZSI6OCwiaWF0IjoxNzIwMTUwNjY1LCJleHAiOjE3MjAxNzk0NjV9.eGLGNoBNCfNarRf6EmqNBIjOjCgv9xIilr0LHDk3ZIQ"
+ },
+ {
+ "accountId": "a88d41054f794ff8986c60d115c7c645",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHAiOiJmb3J0bml0ZSIsInN1YiI6ImE4OGQ0MTA1NGY3OTRmZjg5ODZjNjBkMTE1YzdjNjQ1IiwiZHZpZCI6IjRkZmJlNGM3NjY1MTQxMjE5Mzc2YTZkMWU5NjQ1M2IzIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImRuIjoiW093bmVyXSBCdXJsb25lIiwiYW0iOiJwYXNzd29yZCIsInAiOiJZMlF6WkRSbE9ERXRaV1JoTWkwMFpqTXdMV0poWlRNdE56aGpNalJpWXpCak5ERm0iLCJpYWkiOiJhODhkNDEwNTRmNzk0ZmY4OTg2YzYwZDExNWM3YzY0NSIsInNlYyI6MSwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwiaWMiOnRydWUsImp0aSI6IjMwZjU2MDViNjIyYzRkYjRiMDEzYjNlNGViMWUxOGRkIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDQ6MDc6MzUuNTI2WiIsImhvdXJzX2V4cGlyZSI6OCwiaWF0IjoxNzIwMTUyNDU1LCJleHAiOjE3MjAxODEyNTV9.knwWqbKBubCSLT6c1zxRgAEQUufNpcJ5nxXpUXEb-R4"
+ }
+ ],
+ "refreshTokens": [
+ {
+ "accountId": "4764b894a9524c869a0ab5e34767f7c5",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0NzY0Yjg5NGE5NTI0Yzg2OWEwYWI1ZTM0NzY3ZjdjNSIsImR2aWQiOiI3NGM0NzU5YTk2M2Q0M2YzOTRiZmIwYjExMTcyNWY2NSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjM1MDE3ZmI3OGU5NjQzOWM4MDM4MDNmMTk4ZDE3Yzk1IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMDY6MTI6MDIuMzQwWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDA3MzUyMiwiZXhwIjoxNzIwMTU5OTIyfQ.QLU6qHajYIKrWvQF-LAMvMeWS_uOWY4MqGWDXYxMJCY"
+ },
+ {
+ "accountId": "e8a831f6ea8c4d1d88861c69ff8c3007",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJlOGE4MzFmNmVhOGM0ZDFkODg4NjFjNjlmZjhjMzAwNyIsImR2aWQiOiI0NTE5OTJkZDY2MzA0MmU5YWI3MjVlYjBjYzczM2MzMCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImQ1OGRhYzMyNDQ0NjQ3MWVhMzBhMDIyODI1YmI1ZjZkIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMDY6MzI6MzcuNzYxWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDA3NDc1NywiZXhwIjoxNzIwMTYxMTU3fQ.xrCpxPzwS5Geozn-GRuh7lxnFo4mzi4QaaxJ4guBeRs"
+ },
+ {
+ "accountId": "35be9b871d584724bc768496d456bfa5",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIzNWJlOWI4NzFkNTg0NzI0YmM3Njg0OTZkNDU2YmZhNSIsImR2aWQiOiI5NzZiZWZjMzkxMDQ0MGQ0OTMwMDkwMzU1YzY0MDc3YSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjEzNWJiYTZlZjY5ZDQyNmI4ZjUxYjM0NmIwNTRlODY4IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTI6NDU6MjguMzQ5WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDA5NzEyOCwiZXhwIjoxNzIwMTgzNTI4fQ.l8le1KlPGVP5cm8VfZPezE2IuOE4uO003zlobe19srw"
+ },
+ {
+ "accountId": "b0f7c36ed92e4556b9bdee019cb14146",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiMGY3YzM2ZWQ5MmU0NTU2YjliZGVlMDE5Y2IxNDE0NiIsImR2aWQiOiIyNzc2MGY2ODYxN2I0NDFhYjllMWE2NGIzYmQyMDg1OCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImE4Y2M3MWJlMDI3MzQ3MGJhZjc0NGUxZWJiZDU1MmZkIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTY6MTg6MTEuMTQ1WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEwOTg5MSwiZXhwIjoxNzIwMTk2MjkxfQ.NUghmA1T27g06Lo7qEYzmOEU4yqjXFpV43a6JeSqYFw"
+ },
+ {
+ "accountId": "b509bda5f67e4775ae998b69530592ef",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJiNTA5YmRhNWY2N2U0Nzc1YWU5OThiNjk1MzA1OTJlZiIsImR2aWQiOiJmMWMxNDQ0ZjAyMDk0YTVlYjdhZDkyYWFiZGIxMjg5MyIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjQ5OWE5YmY2ZGM4NzQyMmI5Y2YwZjVjNmZhNWFjYTJkIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTY6MzM6NTcuMzU4WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExMDgzNywiZXhwIjoxNzIwMTk3MjM3fQ.Mqulgld3wooCUzP1eFJ97wQD4xOEYfxA3zSSjHX1w04"
+ },
+ {
+ "accountId": "4ff26be89d7f4dfe82960dd5b5a8ed4e",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0ZmYyNmJlODlkN2Y0ZGZlODI5NjBkZDViNWE4ZWQ0ZSIsImR2aWQiOiJjMTAyMmEzNzExYTk0YjNjOGIyNDc2YjNmNGI4ODJiYiIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6Ijg0MTZiYzU2YmNkZTRjZTM4OTBlNWIzMDhiYmU1ZWM5IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTY6NTY6MzYuNTIyWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExMjE5NiwiZXhwIjoxNzIwMTk4NTk2fQ.Wc97h5_uqHLcp_F88AUbW8SWUk_qR26pt3G6AIPlSD4"
+ },
+ {
+ "accountId": "4d57ab62ffcf420bb0a2ad110d4bc3dd",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0ZDU3YWI2MmZmY2Y0MjBiYjBhMmFkMTEwZDRiYzNkZCIsImR2aWQiOiIzNmI5OGMyZTIyYjU0NThkOWRjNjdmZjI1YmQ0MDU5OSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImRlYzQ0OTlmYjk3MjRhMTM5YjcyZmUzYWIyODgyZjZmIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTc6MTk6NTIuMzI3WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExMzU5MiwiZXhwIjoxNzIwMTk5OTkyfQ.HLspzhIIVJXIpq73dQj1aHWwyR2SHpckANhC2FqrJqc"
+ },
+ {
+ "accountId": "71d16952c758456ba57496fb1cf06661",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3MWQxNjk1MmM3NTg0NTZiYTU3NDk2ZmIxY2YwNjY2MSIsImR2aWQiOiIyOWJiMWNhOTEyZTM0ZmEyOWYzZDRiNjVhYmZhMDA2YSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjVmZTYwNTIwYWI5NzQ3OGZhYzdhMzRjNzI1ZjMzNmJkIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTc6NTg6MTQuMzU1WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExNTg5NCwiZXhwIjoxNzIwMjAyMjk0fQ.sAXRDNpYAncq3AT1p15kPOK507EpeAPJEsSGF9KEL90"
+ },
+ {
+ "accountId": "0a320655717a4156823c3187cebb9278",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwYTMyMDY1NTcxN2E0MTU2ODIzYzMxODdjZWJiOTI3OCIsImR2aWQiOiI4MTU1MGMxNTVkYzc0ZGVjYjkyNTMyZmFiMjM2NmQzMCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjUwYTI4MDBlMjI4NTQ4ODQ5MzA2MmRjZGIwZjc0ZGY1IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTg6NDg6MjkuNTU1WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExODkwOSwiZXhwIjoxNzIwMjA1MzA5fQ.614Qdy9kxW4sO_b4KYDhAJ_17vOloX4oyY8ajRDhfcA"
+ },
+ {
+ "accountId": "c437d248ef3f4fbfb63045e138fad408",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJjNDM3ZDI0OGVmM2Y0ZmJmYjYzMDQ1ZTEzOGZhZDQwOCIsImR2aWQiOiJmNGExMDg1M2JjMTk0MjEzODRhODYzMzBjYjM0MDViZSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjkwZTNhMjYxNWRlNTRhNjlhZThlMTMyNDMxZDk5ZmNmIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTg6NTg6NDQuNTg3WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDExOTUyNCwiZXhwIjoxNzIwMjA1OTI0fQ.H3oKET_Ef_h8AKgjAiWlA8TJWDTI2hd8pfH98WDr_5Y"
+ },
+ {
+ "accountId": "a53a50be82084941a8b6d972ed8d7d36",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhNTNhNTBiZTgyMDg0OTQxYThiNmQ5NzJlZDhkN2QzNiIsImR2aWQiOiIwM2M1Y2JhZWU3Yjk0ZmUzOTMwMWNmZjFkZDg2NTVhZCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6Ijc5Zjg1NjJlYmJiMjQ2N2FhM2IxNDQ0Y2E4MDc0NWM4IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTk6MTk6MDkuNTUzWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyMDc0OSwiZXhwIjoxNzIwMjA3MTQ5fQ.GNk_eZU6feEmX37Z5cWOq_H1X1C7cXZDIgE4MrmFDPQ"
+ },
+ {
+ "accountId": "2fdb987ca3c946b0908c80515515f691",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyZmRiOTg3Y2EzYzk0NmIwOTA4YzgwNTE1NTE1ZjY5MSIsImR2aWQiOiJjYzBjZTNhYzFhMDk0N2JkOGQ1MmZjZTdkNjQ5NTYxNiIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6Ijg2ZjVkZjUxMjE3ZDRmNWM5MDQ4ZjhiM2RlZmZlNzUzIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTk6NDQ6MTEuNTMwWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyMjI1MSwiZXhwIjoxNzIwMjA4NjUxfQ.v1HrFU5BB5EW6XeaLzdRc3v6HiM8f1rvwLZEIMCJcik"
+ },
+ {
+ "accountId": "9fd79e95fc484eb08727ec0bdead82a3",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5ZmQ3OWU5NWZjNDg0ZWIwODcyN2VjMGJkZWFkODJhMyIsImR2aWQiOiI4YzM5YzJjMDk3NDU0MTIyYWQ3Mjc0ZWM0OTEwMmIyMSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImM0ZTBjYzFkN2UyYjRkMjU4NTJlMDgwNjM1YzkyNDM1IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMTk6NDc6MDQuOTU2WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyMjQyNCwiZXhwIjoxNzIwMjA4ODI0fQ.XiN7CY3doJk4LJEO3ndfft9pd47qeIrrkBtFBqWUO3A"
+ },
+ {
+ "accountId": "060104ea1fe64d9f92d56cfeec028035",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIwNjAxMDRlYTFmZTY0ZDlmOTJkNTZjZmVlYzAyODAzNSIsImR2aWQiOiI1MGQ5ZDM2YjA4ZGM0ZjRiOTBjMjYxYzhkNDg2MzQ2OCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjNmMWYwMTMzNmUwODRkYjFhMzExZGU4ZjYyYTBhMDdhIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjA6MDk6MzQuMjMzWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyMzc3NCwiZXhwIjoxNzIwMjEwMTc0fQ.P1m7nPdiXXPa-f4ewmoi9rnh8xCnohdo2bas4ui4Lp4"
+ },
+ {
+ "accountId": "17e89257115a47a09d5d5f529d9a77a6",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxN2U4OTI1NzExNWE0N2EwOWQ1ZDVmNTI5ZDlhNzdhNiIsImR2aWQiOiJlNTFmODFjNGQ4NWM0Mzc0YTc4NjlhNjY5ZTMyMGE3NCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImY1MGY4NGQ3ZDZlMjQzYjVhODIwZmUyY2M0NjY5MzY3IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjA6MTc6MTUuNTAxWiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyNDIzNSwiZXhwIjoxNzIwMjEwNjM1fQ.67gPQmWBJtoeHl6ZQwWd11u6NPpTOUCBo8LZkbmW2Tc"
+ },
+ {
+ "accountId": "17b3e746b51e4d55b9fb4c7944c8fc22",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxN2IzZTc0NmI1MWU0ZDU1YjlmYjRjNzk0NGM4ZmMyMiIsImR2aWQiOiI5NDNkNjI5MmQ3MWY0ZmY1YjQ1NTAxNjIxMjhhZDc0ZCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6Ijk3OGU2MWFlMzZiZjQ4NjNiMzY4ZTQxYzU4MTFlNzZiIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjE6MDc6MjguNTA1WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEyNzI0OCwiZXhwIjoxNzIwMjEzNjQ4fQ.nUd7lbuAqzCJK1YPyqiIVcOSDdT_DvHVoB7C40mmn40"
+ },
+ {
+ "accountId": "991a475866dd4910878d4aba87ff2879",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI5OTFhNDc1ODY2ZGQ0OTEwODc4ZDRhYmE4N2ZmMjg3OSIsImR2aWQiOiI5Mjg5MzJkMzJmZDc0ODM2OWIwYzlhYWMxNzBkNDczMSIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6ImZkMGZmNDViYjk0OTRhZDc5MTI0MDM1NDgyOTg2OWYzIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjI6MDQ6MzYuODU0WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDEzMDY3NiwiZXhwIjoxNzIwMjE3MDc2fQ.4ZXvEXTiwSIthsmib0iyrSQFHmI4sXPI5AwkFm9eEpQ"
+ },
+ {
+ "accountId": "4074b82eece54257954323dcb2e7b2df",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0MDc0YjgyZWVjZTU0MjU3OTU0MzIzZGNiMmU3YjJkZiIsImR2aWQiOiIwNzY5ZDdkMThmZWQ0MTc5YWEwZGYzNTUxYTNiODc4OCIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjBiYjI4M2QyYTY2NzQzNDRiZDRiMmU2NzI2ZGQ2ZTcxIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDA6NTI6MDAuNTE5WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDE0MDcyMCwiZXhwIjoxNzIwMjI3MTIwfQ.se8vvubSiqgzG4evoYoukqYzpu41fJbG8Od6xroSPbU"
+ },
+ {
+ "accountId": "40211d5be4954f00acc5650829de8f43",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI0MDIxMWQ1YmU0OTU0ZjAwYWNjNTY1MDgyOWRlOGY0MyIsImR2aWQiOiJmMzRkMGI1NjFiNzU0ODFjYTE3NWJkZDcyYzZkNjk2YiIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjA2NTg2MDgwNTg0YjQ1ZDM5MTE2NGM4YzRkYTg5M2U3IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDE6NDY6NTguMzU4WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDE0NDAxOCwiZXhwIjoxNzIwMjMwNDE4fQ.9sT_ZteavPIQZRPuJSKULuD-zk6jdbyo15-a9924o2Y"
+ },
+ {
+ "accountId": "d082eeaec6a84b58b7eede8de8ba3ef1",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJkMDgyZWVhZWM2YTg0YjU4YjdlZWRlOGRlOGJhM2VmMSIsImR2aWQiOiIyMDIyZDcwYTI3ODk0NjNmOWExNWU4OTEzNzMxZmUzMiIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJyZWZyZXNoX3Rva2VuIiwianRpIjoiM2ExYmMyYzIwYjE3NGM1MjlkNzNiMDllZGQ1NTE4ZDciLCJjcmVhdGlvbl9kYXRlIjoiMjAyNC0wNy0wNVQwMzozNzo0NS45NTZaIiwiaG91cnNfZXhwaXJlIjoyNCwiaWF0IjoxNzIwMTUwNjY1LCJleHAiOjE3MjAyMzcwNjV9.ElUBPGxWigQFON95_8w3TwEImvVw_IJ9l_S8ujXmorU"
+ },
+ {
+ "accountId": "a88d41054f794ff8986c60d115c7c645",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJhODhkNDEwNTRmNzk0ZmY4OTg2YzYwZDExNWM3YzY0NSIsImR2aWQiOiI0ZGZiZTRjNzY2NTE0MTIxOTM3NmE2ZDFlOTY0NTNiMyIsInQiOiJyIiwiY2xpZCI6ImVjNjg0YjhjNjg3ZjQ3OWZhZGVhM2NiMmFkODNmNWM2IiwiYW0iOiJwYXNzd29yZCIsImp0aSI6IjgxYWEyNzBkZTE2YzQ0MTY4ZDNkYzBkYzkxMzY5NjE2IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDQ6MDc6MzUuNTI4WiIsImhvdXJzX2V4cGlyZSI6MjQsImlhdCI6MTcyMDE1MjQ1NSwiZXhwIjoxNzIwMjM4ODU1fQ.ko4L7Hm6pU51aNefgRqHy674uHiokWiXcIylRvPkGQg"
+ }
+ ],
+ "clientTokens": [
+ {
+ "ip": "::ffff:176.45.138.104",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwIjoiWmpRNVltWmpNekl0TlRRMk15MDBaak5oTFdJMU5ERXRaR013T1dFMFpEVTJaV0ZrIiwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImljIjp0cnVlLCJhbSI6ImNsaWVudF9jcmVkZW50aWFscyIsImp0aSI6IjczODY0NDJlMDlhMDQzODdhN2Q3NWZhY2JkZDFhYjI1IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDRUMjI6MjM6MDUuOTgwWiIsImhvdXJzX2V4cGlyZSI6NCwiaWF0IjoxNzIwMTMxNzg1LCJleHAiOjE3MjAxNDYxODV9._PnPaBS4p9E_Rva9LoXOiOxOkief9bq1Dl7L1OJLW3s"
+ },
+ {
+ "ip": "::ffff:79.46.51.2",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwIjoiTlRJeU1UWmtPRGN0TmpjNE1DMDBaamRqTFdJeU4yTXROVGRrWkROaU5qRmtNemRpIiwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImljIjp0cnVlLCJhbSI6ImNsaWVudF9jcmVkZW50aWFscyIsImp0aSI6ImM3NWQ3NmE4OGEyNzRmMGViYzE1NjMzYWNlMzQ1ZWRjIiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDE6NDY6MjguMjgzWiIsImhvdXJzX2V4cGlyZSI6NCwiaWF0IjoxNzIwMTQzOTg4LCJleHAiOjE3MjAxNTgzODh9.DR80kN5jNZ8OOPn3Gl9RRLXVJj2Lknct6ifhGMj1QBs"
+ },
+ {
+ "ip": "::ffff:5.180.34.99",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwIjoiTkdZME9EQm1ZV1l0WXpBeU15MDBOMkZoTFRneU1tUXROak00TW1JME5USTNPRE5sIiwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImljIjp0cnVlLCJhbSI6ImNsaWVudF9jcmVkZW50aWFscyIsImp0aSI6ImMwMGMzOWNiM2Y3ZDQzNjc4ZjA0OWIwYzgwZWJhOGM3IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDI6MTM6MzMuNjA2WiIsImhvdXJzX2V4cGlyZSI6NCwiaWF0IjoxNzIwMTQ1NjEzLCJleHAiOjE3MjAxNjAwMTN9.TND3TEQ4QTz6ILk4ofADoUAkIutzUYNV8-PKLrrnuUo"
+ },
+ {
+ "ip": "::ffff:79.32.133.67",
+ "token": "eg1~eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwIjoiTmpZek1ERTBPR010TVdRd1l5MDBNRE5rTFdJMU1EQXRZalZrWW1aaE9UWmxObVprIiwiY2xzdmMiOiJmb3J0bml0ZSIsInQiOiJzIiwibXZlciI6ZmFsc2UsImNsaWQiOiJlYzY4NGI4YzY4N2Y0NzlmYWRlYTNjYjJhZDgzZjVjNiIsImljIjp0cnVlLCJhbSI6ImNsaWVudF9jcmVkZW50aWFscyIsImp0aSI6IjFhMzJmZjJlOTE0ZTRiZDk5YmUyN2JlYjA2ZGIyNjA2IiwiY3JlYXRpb25fZGF0ZSI6IjIwMjQtMDctMDVUMDQ6MDc6MzQuMzkyWiIsImhvdXJzX2V4cGlyZSI6NCwiaWF0IjoxNzIwMTUyNDU0LCJleHAiOjE3MjAxNjY4NTR9.650TUvW53qAFDeWcwccpge6yRKSDh9_pVTcIrWF6QQw"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/xmpp/xmpp.js b/xmpp/xmpp.js
new file mode 100644
index 0000000..088a5a9
--- /dev/null
+++ b/xmpp/xmpp.js
@@ -0,0 +1,530 @@
+const WebSocket = require("ws").Server;
+const XMLBuilder = require("xmlbuilder");
+const XMLParser = require("xml-parser");
+const express = require("express");
+const app = express();
+
+const log = require("../structs/log.js");
+const functions = require("../structs/functions.js");
+
+const User = require("../model/user.js");
+const Friends = require("../model/friends.js");
+
+const port = 80;
+const wss = new WebSocket({ server: app.listen(port) });
+const matchmaker = require("../matchmaker/matchmaker.js");
+
+let domain = "prod.ol.epicgames.com";
+
+global.Clients = [];
+
+// multi user chat rooms (global chat/party chat)
+global.MUCs = {};
+
+app.get("/", (req, res) => {
+ res.type("application/json");
+ res.header("Access-Control-Allow-Origin", "*");
+
+ let data = JSON.stringify({
+ "Clients": {
+ "amount": global.Clients.length,
+ "clients": global.Clients.map(i => i.displayName)
+ }
+ }, null, 2);
+
+ res.send(data);
+});
+
+app.get("/clients", (req, res) => {
+ res.type("application/json");
+
+ let data = JSON.stringify({
+ "amount": global.Clients.length,
+ "clients": global.Clients.map(i => i.displayName)
+ }, null, 2);
+
+ res.send(data);
+});
+
+wss.on('listening', () => {
+ log.xmpp(`XMPP and Matchmaker started listening on port ${port}`);
+});
+
+wss.on('connection', async (ws) => {
+ ws.on('error', () => {});
+
+ // Start matchmaker if it's not connecting for xmpp.
+ if (ws.protocol.toLowerCase() != "xmpp") return matchmaker(ws);
+
+ let joinedMUCs = [];
+ let accountId = "";
+ let displayName = "";
+ let token = "";
+ let jid = "";
+ let resource = "";
+ let ID = functions.MakeID();
+ let Authenticated = false;
+ let clientExists = false;
+ let connectionClosed = false;
+
+ ws.on('message', async (message) => {
+ if (Buffer.isBuffer(message)) message = message.toString();
+
+ const msg = XMLParser(message);
+ if (!msg || !msg.root || !msg.root.name) return Error(ws);
+
+ switch (msg.root.name) {
+ case "open":
+ ws.send(XMLBuilder.create("open")
+ .attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-framing")
+ .attribute("from", domain)
+ .attribute("id", ID)
+ .attribute("version", "1.0")
+ .attribute("xml:lang", "en").toString());
+
+ if (Authenticated) {
+ ws.send(XMLBuilder.create("stream:features").attribute("xmlns:stream", "http://etherx.jabber.org/streams")
+ .element("ver").attribute("xmlns", "urn:xmpp:features:rosterver").up()
+ .element("starttls").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-tls").up()
+ .element("bind").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-bind").up()
+ .element("compression").attribute("xmlns", "http://jabber.org/features/compress")
+ .element("method", "zlib").up().up()
+ .element("session").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-session").up().toString());
+ } else {
+ ws.send(XMLBuilder.create("stream:features").attribute("xmlns:stream", "http://etherx.jabber.org/streams")
+ .element("mechanisms").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl")
+ .element("mechanism", "PLAIN").up().up()
+ .element("ver").attribute("xmlns", "urn:xmpp:features:rosterver").up()
+ .element("starttls").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-tls").up()
+ .element("compression").attribute("xmlns", "http://jabber.org/features/compress")
+ .element("method", "zlib").up().up()
+ .element("auth").attribute("xmlns", "http://jabber.org/features/iq-auth").up().toString());
+ }
+ break;
+
+ case "auth":
+ if (accountId) return;
+ if (!msg.root.content) return Error(ws);
+ if (!functions.DecodeBase64(msg.root.content).includes("\u0000")) return Error(ws);
+
+ let decodedBase64 = functions.DecodeBase64(msg.root.content).split("\u0000");
+
+ let object = global.accessTokens.find(i => i.token == decodedBase64[2]);
+ if (!object) return Error(ws);
+
+ if (global.Clients.find(i => i.accountId == object.accountId)) return Error(ws);
+
+ let user = await User.findOne({ accountId: object.accountId, banned: false }).lean();
+ if (!user) return Error(ws);
+
+ accountId = user.accountId;
+ displayName = user.username;
+ token = object.token;
+
+ if (decodedBase64 && accountId && displayName && token && decodedBase64.length == 3) {
+ Authenticated = true;
+ log.xmpp(`An xmpp client with the displayName ${displayName} has logged in.`);
+
+ ws.send(XMLBuilder.create("success").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-sasl").toString());
+ } else return Error(ws);
+ break;
+
+ case "iq":
+ switch (msg.root.attributes.id) {
+ case "_xmpp_bind1":
+ if (resource || !accountId) return;
+ if (!msg.root.children.find(i => i.name == "bind")) return;
+
+ if (global.Clients.find(i => i.accountId == accountId)) return Error(ws);
+
+ let findResource = msg.root.children.find(i => i.name == "bind").children.find(i => i.name == "resource");
+
+ if (!findResource) return;
+ if (!findResource.content) return;
+
+ resource = findResource.content;
+ jid = `${accountId}@${domain}/${resource}`;
+
+ ws.send(XMLBuilder.create("iq")
+ .attribute("to", jid)
+ .attribute("id", "_xmpp_bind1")
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "result")
+ .element("bind")
+ .attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-bind")
+ .element("jid", jid).up().up().toString());
+ break;
+
+ case "_xmpp_session1":
+ if (!clientExists) return Error(ws);
+
+ ws.send(XMLBuilder.create("iq")
+ .attribute("to", jid)
+ .attribute("from", domain)
+ .attribute("id", "_xmpp_session1")
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "result").toString());
+
+ await getPresenceFromFriends(ws, accountId, jid);
+ break;
+
+ default:
+ if (!clientExists) return Error(ws);
+
+ ws.send(XMLBuilder.create("iq")
+ .attribute("to", jid)
+ .attribute("from", domain)
+ .attribute("id", msg.root.attributes.id)
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "result").toString());
+ }
+ break;
+
+ case "message":
+ if (!clientExists) return Error(ws);
+
+ let findBody = msg.root.children.find(i => i.name == "body");
+
+ if (!findBody || !findBody.content) return;
+
+ let body = findBody.content;
+
+ switch (msg.root.attributes.type) {
+ case "chat":
+ if (!msg.root.attributes.to) return;
+ if (body.length >= 300) return;
+
+ let receiver = global.Clients.find(i => i.jid.split("/")[0] == msg.root.attributes.to);
+
+ if (!receiver) return;
+ if (receiver.accountId == accountId) return;
+
+ receiver.client.send(XMLBuilder.create("message")
+ .attribute("to", receiver.jid)
+ .attribute("from", jid)
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "chat")
+ .element("body", body).up().toString());
+ return;
+
+ case "groupchat":
+ if (!msg.root.attributes.to) return;
+ if (body.length >= 300) return;
+
+ let roomName = msg.root.attributes.to.split("@")[0];
+
+ let MUC = global.MUCs[roomName];
+ if (!MUC) return;
+
+ if (!MUC.members.find(i => i.accountId == accountId)) return;
+
+ MUC.members.forEach(member => {
+ let ClientData = global.Clients.find(i => i.accountId == member.accountId);
+ if (!ClientData) return;
+
+ ClientData.client.send(XMLBuilder.create("message")
+ .attribute("to", ClientData.jid)
+ .attribute("from", getMUCmember(roomName, displayName, accountId, resource))
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "groupchat")
+ .element("body", body).up().toString());
+ });
+ return;
+ }
+
+ if (isJSON(body)) {
+ let bodyJSON = JSON.parse(body);
+
+ if (Array.isArray(bodyJSON)) return;
+ if (typeof bodyJSON.type != "string") return;
+ if (!msg.root.attributes.to) return;
+ if (!msg.root.attributes.id) return;
+
+ sendXmppMessageToClient(jid, msg, body);
+ }
+ break;
+
+ case "presence":
+ if (!clientExists) return Error(ws);
+
+ switch (msg.root.attributes.type) {
+ case "unavailable":
+ if (!msg.root.attributes.to) return;
+
+ if (msg.root.attributes.to.endsWith(`@muc.${domain}`) || msg.root.attributes.to.split("/")[0].endsWith(`@muc.${domain}`)) {
+ if (!msg.root.attributes.to.toLowerCase().startsWith("party-")) return;
+
+ let roomName = msg.root.attributes.to.split("@")[0];
+
+ if (!global.MUCs[roomName]) return;
+
+ let memberIndex = global.MUCs[roomName].members.findIndex(i => i.accountId == accountId);
+ if (memberIndex != -1) {
+ global.MUCs[roomName].members.splice(memberIndex, 1);
+ joinedMUCs.splice(joinedMUCs.indexOf(roomName), 1);
+ }
+
+ ws.send(XMLBuilder.create("presence")
+ .attribute("to", jid)
+ .attribute("from", getMUCmember(roomName, displayName, accountId, resource))
+ .attribute("xmlns", "jabber:client")
+ .attribute("type", "unavailable")
+ .element("x").attribute("xmlns", "http://jabber.org/protocol/muc#user")
+ .element("item")
+ .attribute("nick", getMUCmember(roomName, displayName, accountId, resource).replace(`${roomName}@muc.${domain}/`, ""))
+ .attribute("jid", jid)
+ .attribute("role", "none").up()
+ .element("status").attribute("code", "110").up()
+ .element("status").attribute("code", "100").up()
+ .element("status").attribute("code", "170").up().up().toString());
+ return;
+ }
+ break;
+
+ default:
+ if (msg.root.children.find(i => i.name == "muc:x") || msg.root.children.find(i => i.name == "x")) {
+ if (!msg.root.attributes.to) return;
+
+ let roomName = msg.root.attributes.to.split("@")[0];
+
+ if (!global.MUCs[roomName]) global.MUCs[roomName] = { members: [] };
+
+ if (global.MUCs[roomName].members.find(i => i.accountId == accountId)) return;
+
+ global.MUCs[roomName].members.push({ accountId: accountId });
+
+ joinedMUCs.push(roomName);
+
+ ws.send(XMLBuilder.create("presence")
+ .attribute("to", jid)
+ .attribute("from", getMUCmember(roomName, displayName, accountId, resource))
+ .attribute("xmlns", "jabber:client")
+ .element("x").attribute("xmlns", "http://jabber.org/protocol/muc#user")
+ .element("item")
+ .attribute("nick", getMUCmember(roomName, displayName, accountId, resource).replace(`${roomName}@muc.${domain}/`, ""))
+ .attribute("jid", jid)
+ .attribute("role", "participant")
+ .attribute("affiliation", "none").up()
+ .element("status").attribute("code", "110").up()
+ .element("status").attribute("code", "100").up()
+ .element("status").attribute("code", "170").up()
+ .element("status").attribute("code", "201").up().up().toString());
+
+ global.MUCs[roomName].members.forEach(member => {
+ let ClientData = global.Clients.find(i => i.accountId == member.accountId);
+ if (!ClientData) return;
+
+ ws.send(XMLBuilder.create("presence")
+ .attribute("from", getMUCmember(roomName, ClientData.displayName, ClientData.accountId, ClientData.resource))
+ .attribute("to", jid)
+ .attribute("xmlns", "jabber:client")
+ .element("x")
+ .attribute("xmlns", "http://jabber.org/protocol/muc#user")
+ .element("item")
+ .attribute("nick", getMUCmember(roomName, ClientData.displayName, ClientData.accountId, ClientData.resource).replace(`${roomName}@muc.${domain}/`, ""))
+ .attribute("jid", ClientData.jid)
+ .attribute("role", "participant")
+ .attribute("affiliation", "none").up().up().toString());
+
+ if (accountId == ClientData.accountId) return;
+
+ ClientData.client.send(XMLBuilder.create("presence")
+ .attribute("from", getMUCmember(roomName, displayName, accountId, resource))
+ .attribute("to", ClientData.jid)
+ .attribute("xmlns", "jabber:client")
+ .element("x")
+ .attribute("xmlns", "http://jabber.org/protocol/muc#user")
+ .element("item")
+ .attribute("nick", getMUCmember(roomName, displayName, accountId, resource).replace(`${roomName}@muc.${domain}/`, ""))
+ .attribute("jid", jid)
+ .attribute("role", "participant")
+ .attribute("affiliation", "none").up().up().toString());
+ });
+ return;
+ }
+ }
+
+ let findStatus = msg.root.children.find(i => i.name == "status");
+
+ if (!findStatus || !findStatus.content) return;
+ if (!isJSON(findStatus.content)) return;
+ if (Array.isArray(JSON.parse(findStatus.content))) return;
+
+ let status = findStatus.content;
+ let away = msg.root.children.find(i => i.name == "show") ? true : false;
+
+ await updatePresenceForFriends(ws, status, away, false);
+ functions.getPresenceFromUser(accountId, accountId, false);
+ break;
+ }
+
+ if (!clientExists && !connectionClosed) {
+ if (accountId && displayName && token && jid && ID && resource && Authenticated) {
+ global.Clients.push({
+ client: ws,
+ accountId: accountId,
+ displayName: displayName,
+ token: token,
+ jid: jid,
+ resource: resource,
+ lastPresenceUpdate: {
+ away: false,
+ status: "{}"
+ }
+ });
+
+ clientExists = true;
+ }
+ }
+ });
+
+ ws.on('close', () => { connectionClosed = true; clientExists = false; RemoveClient(ws, joinedMUCs); });
+});
+
+function Error(ws) {
+ ws.send(XMLBuilder.create("close").attribute("xmlns", "urn:ietf:params:xml:ns:xmpp-framing").toString());
+ ws.close();
+}
+
+function RemoveClient(ws, joinedMUCs) {
+ let clientIndex = global.Clients.findIndex(i => i.client == ws);
+ let client = global.Clients[clientIndex];
+
+ if (clientIndex == -1) return;
+
+ let ClientStatus = JSON.parse(client.lastPresenceUpdate.status);
+
+ updatePresenceForFriends(ws, "{}", false, true);
+
+ global.Clients.splice(clientIndex, 1);
+
+ for (let roomName of joinedMUCs) {
+ if (global.MUCs[roomName]) {
+ let memberIndex = global.MUCs[roomName].members.findIndex(i => i.accountId == client.accountId);
+
+ if (memberIndex != -1) global.MUCs[roomName].members.splice(memberIndex, 1);
+ }
+ }
+
+ let partyId = "";
+
+ try {
+ switch (true) {
+ case (!ClientStatus.Properties): break;
+ case (isObject(ClientStatus.Properties)): {
+ for (let key in ClientStatus.Properties) {
+ if (key.toLowerCase().startsWith("party.joininfo")) {
+ if (isObject(ClientStatus.Properties[key])) partyId = ClientStatus.Properties[key].partyId;
+ }
+ }
+ }
+ }
+ } catch {}
+
+ if (partyId && typeof partyId == "string") {
+ global.Clients.forEach(ClientData => {
+ if (client.accountId == ClientData.accountId) return;
+
+ ClientData.client.send(XMLBuilder.create("message")
+ .attribute("id", functions.MakeID().replace(/-/ig, "").toUpperCase())
+ .attribute("from", client.jid)
+ .attribute("xmlns", "jabber:client")
+ .attribute("to", ClientData.jid)
+ .element("body", JSON.stringify({
+ "type": "com.epicgames.party.memberexited",
+ "payload": {
+ "partyId": partyId,
+ "memberId": client.accountId,
+ "wasKicked": false
+ },
+ "timestamp": new Date().toISOString()
+ })).up().toString());
+ });
+ }
+
+ log.xmpp(`An xmpp client with the displayName ${client.displayName} has logged out.`);
+}
+
+async function getPresenceFromFriends(ws, accountId, jid) {
+ let friends = await Friends.findOne({ accountId: accountId }).lean();
+ if (!friends) return;
+
+ let accepted = friends.list.accepted;
+
+ accepted.forEach(friend => {
+ let ClientData = global.Clients.find(i => i.accountId == friend.accountId);
+ if (!ClientData) return;
+
+ let xml = XMLBuilder.create("presence")
+ .attribute("to", jid)
+ .attribute("xmlns", "jabber:client")
+ .attribute("from", ClientData.jid)
+ .attribute("type", "available")
+
+ if (ClientData.lastPresenceUpdate.away) xml = xml.element("show", "away").up().element("status", ClientData.lastPresenceUpdate.status).up();
+ else xml = xml.element("status", ClientData.lastPresenceUpdate.status).up();
+
+ ws.send(xml.toString());
+ });
+}
+
+async function updatePresenceForFriends(ws, body, away, offline) {
+ let SenderIndex = global.Clients.findIndex(i => i.client == ws);
+ let SenderData = global.Clients[SenderIndex];
+
+ if (SenderIndex == -1) return;
+
+ global.Clients[SenderIndex].lastPresenceUpdate.away = away;
+ global.Clients[SenderIndex].lastPresenceUpdate.status = body;
+
+ let friends = await Friends.findOne({ accountId: SenderData.accountId });
+ let accepted = friends.list.accepted;
+
+ accepted.forEach(friend => {
+ let ClientData = global.Clients.find(i => i.accountId == friend.accountId);
+ if (!ClientData) return;
+
+ let xml = XMLBuilder.create("presence")
+ .attribute("to", ClientData.jid)
+ .attribute("xmlns", "jabber:client")
+ .attribute("from", SenderData.jid)
+ .attribute("type", offline ? "unavailable" : "available");
+
+ if (away) xml = xml.element("show", "away").up().element("status", body).up();
+ else xml = xml.element("status", body).up();
+
+ ClientData.client.send(xml.toString());
+ });
+}
+
+function sendXmppMessageToClient(senderJid, msg, body) {
+ if (typeof body == "object") body = JSON.stringify(body);
+
+ let receiver = global.Clients.find(i => i.jid.split("/")[0] == msg.root.attributes.to || i.jid == msg.root.attributes.to);
+ if (!receiver) return;
+
+ receiver.client.send(XMLBuilder.create("message")
+ .attribute("from", senderJid)
+ .attribute("id", msg.root.attributes.id)
+ .attribute("to", receiver.jid)
+ .attribute("xmlns", "jabber:client")
+ .element("body", `${body}`).up().toString());
+}
+
+function getMUCmember(roomName, displayName, accountId, resource) {
+ return `${roomName}@muc.${domain}/${encodeURI(displayName)}:${accountId}:${resource}`;
+}
+
+function isObject(value) {
+ if (typeof value == "object" && !Array.isArray(value)) return true;
+ else return false;
+}
+
+function isJSON(str) {
+ try {
+ JSON.parse(str)
+ } catch (err) {
+ return false;
+ }
+ return true;
+}
\ No newline at end of file