├── .gitignore ├── README.md ├── koalageddon └── v1 │ └── steamclient-patterns.json ├── origin └── v1 │ └── entitlements.json ├── steam ├── v1 │ └── dlc.json └── v2 │ └── dlc.json └── ubisoft └── v1 └── products.jsonc /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # public-entitlements 2 | 3 | A public repository of Origin entitlements and Ubisoft products. 4 | -------------------------------------------------------------------------------- /koalageddon/v1/steamclient-patterns.json: -------------------------------------------------------------------------------- 1 | { 2 | "IsAppDLCEnabled": "55 8B EC 83 EC ?? A1 ?? ?? ?? ?? 53 56 8B D9 83 38 ?? 57 89 5D E4", 3 | "IsSubscribedApp": "55 8B EC 8B 45 08 83 EC ?? 85 C0 79", 4 | "GetDLCDataByIndex": "55 8B EC 83 7D 10 ?? 8B C1", 5 | "SharedLibraryLockStatus": "55 8B EC 83 EC ?? 53 56 89 4D FC 8D 4D C8", 6 | "SharedLibraryStopPlaying": "55 8B EC 81 EC ?? ?? ?? ?? 53 56 57 89 4D ?? 8D 4D" 7 | } 8 | -------------------------------------------------------------------------------- /origin/v1/entitlements.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "___name": "Deluxe Upgrade Pack", 4 | "entitlementTag": "CITIES_SKYLINES_DELUXE", 5 | "entitlementType": "DEFAULT", 6 | "groupName": "CITIES_SKYLINES", 7 | "productId": "Origin.OFR.50.0002833", 8 | "___options": "replace" 9 | }, 10 | { 11 | "___name": "After Dark", 12 | "entitlementTag": "CITIES_SKYLINES_AFTER_DARK", 13 | "entitlementType": "DEFAULT", 14 | "groupName": "CITIES_SKYLINES", 15 | "productId": "Origin.OFR.50.0002840" 16 | }, 17 | { 18 | "___name": "Campus", 19 | "entitlementTag": "CITIES_SKYLINES_CAMPUS", 20 | "entitlementType": "DEFAULT", 21 | "groupName": "CITIES_SKYLINES", 22 | "productId": "Origin.OFR.50.0003562" 23 | }, 24 | { 25 | "___name": "Green Cities", 26 | "entitlementTag": "CITIES_SKYLINES_GREEN_CITIES", 27 | "entitlementType": "DEFAULT", 28 | "groupName": "CITIES_SKYLINES", 29 | "productId": "Origin.OFR.50.0002844" 30 | }, 31 | { 32 | "___name": "Industries", 33 | "entitlementTag": "CITIES_SKYLINES_INDUSTRIES", 34 | "entitlementType": "DEFAULT", 35 | "groupName": "CITIES_SKYLINES", 36 | "productId": "Origin.OFR.50.0003113" 37 | }, 38 | { 39 | "___name": "Mass Transit", 40 | "entitlementTag": "CITIES_SKYLINES_MASS_TRANSIT", 41 | "entitlementType": "DEFAULT", 42 | "groupName": "CITIES_SKYLINES", 43 | "productId": "Origin.OFR.50.0002843" 44 | }, 45 | { 46 | "___name": "Natural Disasters", 47 | "entitlementTag": "CITIES_SKYLINES_NATURAL_DISASTERS", 48 | "entitlementType": "DEFAULT", 49 | "groupName": "CITIES_SKYLINES", 50 | "productId": "Origin.OFR.50.0002842" 51 | }, 52 | { 53 | "___name": "Parklife", 54 | "entitlementTag": "CITIES_SKYLINES_PARKLIFE", 55 | "entitlementType": "DEFAULT", 56 | "groupName": "CITIES_SKYLINES", 57 | "productId": "Origin.OFR.50.0002845" 58 | }, 59 | { 60 | "___name": "Pearls From the East", 61 | "entitlementTag": "CITIES_SKYLINES_PEARLS_FROM_EAST", 62 | "entitlementType": "DEFAULT", 63 | "groupName": "CITIES_SKYLINES", 64 | "productId": "Origin.OFR.50.0002850" 65 | }, 66 | { 67 | "___name": "Snowfall", 68 | "entitlementTag": "CITIES_SKYLINES_SNOWFALL", 69 | "entitlementType": "DEFAULT", 70 | "groupName": "CITIES_SKYLINES", 71 | "productId": "Origin.OFR.50.0002841" 72 | }, 73 | { 74 | "___name": "Sunset Harbor", 75 | "entitlementTag": "CITIES_SKYLINES_SUNSET_HARBOR", 76 | "entitlementType": "DEFAULT", 77 | "groupName": "CITIES_SKYLINES", 78 | "productId": "Origin.OFR.50.0003907" 79 | }, 80 | { 81 | "___name": "Concerts", 82 | "entitlementTag": "CITIES_SKYLINES_CONCERTS", 83 | "entitlementType": "DEFAULT", 84 | "groupName": "CITIES_SKYLINES", 85 | "productId": "Origin.OFR.50.0002838" 86 | }, 87 | { 88 | "___name": "All That Jazz", 89 | "entitlementTag": "CITIES_SKYLINES_ALL_THAT_JAZZ", 90 | "entitlementType": "DEFAULT", 91 | "groupName": "CITIES_SKYLINES", 92 | "productId": "Origin.OFR.50.0002836" 93 | }, 94 | { 95 | "___name": "Campus Rock Radio", 96 | "entitlementTag": "CITIES_SKYLINES_CAMPUS_RADIO", 97 | "entitlementType": "DEFAULT", 98 | "groupName": "CITIES_SKYLINES", 99 | "productId": "Origin.OFR.50.0003565" 100 | }, 101 | { 102 | "___name": "Coast to Coast Radio", 103 | "entitlementTag": "CITIES_SKYLINES_COAST_TO_COAST", 104 | "entitlementType": "DEFAULT", 105 | "groupName": "CITIES_SKYLINES", 106 | "productId": "Origin.OFR.50.0003909" 107 | }, 108 | { 109 | "___name": "Country Road Radio", 110 | "entitlementTag": "CITIES_SKYLINES_COUNTRY_ROAD_RADIO", 111 | "entitlementType": "DEFAULT", 112 | "groupName": "CITIES_SKYLINES", 113 | "productId": "Origin.OFR.50.0002837" 114 | }, 115 | { 116 | "___name": "Deep Focus Radio", 117 | "entitlementTag": "CITIES_SKYLINES_DEEP_FOCUS", 118 | "entitlementType": "DEFAULT", 119 | "groupName": "CITIES_SKYLINES", 120 | "productId": "Origin.OFR.50.0003564" 121 | }, 122 | { 123 | "___name": "Downtown Radio", 124 | "entitlementTag": "CITIES_SKYLINES_DOWNTOWN_RADIO", 125 | "entitlementType": "DEFAULT", 126 | "groupName": "CITIES_SKYLINES", 127 | "productId": "Origin.OFR.50.0003895" 128 | }, 129 | { 130 | "___name": "Relaxation Station", 131 | "entitlementTag": "CITIES_SKYLINES_RELAXATION_STATION", 132 | "entitlementType": "DEFAULT", 133 | "groupName": "CITIES_SKYLINES", 134 | "productId": "Origin.OFR.50.0002834" 135 | }, 136 | { 137 | "___name": "Rock City Radio", 138 | "entitlementTag": "CITIES_SKYLINES_ROCK_CITY_RADIO", 139 | "entitlementType": "DEFAULT", 140 | "groupName": "CITIES_SKYLINES", 141 | "productId": "Origin.OFR.50.0002835" 142 | }, 143 | { 144 | "___name": "Synthetic Dawn Radio", 145 | "entitlementTag": "CITIES_SKYLINES_SYNTHETIC_DAWN_RADIO", 146 | "entitlementType": "DEFAULT", 147 | "groupName": "CITIES_SKYLINES", 148 | "productId": "Origin.OFR.50.0003114" 149 | }, 150 | { 151 | "___name": "Content Creator Pack: Art Deco", 152 | "entitlementTag": "CITIES_SKYLINES_CCP_ART_DECO", 153 | "entitlementType": "DEFAULT", 154 | "groupName": "CITIES_SKYLINES", 155 | "productId": "Origin.OFR.50.0002847" 156 | }, 157 | { 158 | "___name": "Content Creator Pack: European Suburbia", 159 | "entitlementTag": "CITIES_SKYLINES_CCP_EU_SUBURBIA", 160 | "entitlementType": "DEFAULT", 161 | "groupName": "CITIES_SKYLINES", 162 | "productId": "Origin.OFR.50.0002849" 163 | }, 164 | { 165 | "___name": "Content Creator Pack: High-Tech Buildings", 166 | "entitlementTag": "CITIES_SKYLINES_CCP_HIGH_TECH", 167 | "entitlementType": "DEFAULT", 168 | "groupName": "CITIES_SKYLINES", 169 | "productId": "Origin.OFR.50.0002848" 170 | }, 171 | { 172 | "___name": "Content Creator Pack: Modern City", 173 | "entitlementTag": "CITIES_SKYLINES_CCP_MODERN_CITY_CENTER", 174 | "entitlementType": "DEFAULT", 175 | "groupName": "CITIES_SKYLINES", 176 | "productId": "Origin.OFR.50.0003894" 177 | }, 178 | { 179 | "___name": "Content Creator Pack: Modern Japan", 180 | "entitlementTag": "CITIES_SKYLINES_CCP_MODERN_JAPAN", 181 | "entitlementType": "DEFAULT", 182 | "groupName": "CITIES_SKYLINES", 183 | "productId": "Origin.OFR.50.0003908" 184 | }, 185 | { 186 | "___name": "Content Creator Pack: University City", 187 | "entitlementTag": "CITIES_SKYLINES_CCP_UNIVERSITY_CITY", 188 | "entitlementType": "DEFAULT", 189 | "groupName": "CITIES_SKYLINES", 190 | "productId": "Origin.OFR.50.0003563" 191 | }, 192 | { 193 | "___name": "Match Day", 194 | "entitlementTag": "CITIES_SKYLINES_MATCH_DAY", 195 | "entitlementType": "DEFAULT", 196 | "groupName": "CITIES_SKYLINES", 197 | "productId": "Origin.OFR.50.0002846", 198 | "___v1only": true 199 | }, 200 | { 201 | "___name": "Carols, Candles and Candy", 202 | "entitlementTag": "CITIES_SKYLINES_CAROLS_CANDLES_CANDY", 203 | "entitlementType": "DEFAULT", 204 | "groupName": "CITIES_SKYLINES", 205 | "productId": "Origin.OFR.50.0002839", 206 | "___v1only": true 207 | }, 208 | { 209 | "___name": "", 210 | "entitlementTag": "DELUXE_UPGRADE", 211 | "entitlementType": "DEFAULT", 212 | "groupName": "BEYONDPC", 213 | "productId": "Origin.OFR.50.0005118", 214 | "version": "1" 215 | }, 216 | { 217 | "___name": "", 218 | "entitlementTag": "EA_PLAY_PRO_CONTENT", 219 | "entitlementType": "DEFAULT", 220 | "groupName": "BEYONDPC", 221 | "productId": "Origin.OFR.50.0005144", 222 | "version": "1" 223 | }, 224 | { 225 | "___name": "Awakened", 226 | "entitlementTag": "DS3:PDLC_DLC1", 227 | "entitlementType": "DEFAULT", 228 | "groupName": "DeadSpace3PC", 229 | "productId": "OFB-EAST:109546295" 230 | }, 231 | { 232 | "___name": "Witness the Truth Pack", 233 | "entitlementTag": "DS3:PDLC_WITNESS", 234 | "entitlementType": "DEFAULT", 235 | "groupName": "DeadSpace3PC", 236 | "productId": "OFB-EAST:109546302" 237 | }, 238 | { 239 | "___name": "First Contact Pack", 240 | "entitlementTag": "DS3:PDLC_FIRSTCONTACT", 241 | "entitlementType": "DEFAULT", 242 | "groupName": "DeadSpace3PC", 243 | "productId": "OFB-EAST:109546301" 244 | }, 245 | { 246 | "___name": "Bot Accelerator", 247 | "entitlementTag": "DS3:PDLC_BOTACCELERATOR", 248 | "entitlementType": "DEFAULT", 249 | "groupName": "DeadSpace3PC", 250 | "productId": "OFB-EAST:109546362" 251 | }, 252 | { 253 | "___name": "Bot Capacity Upgrade", 254 | "entitlementTag": "DS3:PDLC_BOTCAPACITY", 255 | "entitlementType": "DEFAULT", 256 | "groupName": "DeadSpace3PC", 257 | "productId": "OFB-EAST:109546361" 258 | }, 259 | { 260 | "___name": "Tundra Recon Pack", 261 | "entitlementTag": "DS3:PDLC_TUNDRA", 262 | "entitlementType": "DEFAULT", 263 | "groupName": "DeadSpace3PC", 264 | "productId": "OFB-EAST:109546298" 265 | }, 266 | { 267 | "___name": "Marauder Pack", 268 | "entitlementTag": "DS3:PDLC_MARAUDER", 269 | "entitlementType": "DEFAULT", 270 | "groupName": "DeadSpace3PC", 271 | "productId": "OFB-EAST:109546299" 272 | }, 273 | { 274 | "___name": "Tau Volantis Survival Kit", 275 | "entitlementTag": "DS3:PDLC_BUNDLE1", 276 | "entitlementType": "DEFAULT", 277 | "groupName": "DeadSpace3PC", 278 | "productId": "OFB-EAST:59716" 279 | }, 280 | { 281 | "___name": "Bot Personality Pack", 282 | "entitlementTag": "DS3:PDLC_BOTPERSONALITY", 283 | "entitlementType": "DEFAULT", 284 | "groupName": "DeadSpace3PC", 285 | "productId": "OFB-EAST:109546360" 286 | }, 287 | { 288 | "___name": "Sharpshooter Pack", 289 | "entitlementTag": "DS3:PDLC_SHARPSHOOTER", 290 | "entitlementType": "DEFAULT", 291 | "groupName": "DeadSpace3PC", 292 | "productId": "OFB-EAST:109546300" 293 | }, 294 | { 295 | "___name": "Limited Edition", 296 | "entitlementTag": "ORIGIN_DOWNLOAD", 297 | "entitlementType": "ORIGIN_DOWNLOAD", 298 | "groupName": "", 299 | "productId": "OFB-EAST:109546710" 300 | }, 301 | { 302 | "___name": "EG-900 SMG", 303 | "entitlementTag": "DS3:PDLC_EG900", 304 | "entitlementType": "DEFAULT", 305 | "groupName": "DeadSpace3PC", 306 | "productId": "OFB-EAST:109546363" 307 | }, 308 | { 309 | "___name": "Enervator", 310 | "entitlementTag": "DS3:PDLC_ENERVATOR", 311 | "entitlementType": "DEFAULT", 312 | "groupName": "DeadSpace3PC", 313 | "productId": "OFB-EAST:109546714" 314 | }, 315 | { 316 | "___name": "Broadbow Arc Cutter", 317 | "entitlementTag": "DS3:PROMO:SlimJim:Line", 318 | "entitlementType": "DEFAULT", 319 | "groupName": "DeadSpace3PC", 320 | "productId": "OFB-EAST:55003" 321 | }, 322 | { 323 | "___name": "Rapido CAW-4b", 324 | "entitlementTag": "DS3:PROMO:SlimJim:P90", 325 | "entitlementType": "DEFAULT", 326 | "groupName": "DeadSpace3PC", 327 | "productId": "OFB-EAST:55004" 328 | }, 329 | { 330 | "___name": "The Skewer", 331 | "entitlementTag": "DS3:PROMO:SlimJim:Javelin", 332 | "entitlementType": "DEFAULT", 333 | "groupName": "DeadSpace3PC", 334 | "productId": "OFB-EAST:55002" 335 | }, 336 | { 337 | "___name": "F1® 22 Champions Edition", 338 | "entitlementTag": "ORIGIN_DOWNLOAD", 339 | "entitlementType": "ORIGIN_DOWNLOAD", 340 | "groupName": "", 341 | "productId": "Origin.OFR.50.0004955" 342 | }, 343 | { 344 | "___name": "F1® 22: Early Pre-Order Incentive", 345 | "entitlementTag": "EAR_CHAMPS_INT", 346 | "entitlementType": "DEFAULT", 347 | "groupName": "F1-2022PC", 348 | "productId": "Origin.OFR.50.0004924" 349 | }, 350 | { 351 | "___name": "F1® 22: Champions Content Bundle", 352 | "entitlementTag": "DLX_UPGRADE_INT", 353 | "entitlementType": "DEFAULT", 354 | "groupName": "F1-2022PC", 355 | "productId": "Origin.OFR.50.0004950" 356 | }, 357 | { 358 | "___name": "F1® 22: 18,000 PitCoin", 359 | "entitlementTag": "VC_18000", 360 | "entitlementType": "DEFAULT", 361 | "groupName": "F1-2022PC", 362 | "productId": "Origin.OFR.50.0004937" 363 | }, 364 | { 365 | "___name": "F1® 22: Champions Edition Content Pack", 366 | "entitlementTag": "CHAMPS_INT", 367 | "entitlementType": "DEFAULT", 368 | "groupName": "F1-2022PC", 369 | "productId": "Origin.OFR.50.0004923" 370 | }, 371 | { 372 | "___name": "F1® 22: Pre-Order Content", 373 | "entitlementTag": "STD_INT", 374 | "entitlementType": "DEFAULT", 375 | "groupName": "F1-2022PC", 376 | "productId": "Origin.OFR.50.0004921" 377 | }, 378 | { 379 | "___name": "", 380 | "entitlementTag": "F23_Deluxe_Preorder_Content", 381 | "entitlementType": "DEFAULT", 382 | "groupName": "F1-2023PC", 383 | "productId": "Origin.OFR.50.0005199" 384 | }, 385 | { 386 | "___name": "", 387 | "entitlementTag": "F23_Deluxe_Content_Pack", 388 | "entitlementType": "DEFAULT", 389 | "groupName": "F1-2023PC", 390 | "productId": "Origin.OFR.50.0005201" 391 | }, 392 | { 393 | "___name": "", 394 | "entitlementTag": "F23_Deluxe_Content_Bundle", 395 | "entitlementType": "DEFAULT", 396 | "groupName": "F1-2023PC", 397 | "productId": "Origin.OFR.50.0005233" 398 | }, 399 | { 400 | "___name": "Frostpunk - The Rifts", 401 | "entitlementTag": "FROSTPUNK_DLC_1", 402 | "entitlementType": "DEFAULT", 403 | "groupName": "OPP", 404 | "productId": "Origin.OFR.50.0003751" 405 | }, 406 | { 407 | "___name": "Frostpunk - The Last Autumn", 408 | "entitlementTag": "FROSTPUNK_DLC_2", 409 | "entitlementType": "DEFAULT", 410 | "groupName": "OPP", 411 | "productId": "Origin.OFR.50.0003752" 412 | }, 413 | { 414 | "___name": "Frostpunk - On The Edge", 415 | "entitlementTag": "FROSTPUNK_DLC_3", 416 | "entitlementType": "DEFAULT", 417 | "groupName": "OPP", 418 | "productId": "Origin.OFR.50.0003753" 419 | }, 420 | { 421 | "___name": "Frostpunk - Season Pass", 422 | "entitlementTag": "FROSTPUNK_SEASON_PASS", 423 | "entitlementType": "DEFAULT", 424 | "groupName": "OPP", 425 | "productId": "Origin.OFR.50.0003754" 426 | }, 427 | { 428 | "___name": "GRID Legends", 429 | "entitlementTag": "ONLINE_ACCESS", 430 | "entitlementType": "DEFAULT", 431 | "groupName": "GRID_5PC", 432 | "productId": "Origin.OFR.50.0004676" 433 | }, 434 | { 435 | "___name": "GRID Legends: Deluxe Edition", 436 | "entitlementTag": "ONLINE_ACCESS", 437 | "entitlementType": "DEFAULT", 438 | "groupName": "GRID_5PC", 439 | "productId": "Origin.OFR.50.0004720" 440 | }, 441 | { 442 | "___name": "GRID Legends: Deluxe Upgrade", 443 | "entitlementTag": "GL_DELUXE_UPGRADE", 444 | "entitlementType": "DEFAULT", 445 | "groupName": "GRID_5PC", 446 | "productId": "Origin.OFR.50.0004847" 447 | }, 448 | { 449 | "___name": "GRID Legends: Voltz Pack", 450 | "entitlementTag": "GL_Voltz_Legends_Pack", 451 | "entitlementType": "DEFAULT", 452 | "groupName": "GRID_5PC", 453 | "productId": "Origin.OFR.50.0004750" 454 | }, 455 | { 456 | "___name": "GRID Legends: Seneca & Ravenwest Double Pack", 457 | "entitlementTag": "GL_Preorder_Content", 458 | "entitlementType": "DEFAULT", 459 | "groupName": "GRID_5PC", 460 | "productId": "Origin.OFR.50.0004748" 461 | }, 462 | { 463 | "___name": "GRID Legends: Mechanic Pass", 464 | "entitlementTag": "GL_Mechanics_Pass", 465 | "entitlementType": "DEFAULT", 466 | "groupName": "GRID_5PC", 467 | "productId": "Origin.OFR.50.0004749" 468 | }, 469 | { 470 | "___name": "GRID Legends: Valentin's Classic Car-Nage", 471 | "entitlementTag": "GL_DLC1", 472 | "entitlementType": "DEFAULT", 473 | "groupName": "GRID_5PC", 474 | "productId": "Origin.OFR.50.0004724" 475 | }, 476 | { 477 | "___name": "GRID Legends: DLC2", 478 | "entitlementTag": "GL_DLC2", 479 | "entitlementType": "DEFAULT", 480 | "groupName": "GRID_5PC", 481 | "productId": "Origin.OFR.50.0004743" 482 | }, 483 | { 484 | "___name": "GRID Legends: DLC3", 485 | "entitlementTag": "GL_DLC3", 486 | "entitlementType": "DEFAULT", 487 | "groupName": "GRID_5PC", 488 | "productId": "Origin.OFR.50.0004744" 489 | }, 490 | { 491 | "___name": "GRID Legends: DLC4", 492 | "entitlementTag": "GL_DLC4", 493 | "entitlementType": "DEFAULT", 494 | "groupName": "GRID_5PC", 495 | "productId": "Origin.OFR.50.0004745" 496 | }, 497 | { 498 | "___name": "Seed of Evil", 499 | "entitlementTag": "MUTANT_YEAR_ZERO_SOE", 500 | "entitlementType": "DEFAULT", 501 | "groupName": "MUTANT_YEAR_ZERO", 502 | "productId": "Origin.OFR.50.0003696" 503 | }, 504 | { 505 | "___name": "Player Attire Package", 506 | "entitlementTag": "TEST", 507 | "entitlementType": "DEFAULT", 508 | "groupName": "OPP", 509 | "productId": "Origin.OFR.50.0003994" 510 | }, 511 | { 512 | "___name": "NPC Attire Package", 513 | "entitlementTag": "TEST", 514 | "entitlementType": "DEFAULT", 515 | "groupName": "OPP", 516 | "productId": "Origin.OFR.50.0003995" 517 | }, 518 | { 519 | "___name": "Swimwear", 520 | "entitlementTag": "TEST", 521 | "entitlementType": "DEFAULT", 522 | "groupName": "OPP", 523 | "productId": "Origin.OFR.50.0003996" 524 | }, 525 | { 526 | "___name": "NFS Heat: K.S Edition Mitsubishi Lancer Evolution X", 527 | "entitlementTag": "PREORDER_CONTENT_ACCESS", 528 | "entitlementType": "DEFAULT", 529 | "groupName": "NFS20PC", 530 | "productId": "Origin.OFR.50.0003423", 531 | "___url": "/need-for-speed/need-for-speed-heat/FAKE_URL", 532 | "___description": "
    \n
  • K.S Edition Mitsubishi Lancer Evolution X Starter Car
  • \n
      \n
    • Exclusive Origin Access wrap
    • \n
    \n
", 533 | "___downloadable": "False" 534 | }, 535 | { 536 | "___name": "NFS Heat: Deluxe Edition Upgrade Content", 537 | "entitlementTag": "DELUXE_CONTENT_ACCESS", 538 | "entitlementType": "DEFAULT", 539 | "groupName": "NFS20PC", 540 | "productId": "Origin.OFR.50.0003455", 541 | "___url": "/need-for-speed/need-for-speed-heat/FAKE_URL", 542 | "___description": "Hustle by day and risk it all at night in Need for Speed™ Heat, a thrilling race experience that pits you against a city’s rogue police force as you battle your way into street racing’s elite.

\n\nUPGRADE to the Deluxe Edition and get noticed in Need for Speed™ Heat with 3 additional K.S Edition cars unlocked through progression, 4 exclusive character outfits and a REP and BANK boost.

\n\nDeluxe Edition Content:
\nK.S Edition BMW i8 Coupe
\nAvailable at REP level 10 from player garage

\n \nK.S Edition Mercedes C63 AMG Coupe
\nAvailable at REP level 14 from player garage

\n\nK.S Edition Chevrolet Corvette Grand Sport
\nAvailable at REP level 18 from player garage

\n\n4x Character Outfits
\nAvailable in character customization
\nAll items are swappable and fit both male and female avatars

\n\nREP Boost
\nREP rewards increased by 5%

\n\nBANK Boost
\nBANK rewards increased by 5%", 543 | "___downloadable": "False" 544 | }, 545 | { 546 | "___name": "NFS Heat: Keys to the Map", 547 | "entitlementTag": "MAP_REVEAL_CONTENT_ACCESS", 548 | "entitlementType": "DEFAULT", 549 | "groupName": "NFS20PC", 550 | "productId": "Origin.OFR.50.0003885", 551 | "___url": "/need-for-speed/need-for-speed-heat/addon/need-for-speed-heat--keys-to-the-map", 552 | "___description": "Shift into high gear with the keys to the Need for Speed Heat Map. Every collectible, location and activity in every district will be revealed instantly, so no need to slow down to explore. From safe houses to street art, find exactly what you want, faster!", 553 | "___downloadable": "False" 554 | }, 555 | { 556 | "___name": "NFS Heat: McLaren F1 Black Market Delivery", 557 | "entitlementTag": "MCLAREN_F1_CONTENT_ACCESS", 558 | "entitlementType": "DEFAULT", 559 | "groupName": "NFS20PC", 560 | "productId": "Origin.OFR.50.0003886", 561 | "___url": "/need-for-speed/need-for-speed-heat/addon/need-for-speed-heat--mclaren-f1-black-market-delivery", 562 | "___description": "A new shipment has arrived to the dockyard of Palm City. Get the McLaren F1 Black Market Delivery to burn all limits with the McLaren F1 through a unique set of challenges. Plus, receive hot, new special customization parts, character outfits, vanity items, and decals as rewards!", 563 | "___downloadable": "False" 564 | }, 565 | { 566 | "___name": "NFS Heat: Red Bull Car Park Drift Nissan 370 Z", 567 | "entitlementTag": "REDBULL_CONTENT_ACCESS", 568 | "entitlementType": "DEFAULT", 569 | "groupName": "NFS20PC", 570 | "productId": "Origin.OFR.50.0003935", 571 | "___url": "/need-for-speed/need-for-speed-heat/FAKE_URL", 572 | "___description": "", 573 | "___downloadable": "False" 574 | }, 575 | { 576 | "___name": "Limited Edition", 577 | "entitlementTag": "PROJECT10_CODE_CONSUMED_LE1", 578 | "entitlementType": "DEFAULT", 579 | "groupName": "NFS13PC", 580 | "productId": "OFB-EAST:50882" 581 | }, 582 | { 583 | "___name": "Strike Pack (preorder bonus)", 584 | "entitlementTag": "NFSMW_PROMO_STRIKE", 585 | "entitlementType": "DEFAULT", 586 | "groupName": "NFS13PC", 587 | "productId": "OFB-EAST:51196" 588 | }, 589 | { 590 | "___name": "Speed Pack (preorder bonus)", 591 | "entitlementTag": "NFSMW_PROMO_SPEED", 592 | "entitlementType": "DEFAULT", 593 | "groupName": "NFS13PC", 594 | "productId": "OFB-EAST:51195" 595 | }, 596 | { 597 | "___name": "Power Pack (preorder bonus)", 598 | "entitlementTag": "NFSMW_PROMO_POWER", 599 | "entitlementType": "DEFAULT", 600 | "groupName": "NFS13PC", 601 | "productId": "OFB-EAST:51082" 602 | }, 603 | { 604 | "___name": "Ultimate Speed Pack", 605 | "entitlementTag": "NFSMW_DLCPACK1", 606 | "entitlementType": "DEFAULT", 607 | "groupName": "NFS13PC", 608 | "productId": "OFB-EAST:58267" 609 | }, 610 | { 611 | "___name": "Terminal Velocity Pack", 612 | "entitlementTag": "NFSMW_DLCPACK2", 613 | "entitlementType": "DEFAULT", 614 | "groupName": "NFS13PC", 615 | "productId": "OFB-EAST:109548131" 616 | }, 617 | { 618 | "___name": "Movie Legends Pack", 619 | "entitlementTag": "NFSMW_DLCPACK3", 620 | "entitlementType": "DEFAULT", 621 | "groupName": "NFS13PC", 622 | "productId": "OFB-EAST:109548104" 623 | }, 624 | { 625 | "___name": "NFS Heroes Pack", 626 | "entitlementTag": "NFSMW_DLCPACK4", 627 | "entitlementType": "DEFAULT", 628 | "groupName": "NFS13PC", 629 | "productId": "OFB-EAST:109548103" 630 | }, 631 | { 632 | "___name": "Deluxe DLC Bundle", 633 | "entitlementTag": "NFSMW_ULTIMATE_OLP_PACK", 634 | "entitlementType": "DEFAULT", 635 | "groupName": "NFS13PC", 636 | "productId": "OFB-EAST:109548147" 637 | }, 638 | { 639 | "___name": "Slim Jim Promo - Dodge Charger SRT8", 640 | "entitlementTag": "NFSMW_PROMO_SLIMJIM_DODGE", 641 | "entitlementType": "DEFAULT", 642 | "groupName": "NFS13PC", 643 | "productId": "OFB-EAST:52690" 644 | }, 645 | { 646 | "___name": "Premium Modification Unlock - Pro Mods for every car in the game", 647 | "entitlementTag": "NFSMW_MOD_TS_PACK_ALL", 648 | "entitlementType": "DEFAULT", 649 | "groupName": "NFS13PC", 650 | "productId": "OFB-EAST:109548145" 651 | }, 652 | { 653 | "___name": "NFS Payback: High Roller Pack", 654 | "entitlementTag": "DELUXE_CONTENT_ACCESS", 655 | "entitlementType": "DEFAULT", 656 | "groupName": "NFS18PC", 657 | "productId": "Origin.OFR.50.0002194", 658 | "___url": "/need-for-speed/need-for-speed-payback/FAKE_URL", 659 | "___description": "Stand out from the crowd with exclusive customization items and receive in-game discounts, Rep bonuses and five shipments to get your adventure started.
High Roller Pack includes:
\n• Upcoming Story Mission Pack
\n• Exclusive Deluxe Edition NOS color (Can be applied to 5 cars)
\n• Exclusive Deluxe Edition license plate
\n• Exclusive Deluxe Edition leaderboard icon
\n• Five shipments
\n• 5% rep bonus
\n• 10% discount on in-game purchases", 660 | "___downloadable": "False" 661 | }, 662 | { 663 | "___name": "NFS Payback: Alfa Romeo Quadrifoglio", 664 | "entitlementTag": "ALFA_ROMEO_QUAD_CONTENT_ACCESS", 665 | "entitlementType": "DEFAULT", 666 | "groupName": "NFS18PC", 667 | "productId": "Origin.OFR.50.0002624", 668 | "___url": "/need-for-speed/need-for-speed-payback/addon/need-for-speed-payback-alfa-romeo-quadrifoglio", 669 | "___description": "Strike luck in a gamblers paradise with the Alfa Romeo Giulia Quadrifoglio. Sleek with distinctive Italian design made for making an impact when rolling up to the starting line.", 670 | "___downloadable": "False" 671 | }, 672 | { 673 | "___name": "NFS Payback: Platinum Car Pack", 674 | "entitlementTag": "PREORDER_CONTENT_ACCESS", 675 | "entitlementType": "DEFAULT", 676 | "groupName": "NFS18PC", 677 | "productId": "Origin.OFR.50.0002195", 678 | "___url": "/need-for-speed/need-for-speed-payback/FAKE_URL", 679 | "___description": "Drive straight into the action on the roads of Fortune Valley with instant access to five uniquely customized and tuned iconic cars, each with exclusive Platinum Blue Tire Smoke with the Need for Speed™ Payback - Platinum Car Pack.

\n\nIncludes:
\n• Chevrolet Camaro SS 1967
\n• Dodge Charger R/T 1969
\n• Ford F-150 Raptor 2016
\n• Nissan 350Z 2008
\n• Volkswagen Golf GTI Clubsport 2016
\n• Platinum Blue Tire Smoke", 680 | "___downloadable": "False" 681 | }, 682 | { 683 | "___name": "NFS Payback: Fortune Valley Map Shortcuts", 684 | "entitlementTag": "MAP_SHORTCUTS_CONTENT_ACCESS", 685 | "entitlementType": "DEFAULT", 686 | "groupName": "NFS18PC", 687 | "productId": "Origin.OFR.50.0002428", 688 | "___url": "/need-for-speed/need-for-speed-payback/addon/fortune-valley-map-shortcuts", 689 | "___description": "Instantly reveal points of interest on your map of Fortune Valley. Find out where collectibles, activities and gas stations are located. Your very own map to success!", 690 | "___downloadable": "False" 691 | }, 692 | { 693 | "___name": "NFS Payback: Infiniti Q60 S", 694 | "entitlementTag": "INFINITI_Q60S_CONTENT_ACCESS", 695 | "entitlementType": "DEFAULT", 696 | "groupName": "NFS18PC", 697 | "productId": "Origin.OFR.50.0002430", 698 | "___url": "/need-for-speed/need-for-speed-payback/addon/infiniti-q60-s", 699 | "___description": "The Infiniti Q60 is a premium sports coupe that combines expressive design with exhilarating performance and dynamics. The taut, muscular lines of the exterior underline the Q60's considerable performance potential - reinforced by an advanced all-new 3.0-liter V6 twin-turbo engine.\nLower and wider than previous Infiniti coupes, the Q60's bold exterior expresses 'Powerful Elegance' - an Infiniti design language which gives the sports coupe a sinewy athleticism, confidently projecting a sense of motion and power.", 700 | "___downloadable": "False" 701 | }, 702 | { 703 | "___name": "NFS Payback: MINI John Cooper Works Countryman", 704 | "entitlementTag": "MINI_COUNTRYMAN_CONTENT_ACCESS", 705 | "entitlementType": "DEFAULT", 706 | "groupName": "NFS18PC", 707 | "productId": "Origin.OFR.50.0002431", 708 | "___url": "/need-for-speed/need-for-speed-payback/addon/mini-john-cooper-works-countryman", 709 | "___description": "The second generation of the MINI Countryman is the biggest and most versatile model in the entire range of the tradition-steeped British brand. And another superlative now applies to the power unit of the MINI John Cooper Works Countryman. With an output of 170 kW/231 hp, it is the most powerful engine ever to be fitted in a MINI: in combination with the standard all-wheel drive system ALL4 and a robust vehicle concept, it ensures that the latest addition to the family of top John Cooper Works athletes takes the MINI experience to a whole new level - in terms of both race track feeling on the road and extreme driving fun over unsurfaced terrain.", 710 | "___downloadable": "False" 711 | }, 712 | { 713 | "___name": "NFS Payback: Pontiac Firebird Superbuild", 714 | "entitlementTag": "PONTIAC_FIREBIRD_DERELICT_CONTENT_ACCESS", 715 | "entitlementType": "DEFAULT", 716 | "groupName": "NFS18PC", 717 | "productId": "Origin.OFR.50.0002432", 718 | "___url": "/need-for-speed/need-for-speed-payback/addon/pontiac-firebird-superbuild", 719 | "___description": "Be a bandit in the Pontiac Firebird.", 720 | "___downloadable": "False" 721 | }, 722 | { 723 | "___name": "NFS Payback: Aston Martin DB5 Superbuild", 724 | "entitlementTag": "ASTON_MARTIN_DERELICT_CONTENT_ACCESS", 725 | "entitlementType": "DEFAULT", 726 | "groupName": "NFS18PC", 727 | "productId": "Origin.OFR.50.0002433", 728 | "___url": "/need-for-speed/need-for-speed-payback/addon/aston-martin-db5-superbuild", 729 | "___description": "Drive faster than a thunderball in this classic movie car.", 730 | "___downloadable": "False" 731 | }, 732 | { 733 | "___name": "NFS Payback: Chevrolet Colorado ZR2", 734 | "entitlementTag": "CHEVROLET_COLORADO_CONTENT_ACCESS", 735 | "entitlementType": "DEFAULT", 736 | "groupName": "NFS18PC", 737 | "productId": "Origin.OFR.50.0002434", 738 | "___url": "/need-for-speed/need-for-speed-payback/addon/need-for-speed-payback-chevrolet-colorado-zr2", 739 | "___description": "Chevrolet Colorado ZR2 is ready to tear it up on the roads as well as in the dirt of Fortune Valley. With a beefed up engine you will leave the competition in a cloud of dust!", 740 | "___downloadable": "False" 741 | }, 742 | { 743 | "___name": "NFS Payback: Range Rover Sport SVR", 744 | "entitlementTag": "RANGE_ROVER_CONTENT_ACCESS", 745 | "entitlementType": "DEFAULT", 746 | "groupName": "NFS18PC", 747 | "productId": "Origin.OFR.50.0002435", 748 | "___url": "/need-for-speed/need-for-speed-payback/addon/need-for-speed-payback-range-rover-sport-svr", 749 | "___description": "Make your presence known with the impactful appearance of that the Range Rover Sport SVR brings both on and off road. Not only does it look the part, it also drives like a beast!", 750 | "___downloadable": "False" 751 | }, 752 | { 753 | "___name": "NFS Payback: Speedcross Story", 754 | "entitlementTag": "SPEEDCROSS_CONTENT_ACCESS", 755 | "entitlementType": "DEFAULT", 756 | "groupName": "NFS18PC", 757 | "productId": "Origin.OFR.50.0002440", 758 | "___url": "/need-for-speed/need-for-speed-payback/FAKE_URL", 759 | "___description": "Slide straight into the action in the Speedcross expansion! Follow the daring exploits of Mac as he competes to become the Speedcross King of Fortune Valley.

\n\nGet behind the wheel of Rav's custom Mini Countryman, and take on elite drivers from Rockport, Olympic City, Bayview, and Palmont, to defeat the reigning champion, Jason “Barracuda” Munroe, in the Fortune Valley Speedcross Series.

\n\nSpeedcross is a track-based time-trial hybrid of precision driving and offroad mayhem offering pulse-pounding, high-speed driving action. Drift, jump, and speed through the course on your way to Speedcross glory!

\n\nSpeedcross expansion features the new Speedcross game mode with a new questline, the new Speedcross build type and two new cars, the Infiniti Q60S & Mini John Cooper Works Countryman!", 760 | "___downloadable": "False" 761 | }, 762 | { 763 | "___name": "Preorder bonuses", 764 | "entitlementTag": "NFS22_PREORDER_CONTENT", 765 | "entitlementType": "DEFAULT", 766 | "groupName": "NFS22PC", 767 | "productId": "Origin.OFR.50.0004477", 768 | "___fakesub": true, 769 | "___comment": "some stuff is unlocked by faking EA Play subscription" 770 | }, 771 | { 772 | "___name": "Palace Edition bonuses", 773 | "entitlementTag": "NFS22_DELUXE_EDITION_CONTENT", 774 | "entitlementType": "DEFAULT", 775 | "groupName": "NFS22PC", 776 | "productId": "Origin.OFR.50.0004475" 777 | }, 778 | { 779 | "___name": "Palace Edition upgrade (?)", 780 | "entitlementTag": "NFS22_DELUXE_UPGRADE", 781 | "entitlementType": "DEFAULT", 782 | "groupName": "NFS22PC", 783 | "productId": "Origin.OFR.50.0004476" 784 | }, 785 | { 786 | "___name": "Keys to the City (future DLC?)", 787 | "entitlementTag": "NFS22_KEYSTOTHECITY_CONTENT", 788 | "entitlementType": "DEFAULT", 789 | "groupName": "NFS22PC", 790 | "productId": "Origin.OFR.50.0005165" 791 | }, 792 | { 793 | "___name": "Vol.3 Customs Pack", 794 | "entitlementTag": "NFS22_EPICCUSTOMSVOL3_CONTENT", 795 | "entitlementType": "DEFAULT", 796 | "groupName": "NFS22PC", 797 | "productId": "Origin.OFR.50.0005216" 798 | }, 799 | { 800 | "___name": "Robojets Swag Pack", 801 | "entitlementTag": "NFS22_LEGENDARYTHEMEVOL3_CONTENT", 802 | "entitlementType": "DEFAULT", 803 | "groupName": "NFS22PC", 804 | "productId": "Origin.OFR.50.0005217" 805 | }, 806 | { 807 | "___name": "Ford Mustang GT Legendary Custom Pack", 808 | "entitlementTag": "NFS22_SPEEDPASSVOL3_CONTENT", 809 | "entitlementType": "DEFAULT", 810 | "groupName": "NFS22PC", 811 | "productId": "Origin.OFR.50.0005218" 812 | }, 813 | { 814 | "___name": "Vol.4 Customs Pack", 815 | "entitlementTag": "NFS22_EPICCUSTOMSVOL4_CONTENT", 816 | "entitlementType": "DEFAULT", 817 | "groupName": "NFS22PC", 818 | "productId": "Origin.OFR.50.0005219" 819 | }, 820 | { 821 | "___name": "Hip Hop Origin Swag Pack", 822 | "entitlementTag": "NFS22_LEGENDARYTHEMEVOL4_CONTENT", 823 | "entitlementType": "DEFAULT", 824 | "groupName": "NFS22PC", 825 | "productId": "Origin.OFR.50.0005220" 826 | }, 827 | { 828 | "___name": "Lotus Exige S Legendary Custom Pack", 829 | "entitlementTag": "NFS22_SPEEDPASSVOL4_CONTENT", 830 | "entitlementType": "DEFAULT", 831 | "groupName": "NFS22PC", 832 | "productId": "Origin.OFR.50.0005221" 833 | }, 834 | { 835 | "___name": "Vol.5 Customs Pack", 836 | "entitlementTag": "NFS22_EPICCUSTOMSVOL5_CONTENT", 837 | "entitlementType": "DEFAULT", 838 | "groupName": "NFS22PC", 839 | "productId": "Origin.OFR.50.0005222" 840 | }, 841 | { 842 | "___name": "Trick or Street Swag Pack", 843 | "entitlementTag": "NFS22_LEGENDARYTHEMEVOL5_CONTENT", 844 | "entitlementType": "DEFAULT", 845 | "groupName": "NFS22PC", 846 | "productId": "Origin.OFR.50.0005223" 847 | }, 848 | { 849 | "___name": "Volkswagen Beetle (1963) Legendary Custom Pack", 850 | "entitlementTag": "NFS22_SPEEDPASSVOL5_CONTENT", 851 | "entitlementType": "DEFAULT", 852 | "groupName": "NFS22PC", 853 | "productId": "Origin.OFR.50.0005224" 854 | }, 855 | { 856 | "___name": "Vol.3 Catch-Up Pack", 857 | "entitlementTag": "NFS22_SPVOL3CATCHUP_CONTENT", 858 | "entitlementType": "DEFAULT", 859 | "groupName": "NFS22PC", 860 | "productId": "Origin.OFR.50.0005372" 861 | }, 862 | { 863 | "___name": "Vol.4 Catch-Up Pack", 864 | "entitlementTag": "NFS22_SPVOL4CATCHUP_CONTENT", 865 | "entitlementType": "DEFAULT", 866 | "groupName": "NFS22PC", 867 | "productId": "Origin.OFR.50.0005373" 868 | }, 869 | { 870 | "___name": "Vol.6 Premium Speed Pass", 871 | "entitlementTag": "NFS22_SPEEDPASSVOL6_CONTENT", 872 | "entitlementType": "DEFAULT", 873 | "groupName": "NFS22PC", 874 | "productId": "Origin.OFR.50.0005426" 875 | }, 876 | { 877 | "___name": "Vol.5 Catch-Up Pack", 878 | "entitlementTag": "NFS22_SPVOL5CATCHUP_CONTENT", 879 | "entitlementType": "DEFAULT", 880 | "groupName": "NFS22PC", 881 | "productId": "Origin.OFR.50.0005427" 882 | }, 883 | { 884 | "___name": "Vol.7 Premium Speed Pass", 885 | "entitlementTag": "NFS22_SPEEDPASSVOL7_CONTENT", 886 | "entitlementType": "DEFAULT", 887 | "groupName": "NFS22PC", 888 | "productId": "Origin.OFR.50.0005513" 889 | }, 890 | { 891 | "___name": "Vol.6 Catch-Up Pack", 892 | "entitlementTag": "NFS22_SPVOL6CATCHUP_CONTENT", 893 | "entitlementType": "DEFAULT", 894 | "groupName": "NFS22PC", 895 | "productId": "Origin.OFR.50.0005514" 896 | }, 897 | { 898 | "___name": "Vol.6 Car Pack", 899 | "entitlementTag": "NFS22_CARPACKVOL6_CONTENT", 900 | "entitlementType": "DEFAULT", 901 | "groupName": "NFS22PC", 902 | "productId": "Origin.OFR.50.0005568" 903 | }, 904 | { 905 | "___name": "Vol.8 Premium Speed Pass", 906 | "entitlementTag": "NFS22_SPEEDPASSVOL8_CONTENT", 907 | "entitlementType": "DEFAULT", 908 | "groupName": "NFS22PC", 909 | "productId": "Origin.OFR.50.0005515" 910 | }, 911 | { 912 | "___name": "Vol.7 Catch-Up Pack", 913 | "entitlementTag": "NFS22_SPVOL7CATCHUP_CONTENT", 914 | "entitlementType": "DEFAULT", 915 | "groupName": "NFS22PC", 916 | "productId": "Origin.OFR.50.0005516" 917 | }, 918 | { 919 | "___name": "Vol.7 Car Pack", 920 | "entitlementTag": "NFS22_CARPACKVOL7_CONTENT", 921 | "entitlementType": "DEFAULT", 922 | "groupName": "NFS22PC", 923 | "productId": "Origin.OFR.50.0005579" 924 | }, 925 | { 926 | "___name": "Vol.8 Catch-Up Pack", 927 | "entitlementTag": "NFS22_SPVOL8CATCHUP_CONTENT", 928 | "entitlementType": "DEFAULT", 929 | "groupName": "NFS22PC", 930 | "productId": "Origin.OFR.50.0005518" 931 | }, 932 | { 933 | "___name": "Vol.9 Premium Speed Pass", 934 | "entitlementTag": "NFS22_SPEEDPASSVOL9_CONTENT", 935 | "entitlementType": "DEFAULT", 936 | "groupName": "NFS22PC", 937 | "productId": "Origin.OFR.50.0005517" 938 | }, 939 | { 940 | "___name": "Ultimate Collection Upgrade", 941 | "entitlementTag": "NFS_UNBOUND_COMPLETE_UPGRADE", 942 | "entitlementType": "DEFAULT", 943 | "groupName": "NFS22PC", 944 | "productId": "Origin.OFR.50.0005683" 945 | }, 946 | { 947 | "___name": "Porsche 959 S ‘87 Set", 948 | "entitlementTag": "NFS22_CARPACKVOL8_CONTENT", 949 | "entitlementType": "DEFAULT", 950 | "groupName": "NFS22PC", 951 | "productId": "Origin.OFR.50.0005580" 952 | }, 953 | { 954 | "___name": "Northgard - Svafnir, Clan of the Snake", 955 | "entitlementTag": "NORTHGARD_HCOTS", 956 | "entitlementType": "DEFAULT", 957 | "groupName": "NORTHGARD_2", 958 | "productId": "Origin.OFR.50.0004147" 959 | }, 960 | { 961 | "___name": "Northgard - Nidhogg Clan of the Dragon", 962 | "entitlementTag": "NORTHGARD_HCOTD", 963 | "entitlementType": "DEFAULT", 964 | "groupName": "NORTHGARD_2", 965 | "productId": "Origin.OFR.50.0004148" 966 | }, 967 | { 968 | "___name": "Northgard - Svardilfari, Clan of the Horse", 969 | "entitlementTag": "NORTHGARD_HCOTH", 970 | "entitlementType": "DEFAULT", 971 | "groupName": "NORTHGARD_2", 972 | "productId": "Origin.OFR.50.0004149" 973 | }, 974 | { 975 | "___name": "Northgard - Lyngbakr, Clan of the Kraken", 976 | "entitlementTag": "NORTHGARD_HCOTK", 977 | "entitlementType": "DEFAULT", 978 | "groupName": "NORTHGARD_2", 979 | "productId": "Origin.OFR.50.0004150" 980 | }, 981 | { 982 | "___name": "Northgard - Himminbrjotir, Clan of the Ox", 983 | "entitlementTag": "NORTHGARD_HCOTO", 984 | "entitlementType": "DEFAULT", 985 | "groupName": "NORTHGARD_2", 986 | "productId": "Origin.OFR.50.0004151" 987 | }, 988 | { 989 | "___name": "Northgard - Brundr & Kaelinn, Clan of the Lynx", 990 | "entitlementTag": "NORTHGARD_HCOTL", 991 | "entitlementType": "DEFAULT", 992 | "groupName": "NORTHGARD_2", 993 | "productId": "Origin.OFR.50.0004350" 994 | }, 995 | { 996 | "___name": "Northgard - Ratatoskr, Clan of the Squirrel", 997 | "entitlementTag": "NORTHGARD_HCOTS", 998 | "entitlementType": "DEFAULT", 999 | "groupName": "NORTHGARD_2", 1000 | "productId": "Origin.OFR.50.0004614" 1001 | }, 1002 | { 1003 | "___name": "Preorder bonuses (already unlocked in some free update but I'll keep the entitlement here)", 1004 | "entitlementTag": "SWJFO_PREORDER_CONTENT", 1005 | "entitlementType": "DEFAULT", 1006 | "groupName": "BirdDogPC", 1007 | "productId": "Origin.OFR.50.0003517", 1008 | "___fakesub": true, 1009 | "___comment": "Vanguard skins are unlocked by faking EA Play subscription" 1010 | }, 1011 | { 1012 | "___name": "Deluxe bonuses", 1013 | "entitlementTag": "SWJFO_DDX_CONTENT", 1014 | "entitlementType": "DEFAULT", 1015 | "groupName": "BirdDogPC", 1016 | "productId": "Origin.OFR.50.0003518" 1017 | }, 1018 | { 1019 | "___name": "Tundra skins", 1020 | "entitlementTag": "SWJFO_BD1RETAILPROMO_CONTENT", 1021 | "entitlementType": "DEFAULT", 1022 | "groupName": "BirdDogPC", 1023 | "productId": "Origin.OFR.50.0003793" 1024 | }, 1025 | { 1026 | "___name": "Preorder bonuses", 1027 | "entitlementTag": "APPLEJACK_PREORDER_CONTENT", 1028 | "entitlementType": "DEFAULT", 1029 | "groupName": "APPLEJACKPC", 1030 | "productId": "Origin.OFR.50.0005115" 1031 | }, 1032 | { 1033 | "___name": "Deluxe bonuses", 1034 | "entitlementTag": "APPLEJACK_DELUXE_UPGRADE", 1035 | "entitlementType": "DEFAULT", 1036 | "groupName": "APPLEJACKPC", 1037 | "productId": "Origin.OFR.50.0005116" 1038 | }, 1039 | { 1040 | "___name": "SimCity (2013) Standard Edition", 1041 | "entitlementTag": "ORIGIN_DOWNLOAD", 1042 | "entitlementType": "ORIGIN_DOWNLOAD", 1043 | "groupName": "", 1044 | "productId": "OFB-EAST:60108", 1045 | "___options": "+mac" 1046 | }, 1047 | { 1048 | "___name": "SimCity (2013) Complete Edition", 1049 | "entitlementTag": "ORIGIN_DOWNLOAD", 1050 | "entitlementType": "ORIGIN_DOWNLOAD", 1051 | "groupName": "", 1052 | "productId": "Origin.OFR.50.0000741" 1053 | }, 1054 | { 1055 | "___name": "SimCity (2013) Limited Edition", 1056 | "entitlementTag": "ORIGIN_DOWNLOAD", 1057 | "entitlementType": "ORIGIN_DOWNLOAD", 1058 | "groupName": "", 1059 | "productId": "OFB-EAST:48205" 1060 | }, 1061 | { 1062 | "___name": "", 1063 | "entitlementTag": "PACK_WW_CLASSIC-RIDES", 1064 | "entitlementType": "DEFAULT", 1065 | "groupName": "SimCityPCDLC", 1066 | "productId": "OFB-EAST:109548700" 1067 | }, 1068 | { 1069 | "___name": "", 1070 | "entitlementTag": "PACK_WW_THRILL-RIDES", 1071 | "entitlementType": "DEFAULT", 1072 | "groupName": "SimCityPCDLC", 1073 | "productId": "OFB-EAST:109548693" 1074 | }, 1075 | { 1076 | "___name": "", 1077 | "entitlementTag": "PACK_WW_WHEELS", 1078 | "entitlementType": "DEFAULT", 1079 | "groupName": "SimCityPCDLC", 1080 | "productId": "OFB-EAST:109548696" 1081 | }, 1082 | { 1083 | "___name": "launch-memorial-balloon-park", 1084 | "entitlementTag": "TOY_WW_LAUNCH-MEMORIAL-PARK", 1085 | "entitlementType": "DEFAULT", 1086 | "groupName": "SimCityPCDLC", 1087 | "productId": "OFB-EAST:109549247" 1088 | }, 1089 | { 1090 | "___name": "Plumbob Park", 1091 | "entitlementTag": "PARK_WW_SIMS3", 1092 | "entitlementType": "DEFAULT", 1093 | "groupName": "SimCityPCDLC", 1094 | "productId": "OFB-EAST:60171" 1095 | }, 1096 | { 1097 | "___name": "SimCity Heroes and Villains Set", 1098 | "entitlementTag": "PACK_WW_MAXIS-MAN", 1099 | "entitlementType": "DEFAULT", 1100 | "groupName": "SimCityPCDLC", 1101 | "productId": "OFB-EAST:60112" 1102 | }, 1103 | { 1104 | "___name": "SimCity French City Set", 1105 | "entitlementTag": "CITY_WW_PARIS", 1106 | "entitlementType": "DEFAULT", 1107 | "groupName": "SimCityPCDLC", 1108 | "productId": "OFB-EAST:60174" 1109 | }, 1110 | { 1111 | "___name": "SimCity British City Set", 1112 | "entitlementTag": "CITY_WW_LONDON", 1113 | "entitlementType": "DEFAULT", 1114 | "groupName": "SimCityPCDLC", 1115 | "productId": "OFB-EAST:60175" 1116 | }, 1117 | { 1118 | "___name": "SimCity German City Set", 1119 | "entitlementTag": "CITY_WW_BERLIN", 1120 | "entitlementType": "DEFAULT", 1121 | "groupName": "SimCityPCDLC", 1122 | "productId": "OFB-EAST:60173" 1123 | }, 1124 | { 1125 | "___name": "SimCity - Origin Exclusive - Plumbob Park", 1126 | "entitlementTag": "ONLINE_ACCESS", 1127 | "entitlementType": "DEFAULT", 1128 | "groupName": "SimCityPCDLC", 1129 | "productId": "DR:260832700" 1130 | }, 1131 | { 1132 | "___name": "Simcity Amusement Park Set", 1133 | "entitlementTag": "PACK_WW_AMUSEMENT-TYCOON", 1134 | "entitlementType": "DEFAULT", 1135 | "groupName": "SimCityPCDLC", 1136 | "productId": "OFB-EAST:109548807" 1137 | }, 1138 | { 1139 | "___name": "SIMCITY NISSAN LEAF PACK", 1140 | "entitlementTag": "PACK-PARTNER_WW_NISSAN", 1141 | "entitlementType": "DEFAULT", 1142 | "groupName": "SimCityPCDLC", 1143 | "productId": "OFB-EAST:109548655" 1144 | }, 1145 | { 1146 | "___name": "SimCity SALON PLAY - PL", 1147 | "entitlementTag": "TOY-PARTNER_PL_SALONPLAY", 1148 | "entitlementType": "DEFAULT", 1149 | "groupName": "SimCityPCDLC", 1150 | "productId": "OFB-EAST:109550403" 1151 | }, 1152 | { 1153 | "___name": "SimCity Metro - FR", 1154 | "entitlementTag": "TOY-PARTNER_FR_METRO", 1155 | "entitlementType": "DEFAULT", 1156 | "groupName": "SimCityPCDLC", 1157 | "productId": "OFB-EAST:109550409" 1158 | }, 1159 | { 1160 | "___name": "SimCity Micromania - FR", 1161 | "entitlementTag": "TOY-PARTNER_FR_MICROMANIA", 1162 | "entitlementType": "DEFAULT", 1163 | "groupName": "SimCityPCDLC", 1164 | "productId": "OFB-EAST:109550417" 1165 | }, 1166 | { 1167 | "___name": "SimCity Telia - SE", 1168 | "entitlementTag": "TOY-PARTNER_SV_TELIA", 1169 | "entitlementType": "DEFAULT", 1170 | "groupName": "SimCityPCDLC", 1171 | "productId": "OFB-EAST:109550406" 1172 | }, 1173 | { 1174 | "___name": "SimCity Media Markt - DE", 1175 | "entitlementTag": "TOY-PARTNER_DA_MEDIAMRKT", 1176 | "entitlementType": "DEFAULT", 1177 | "groupName": "SimCityPCDLC", 1178 | "productId": "OFB-EAST:109550401" 1179 | }, 1180 | { 1181 | "___name": "SimCity Airships Pack", 1182 | "entitlementTag": "PACK_WW_AIRSHIPS", 1183 | "entitlementType": "DEFAULT", 1184 | "groupName": "SimCityPCDLC", 1185 | "productId": "OFB-EAST:109548449" 1186 | }, 1187 | { 1188 | "___name": "Red Cross Disaster Relief Set", 1189 | "entitlementTag": "RAZOR1911-5221328086", 1190 | "entitlementType": "DEFAULT", 1191 | "groupName": "SimCityPCDLC", 1192 | "productId": "OFB-EAST:109548657" 1193 | }, 1194 | { 1195 | "___name": "Progressive Insurence Set", 1196 | "entitlementTag": "PACK-PARTNER_WW_PROGRESSIVE", 1197 | "entitlementType": "DEFAULT", 1198 | "groupName": "SimCityPCDLC", 1199 | "productId": "OFB-EAST:1000038" 1200 | }, 1201 | { 1202 | "___name": "SIMCITY: CITIES OF TOMORROW (EP1) SKYTOWER ROOF TOPPER", 1203 | "entitlementTag": "TOY_ROLLER_COASTER_CROWN", 1204 | "entitlementType": "DEFAULT", 1205 | "groupName": "SimCityPCDLC", 1206 | "productId": "OFB-EAST:109552718" 1207 | }, 1208 | { 1209 | "___name": "SIMCITY: CITIES OF TOMORROW LIMITED (LAUNCH ARCOLOGY DLC)", 1210 | "entitlementTag": "TOY_LAUNCH_ARCOLOGY", 1211 | "entitlementType": "DEFAULT", 1212 | "groupName": "SimCityPCDLC", 1213 | "productId": "OFB-EAST:109552720" 1214 | }, 1215 | { 1216 | "___name": "SIMCITY CITIES OF TOMORROW (EP1) STANDARD EDITION", 1217 | "entitlementTag": "SC_CITIES_OF_TOMORROW", 1218 | "entitlementType": "DEFAULT", 1219 | "groupName": "SimCityPC", 1220 | "productId": "OFB-EAST:65822" 1221 | }, 1222 | { 1223 | "___name": "SIMCITY: CITIES OF TOMORROW LIMITED EDITION", 1224 | "entitlementTag": "SC_CITIES_OF_TOMORROW", 1225 | "entitlementType": "DEFAULT", 1226 | "groupName": "SimCityPC", 1227 | "productId": "OFB-EAST:109552719" 1228 | }, 1229 | { 1230 | "___name": "Tales of Kenzera: ZAU - preorder bonuses", 1231 | "entitlementTag": "PREORDER_CONTENT", 1232 | "entitlementType": "DEFAULT", 1233 | "groupName": "OLORUNPC", 1234 | "productId": "Origin.OFR.50.0005407" 1235 | }, 1236 | { 1237 | "___name": "EP01: World Adventures", 1238 | "entitlementTag": "ORIGIN_DOWNLOAD", 1239 | "entitlementType": "ORIGIN_DOWNLOAD", 1240 | "groupName": "", 1241 | "productId": "DR:137311600", 1242 | "___options": "+mac" 1243 | }, 1244 | { 1245 | "___name": "EP02: Ambitions", 1246 | "entitlementTag": "ORIGIN_DOWNLOAD", 1247 | "entitlementType": "ORIGIN_DOWNLOAD", 1248 | "groupName": "", 1249 | "productId": "DR:169598400" 1250 | }, 1251 | { 1252 | "___name": "EP03: Late Night", 1253 | "entitlementTag": "ORIGIN_DOWNLOAD", 1254 | "entitlementType": "ORIGIN_DOWNLOAD", 1255 | "groupName": "", 1256 | "productId": "DR:194011300" 1257 | }, 1258 | { 1259 | "___name": "EP04: Generations", 1260 | "entitlementTag": "ORIGIN_DOWNLOAD", 1261 | "entitlementType": "ORIGIN_DOWNLOAD", 1262 | "groupName": "", 1263 | "productId": "DR:219720800" 1264 | }, 1265 | { 1266 | "___name": "EP05: Pets", 1267 | "entitlementTag": "ORIGIN_DOWNLOAD", 1268 | "entitlementType": "ORIGIN_DOWNLOAD", 1269 | "groupName": "", 1270 | "productId": "DR:234872200" 1271 | }, 1272 | { 1273 | "___name": "EP06: Showtime", 1274 | "entitlementTag": "ORIGIN_DOWNLOAD", 1275 | "entitlementType": "ORIGIN_DOWNLOAD", 1276 | "groupName": "", 1277 | "productId": "OFB-EAST:42334" 1278 | }, 1279 | { 1280 | "___name": "EP07: Supernatural", 1281 | "entitlementTag": "ORIGIN_DOWNLOAD", 1282 | "entitlementType": "ORIGIN_DOWNLOAD", 1283 | "groupName": "", 1284 | "productId": "OFB-EAST:49019" 1285 | }, 1286 | { 1287 | "___name": "EP08: Seasons", 1288 | "entitlementTag": "ORIGIN_DOWNLOAD", 1289 | "entitlementType": "ORIGIN_DOWNLOAD", 1290 | "groupName": "", 1291 | "productId": "OFB-EAST:49463" 1292 | }, 1293 | { 1294 | "___name": "EP09: University Life", 1295 | "entitlementTag": "ORIGIN_DOWNLOAD", 1296 | "entitlementType": "ORIGIN_DOWNLOAD", 1297 | "groupName": "", 1298 | "productId": "OFB-EAST:109545788" 1299 | }, 1300 | { 1301 | "___name": "EP10: Island Paradise", 1302 | "entitlementTag": "ORIGIN_DOWNLOAD", 1303 | "entitlementType": "ORIGIN_DOWNLOAD", 1304 | "groupName": "", 1305 | "productId": "OFB-EAST:109546946" 1306 | }, 1307 | { 1308 | "___name": "EP11: Into the Future", 1309 | "entitlementTag": "ORIGIN_DOWNLOAD", 1310 | "entitlementType": "ORIGIN_DOWNLOAD", 1311 | "groupName": "", 1312 | "productId": "OFB-EAST:64320" 1313 | }, 1314 | { 1315 | "___name": "SP01: High-End Loft Stuff", 1316 | "entitlementTag": "ORIGIN_DOWNLOAD", 1317 | "entitlementType": "ORIGIN_DOWNLOAD", 1318 | "groupName": "", 1319 | "productId": "DR:156751300" 1320 | }, 1321 | { 1322 | "___name": "SP02: Fast Lane Stuff", 1323 | "entitlementTag": "ORIGIN_DOWNLOAD", 1324 | "entitlementType": "ORIGIN_DOWNLOAD", 1325 | "groupName": "", 1326 | "productId": "DR:191313700" 1327 | }, 1328 | { 1329 | "___name": "SP03: Outdoor Living Stuff", 1330 | "entitlementTag": "ORIGIN_DOWNLOAD", 1331 | "entitlementType": "ORIGIN_DOWNLOAD", 1332 | "groupName": "", 1333 | "productId": "DR:215625800" 1334 | }, 1335 | { 1336 | "___name": "SP04: Town Life Stuff", 1337 | "entitlementTag": "ORIGIN_DOWNLOAD", 1338 | "entitlementType": "ORIGIN_DOWNLOAD", 1339 | "groupName": "", 1340 | "productId": "DR:227821700" 1341 | }, 1342 | { 1343 | "___name": "SP05: Master Suite Stuff", 1344 | "entitlementTag": "ORIGIN_DOWNLOAD", 1345 | "entitlementType": "ORIGIN_DOWNLOAD", 1346 | "groupName": "", 1347 | "productId": "DR:231553700" 1348 | }, 1349 | { 1350 | "___name": "SP06: Katy Perry's Sweet Treats", 1351 | "entitlementTag": "ORIGIN_DOWNLOAD", 1352 | "entitlementType": "ORIGIN_DOWNLOAD", 1353 | "groupName": "", 1354 | "productId": "OFB-EAST:43768" 1355 | }, 1356 | { 1357 | "___name": "SP07: Diesel Stuff", 1358 | "entitlementTag": "ORIGIN_DOWNLOAD", 1359 | "entitlementType": "ORIGIN_DOWNLOAD", 1360 | "groupName": "", 1361 | "productId": "OFB-EAST:43769" 1362 | }, 1363 | { 1364 | "___name": "SP08: 70s, 80s, & 90s Stuff", 1365 | "entitlementTag": "ORIGIN_DOWNLOAD", 1366 | "entitlementType": "ORIGIN_DOWNLOAD", 1367 | "groupName": "", 1368 | "productId": "OFB-EAST:52011" 1369 | }, 1370 | { 1371 | "___name": "SP09: Movie Stuff", 1372 | "entitlementTag": "ORIGIN_DOWNLOAD", 1373 | "entitlementType": "ORIGIN_DOWNLOAD", 1374 | "groupName": "", 1375 | "productId": "OFB-EAST:64317" 1376 | }, 1377 | { 1378 | "___name": "Life of the Party Digital Content", 1379 | "entitlementTag": "LifeOfTheParty_0x0000000000008E14:36372", 1380 | "entitlementType": "DEFAULT", 1381 | "groupName": "THESIMS4PC", 1382 | "productId": "SIMS4.OFF.SOLP.0x0000000000008E14", 1383 | "___options": "+mac" 1384 | }, 1385 | { 1386 | "___name": "Up All Night Digital Content", 1387 | "entitlementTag": "UpAllNight_0x0000000000009AED:39661", 1388 | "entitlementType": "DEFAULT", 1389 | "groupName": "THESIMS4PC", 1390 | "productId": "SIMS4.OFF.SOLP.0x0000000000009AED" 1391 | }, 1392 | { 1393 | "___name": "Digital Deluxe Upgrade, unlocks the stuff above, included for completion", 1394 | "entitlementTag": "DigitalDeluxeUpgrade_0x000000000000AB5C:43868", 1395 | "entitlementType": "DEFAULT", 1396 | "groupName": "THESIMS4PC", 1397 | "productId": "SIMS4.OFF.SOLP.0x000000000000AB5C" 1398 | }, 1399 | { 1400 | "___name": "P.R.I.M.A. 3000 computer (Collector's Edition Exclusive)", 1401 | "entitlementTag": "Prima_0x0000000000007BC5:31685", 1402 | "entitlementType": "DEFAULT", 1403 | "groupName": "THESIMS4PC", 1404 | "productId": "SIMS4.OFF.SOLP.0x0000000000007BC5" 1405 | }, 1406 | { 1407 | "___name": "Grim's Ghoulish Guitar (email subscription bonus)", 1408 | "entitlementTag": "Incentive01_musicGuitar_EF0GENreaper:145262", 1409 | "entitlementType": "DEFAULT", 1410 | "groupName": "THESIMS4PC", 1411 | "productId": "SIMS4.OFF.SOLP.0x000000000002376E" 1412 | }, 1413 | { 1414 | "___name": "The Family Portrait (The Sims Mobile bonus)", 1415 | "entitlementTag": "ONLINE_ACCESS", 1416 | "entitlementType": "DEFAULT", 1417 | "groupName": "THESIMS4PC", 1418 | "productId": "SIMS4.OFF.SOLP.0x000000000002AEA7" 1419 | }, 1420 | { 1421 | "___name": "Let There Be Plumbobs Award (TS3)", 1422 | "entitlementTag": "ONLINE_ACCESS", 1423 | "entitlementType": "DEFAULT", 1424 | "groupName": "THESIMS4PC", 1425 | "productId": "OFB-EAST:55107" 1426 | }, 1427 | { 1428 | "___name": "Never Ending World Adventures Award (TS3 EP01)", 1429 | "entitlementTag": "ONLINE_ACCESS", 1430 | "entitlementType": "DEFAULT", 1431 | "groupName": "THESIMS4PC", 1432 | "productId": "DR:137311600" 1433 | }, 1434 | { 1435 | "___name": "Shine On Ambitions Award (TS3 EP02)", 1436 | "entitlementTag": "ONLINE_ACCESS", 1437 | "entitlementType": "DEFAULT", 1438 | "groupName": "THESIMS4PC", 1439 | "productId": "DR:169598400" 1440 | }, 1441 | { 1442 | "___name": "UV Light Late Night Award (TS3 EP03)", 1443 | "entitlementTag": "ONLINE_ACCESS", 1444 | "entitlementType": "DEFAULT", 1445 | "groupName": "THESIMS4PC", 1446 | "productId": "DR:194011300" 1447 | }, 1448 | { 1449 | "___name": "Beacon of Ages Generations Award (TS3 EP04)", 1450 | "entitlementTag": "ONLINE_ACCESS", 1451 | "entitlementType": "DEFAULT", 1452 | "groupName": "THESIMS4PC", 1453 | "productId": "DR:219720800" 1454 | }, 1455 | { 1456 | "___name": "Paws Anonymous Pets Award (TS3 EP05)", 1457 | "entitlementTag": "ONLINE_ACCESS", 1458 | "entitlementType": "DEFAULT", 1459 | "groupName": "THESIMS4PC", 1460 | "productId": "DR:234872200" 1461 | }, 1462 | { 1463 | "___name": "Your Name in Lights Showtime Award (TS3 EP06)", 1464 | "entitlementTag": "ONLINE_ACCESS", 1465 | "entitlementType": "DEFAULT", 1466 | "groupName": "THESIMS4PC", 1467 | "productId": "OFB-EAST:42334" 1468 | }, 1469 | { 1470 | "___name": "Enchanted Aurora Supernatural Award (TS3 EP07)", 1471 | "entitlementTag": "ONLINE_ACCESS", 1472 | "entitlementType": "DEFAULT", 1473 | "groupName": "THESIMS4PC", 1474 | "productId": "OFB-EAST:49019" 1475 | }, 1476 | { 1477 | "___name": "Whatever the Weather Seasons Award (TS3 EP08)", 1478 | "entitlementTag": "ONLINE_ACCESS", 1479 | "entitlementType": "DEFAULT", 1480 | "groupName": "THESIMS4PC", 1481 | "productId": "OFB-EAST:49463" 1482 | }, 1483 | { 1484 | "___name": "Alma Mater University Life Award (TS3 EP09)", 1485 | "entitlementTag": "ONLINE_ACCESS", 1486 | "entitlementType": "DEFAULT", 1487 | "groupName": "THESIMS4PC", 1488 | "productId": "OFB-EAST:109545788" 1489 | }, 1490 | { 1491 | "___name": "Tiki Topper Island Paradise Award (TS3 EP10)", 1492 | "entitlementTag": "ONLINE_ACCESS", 1493 | "entitlementType": "DEFAULT", 1494 | "groupName": "THESIMS4PC", 1495 | "productId": "OFB-EAST:109546946" 1496 | }, 1497 | { 1498 | "___name": "Time Travelers Into the Future Award (TS3 EP11)", 1499 | "entitlementTag": "ONLINE_ACCESS", 1500 | "entitlementType": "DEFAULT", 1501 | "groupName": "THESIMS4PC", 1502 | "productId": "OFB-EAST:64320" 1503 | }, 1504 | { 1505 | "___name": "The Sims™ 4 Holiday Celebration Pack", 1506 | "entitlementTag": "Sims4HolidayObjectsBundle_0x000000000001266C:75372", 1507 | "entitlementType": "DEFAULT", 1508 | "groupName": "THESIMS4PC", 1509 | "productId": "SIMS4.OFF.SOLP.0x000000000001266C" 1510 | }, 1511 | { 1512 | "___name": "The Sims™ 4 Outdoor Retreat", 1513 | "entitlementTag": "GreatOutdoors_0x0000000000011A4B:72267", 1514 | "entitlementType": "DEFAULT", 1515 | "groupName": "THESIMS4PC", 1516 | "productId": "SIMS4.OFF.SOLP.0x0000000000011A4B" 1517 | }, 1518 | { 1519 | "___name": "The Sims™ 4 Get to Work", 1520 | "entitlementTag": "ExpansionPack1_0x0000000000011AC5:72389", 1521 | "entitlementType": "DEFAULT", 1522 | "groupName": "THESIMS4PC", 1523 | "productId": "SIMS4.OFF.SOLP.0x0000000000011AC5" 1524 | }, 1525 | { 1526 | "___name": "The Sims™ 4 Luxury Party Stuff", 1527 | "entitlementTag": "SP01_LuxuryPartyStuff_0x0000000000016390:91024", 1528 | "entitlementType": "DEFAULT", 1529 | "groupName": "THESIMS4PC", 1530 | "productId": "SIMS4.OFF.SOLP.0x0000000000016390" 1531 | }, 1532 | { 1533 | "___name": "The Sims™ 4 Perfect Patio Stuff", 1534 | "entitlementTag": "SP02_PerfectPatioStuff_0x0000000000016B37:92983", 1535 | "entitlementType": "DEFAULT", 1536 | "groupName": "THESIMS4PC", 1537 | "productId": "SIMS4.OFF.SOLP.0x0000000000016B37" 1538 | }, 1539 | { 1540 | "___name": "The Sims™ 4 Spa Day", 1541 | "entitlementTag": "GP02_SpaDay_0x0000000000016C2A:93226", 1542 | "entitlementType": "DEFAULT", 1543 | "groupName": "THESIMS4PC", 1544 | "productId": "SIMS4.OFF.SOLP.0x0000000000016C2A" 1545 | }, 1546 | { 1547 | "___name": "The Sims™ 4 Cool Kitchen Stuff", 1548 | "entitlementTag": "SP03_CoolKitchenStuff_0x0000000000018B66:101222", 1549 | "entitlementType": "DEFAULT", 1550 | "groupName": "THESIMS4PC", 1551 | "productId": "SIMS4.OFF.SOLP.0x0000000000018B66" 1552 | }, 1553 | { 1554 | "___name": "The Sims™ 4 Spooky Stuff", 1555 | "entitlementTag": "SP04_SpookyStuff_0x0000000000019B59:105305", 1556 | "entitlementType": "DEFAULT", 1557 | "groupName": "THESIMS4PC", 1558 | "productId": "SIMS4.OFF.SOLP.0x0000000000019B59" 1559 | }, 1560 | { 1561 | "___name": "The Sims™ 4 Get Together", 1562 | "entitlementTag": "GetTogether_0x00000000000170FF:94463", 1563 | "entitlementType": "DEFAULT", 1564 | "groupName": "THESIMS4PC", 1565 | "productId": "SIMS4.OFF.SOLP.0x00000000000170FF" 1566 | }, 1567 | { 1568 | "___name": "The Sims™ 4 Movie Hangout Stuff", 1569 | "entitlementTag": "SP05_MovieNight_0x000000000001A9A7:108967", 1570 | "entitlementType": "DEFAULT", 1571 | "groupName": "THESIMS4PC", 1572 | "productId": "SIMS4.OFF.SOLP.0x000000000001A9A7" 1573 | }, 1574 | { 1575 | "___name": "The Sims™ 4 Romantic Garden Stuff", 1576 | "entitlementTag": "SP06_SecretGarden_0x000000000001C04E:114766", 1577 | "entitlementType": "DEFAULT", 1578 | "groupName": "THESIMS4PC", 1579 | "productId": "SIMS4.OFF.SOLP.0x000000000001C04E" 1580 | }, 1581 | { 1582 | "___name": "The Sims™ 4 Dine Out", 1583 | "entitlementTag": "GP03_Restaurants_0x000000000001C03A:114746", 1584 | "entitlementType": "DEFAULT", 1585 | "groupName": "THESIMS4PC", 1586 | "productId": "SIMS4.OFF.SOLP.0x000000000001C03A" 1587 | }, 1588 | { 1589 | "___name": "The Sims™ 4 Kids Room Stuff", 1590 | "entitlementTag": "SP07_KidsRoom_0x000000000001D5F2:120306", 1591 | "entitlementType": "DEFAULT", 1592 | "groupName": "THESIMS4PC", 1593 | "productId": "SIMS4.OFF.SOLP.0x000000000001D5F2" 1594 | }, 1595 | { 1596 | "___name": "The Sims™ 4 Backyard Stuff", 1597 | "entitlementTag": "SP08_BackyardFun_0x0000000000020176:131446", 1598 | "entitlementType": "DEFAULT", 1599 | "groupName": "THESIMS4PC", 1600 | "productId": "SIMS4.OFF.SOLP.0x0000000000020176" 1601 | }, 1602 | { 1603 | "___name": "The Sims™ 4 City Living", 1604 | "entitlementTag": "EP03_CityLife_0x000000000001D5ED:120301", 1605 | "entitlementType": "DEFAULT", 1606 | "groupName": "THESIMS4PC", 1607 | "productId": "SIMS4.OFF.SOLP.0x000000000001D5ED" 1608 | }, 1609 | { 1610 | "___name": "The Sims™ 4 Vintage Glamour Stuff", 1611 | "entitlementTag": "SP09_GlamorousStuffPack_0x0000000000022C32:142386", 1612 | "entitlementType": "DEFAULT", 1613 | "groupName": "THESIMS4PC", 1614 | "productId": "SIMS4.OFF.SOLP.0x0000000000022C32" 1615 | }, 1616 | { 1617 | "___name": "The Sims™ 4 Vampires", 1618 | "entitlementTag": "GP04_Vampires_0x000000000002376D:145261", 1619 | "entitlementType": "DEFAULT", 1620 | "groupName": "THESIMS4PC", 1621 | "productId": "SIMS4.OFF.SOLP.0x000000000002376D" 1622 | }, 1623 | { 1624 | "___name": "The Sims™ 4 Bowling Night Stuff", 1625 | "entitlementTag": "SP10_BowlingStuff_0x0000000000027128:160040", 1626 | "entitlementType": "DEFAULT", 1627 | "groupName": "THESIMS4PC", 1628 | "productId": "SIMS4.OFF.SOLP.0x0000000000027128" 1629 | }, 1630 | { 1631 | "___name": "The Sims™ 4 Parenthood", 1632 | "entitlementTag": "GP05_FamilyFirst_0x0000000000027890:161936", 1633 | "entitlementType": "DEFAULT", 1634 | "groupName": "THESIMS4PC", 1635 | "productId": "SIMS4.OFF.SOLP.0x0000000000027890" 1636 | }, 1637 | { 1638 | "___name": "The Sims™ 4 Fitness Stuff", 1639 | "entitlementTag": "SP11_FitnessStuff_0x0000000000028FE2:167906", 1640 | "entitlementType": "DEFAULT", 1641 | "groupName": "THESIMS4PC", 1642 | "productId": "SIMS4.OFF.SOLP.0x0000000000028FE2" 1643 | }, 1644 | { 1645 | "___name": "The Sims™ 4 Toddler Stuff", 1646 | "entitlementTag": "SP12_ToddlerStuff_0x000000000002A4FE:173310", 1647 | "entitlementType": "DEFAULT", 1648 | "groupName": "THESIMS4PC", 1649 | "productId": "SIMS4.OFF.SOLP.0x000000000002A4FE" 1650 | }, 1651 | { 1652 | "___name": "The Sims™ 4 Cats & Dogs", 1653 | "entitlementTag": "EP04_CatsandDogs_0x000000000002714B:160075", 1654 | "entitlementType": "DEFAULT", 1655 | "groupName": "THESIMS4PC", 1656 | "productId": "SIMS4.OFF.SOLP.0x000000000002714B" 1657 | }, 1658 | { 1659 | "___name": "The Sims™ 4 Laundry Day Stuff", 1660 | "entitlementTag": "SP13_LaundryStuff_0x000000000002CA06:182790", 1661 | "entitlementType": "DEFAULT", 1662 | "groupName": "THESIMS4PC", 1663 | "productId": "SIMS4.OFF.SOLP.0x000000000002CA06" 1664 | }, 1665 | { 1666 | "___name": "The Sims™ 4 Jungle Adventure", 1667 | "entitlementTag": "GP06_JungleWorld_0x000000000002B073:176243", 1668 | "entitlementType": "DEFAULT", 1669 | "groupName": "THESIMS4PC", 1670 | "productId": "SIMS4.OFF.SOLP.0x000000000002B073" 1671 | }, 1672 | { 1673 | "___name": "The Sims™ 4 My First Pet Stuff", 1674 | "entitlementTag": "SP14_MyFirstPetStuff_0x000000000002EA24:191012", 1675 | "entitlementType": "DEFAULT", 1676 | "groupName": "THESIMS4PC", 1677 | "productId": "SIMS4.OFF.SOLP.0x000000000002EA24" 1678 | }, 1679 | { 1680 | "___name": "The Sims™ 4 Seasons", 1681 | "entitlementTag": "EP05_Seasons_0x000000000002E2C7:189127", 1682 | "entitlementType": "DEFAULT", 1683 | "groupName": "THESIMS4PC", 1684 | "productId": "SIMS4.OFF.SOLP.0x000000000002E2C7" 1685 | }, 1686 | { 1687 | "___name": "The Sims™ 4 Get Famous", 1688 | "entitlementTag": "EP06_GetFamous_0x0000000000030553:197971", 1689 | "entitlementType": "DEFAULT", 1690 | "groupName": "THESIMS4PC", 1691 | "productId": "SIMS4.OFF.SOLP.0x0000000000030553" 1692 | }, 1693 | { 1694 | "___name": "The Sims™ 4 StrangerVille", 1695 | "entitlementTag": "GP07_StrangerVille_0x0000000000033910:211216", 1696 | "entitlementType": "DEFAULT", 1697 | "groupName": "THESIMS4PC", 1698 | "productId": "SIMS4.OFF.SOLP.0x0000000000033910" 1699 | }, 1700 | { 1701 | "___name": "The Sims™ 4 Island Living", 1702 | "entitlementTag": "EP07_IslandLiving_0x00000000000327AF:206767", 1703 | "entitlementType": "DEFAULT", 1704 | "groupName": "THESIMS4PC", 1705 | "productId": "SIMS4.OFF.SOLP.0x00000000000327AF" 1706 | }, 1707 | { 1708 | "___name": "The Sims™ 4 Moschino Stuff Pack", 1709 | "entitlementTag": "SP15_MoschinoStuff_0x000000000003749F:226463", 1710 | "entitlementType": "DEFAULT", 1711 | "groupName": "THESIMS4PC", 1712 | "productId": "SIMS4.OFF.SOLP.0x000000000003749F" 1713 | }, 1714 | { 1715 | "___name": "The Sims™ 4 Realm of Magic", 1716 | "entitlementTag": "GP08_RealmOfMagic_0x0000000000036EE8:225000", 1717 | "entitlementType": "DEFAULT", 1718 | "groupName": "THESIMS4PC", 1719 | "productId": "SIMS4.OFF.SOLP.0x0000000000036EE8" 1720 | }, 1721 | { 1722 | "___name": "The Sims™ 4 Discover University", 1723 | "entitlementTag": "EP08_DiscoverUniversity_0x0000000000035113:217363", 1724 | "entitlementType": "DEFAULT", 1725 | "groupName": "THESIMS4PC", 1726 | "productId": "SIMS4.OFF.SOLP.0x0000000000035113" 1727 | }, 1728 | { 1729 | "___name": "The Sims™ 4 Tiny Living", 1730 | "entitlementTag": "SP16_TinyLivingStuff_0x000000000003A92D:239917", 1731 | "entitlementType": "DEFAULT", 1732 | "groupName": "THESIMS4PC", 1733 | "productId": "SIMS4.OFF.SOLP.0x000000000003A92D" 1734 | }, 1735 | { 1736 | "___name": "The Sims™ 4 Eco Lifestyle", 1737 | "entitlementTag": "EP09_EcoLifestyle_0x0000000000039AA7:236199", 1738 | "entitlementType": "DEFAULT", 1739 | "groupName": "THESIMS4PC", 1740 | "productId": "SIMS4.OFF.SOLP.0x0000000000039AA7" 1741 | }, 1742 | { 1743 | "___name": "The Sims™ 4 Nifty Knitting Stuff Pack", 1744 | "entitlementTag": "SP17_NiftyKnittingStuff_0x000000000003D4E9:251113", 1745 | "entitlementType": "DEFAULT", 1746 | "groupName": "THESIMS4PC", 1747 | "productId": "SIMS4.OFF.SOLP.0x000000000003D4E9" 1748 | }, 1749 | { 1750 | "___name": "The Sims™ 4 STAR WARS™: Journey to Batuu Game Pack", 1751 | "entitlementTag": "GP09_JourneytoBatuu_0x000000000003B1C1:242113", 1752 | "entitlementType": "DEFAULT", 1753 | "groupName": "THESIMS4PC", 1754 | "productId": "SIMS4.OFF.SOLP.0x000000000003B1C1" 1755 | }, 1756 | { 1757 | "___name": "The Sims™ 4 Snowy Escape", 1758 | "entitlementTag": "EP10_SnowyEscape_0x000000000003C344:246596", 1759 | "entitlementType": "DEFAULT", 1760 | "groupName": "THESIMS4PC", 1761 | "productId": "SIMS4.OFF.SOLP.0x000000000003C344" 1762 | }, 1763 | { 1764 | "___name": "The Sims™ 4 Paranormal Stuff Pack", 1765 | "entitlementTag": "SP18_ParanormalStuff_0x000000000003FA50:260688", 1766 | "entitlementType": "DEFAULT", 1767 | "groupName": "THESIMS4PC", 1768 | "productId": "SIMS4.OFF.SOLP.0x000000000003FA50" 1769 | }, 1770 | { 1771 | "___name": "The Sims™ 4 Throwback Fit Kit", 1772 | "entitlementTag": "SP20_ThrowbackFitKit_0x000000000004008B:262283", 1773 | "entitlementType": "DEFAULT", 1774 | "groupName": "THESIMS4PC", 1775 | "productId": "SIMS4.OFF.SOLP.0x000000000004008B" 1776 | }, 1777 | { 1778 | "___name": "The Sims™ 4 Country Kitchen Kit", 1779 | "entitlementTag": "SP21_CountryKitchenKit_0x000000000004008C:262284", 1780 | "entitlementType": "DEFAULT", 1781 | "groupName": "THESIMS4PC", 1782 | "productId": "SIMS4.OFF.SOLP.0x000000000004008C" 1783 | }, 1784 | { 1785 | "___name": "The Sims™ 4 Bust the Dust Kit", 1786 | "entitlementTag": "SP22_BusttheDustKit_0x000000000004008D:262285", 1787 | "entitlementType": "DEFAULT", 1788 | "groupName": "THESIMS4PC", 1789 | "productId": "SIMS4.OFF.SOLP.0x000000000004008D" 1790 | }, 1791 | { 1792 | "___name": "The Sims™ 4 Courtyard Oasis Kit", 1793 | "entitlementTag": "SP23_CourtyardOasisKit_0x0000000000043896:276630", 1794 | "entitlementType": "DEFAULT", 1795 | "groupName": "THESIMS4PC", 1796 | "productId": "SIMS4.OFF.SOLP.0x0000000000043896" 1797 | }, 1798 | { 1799 | "___name": "The Sims™ 4 Dream Home Decorator", 1800 | "entitlementTag": "GP10_DreamHomeDecorator_0x0000000000040A01:264705", 1801 | "entitlementType": "DEFAULT", 1802 | "groupName": "THESIMS4PC", 1803 | "productId": "SIMS4.OFF.SOLP.0x0000000000040A01" 1804 | }, 1805 | { 1806 | "___name": "The Sims™ 4 Cottage Living", 1807 | "entitlementTag": "EP11_CottageLiving_0x00000000000405E6:263654", 1808 | "entitlementType": "DEFAULT", 1809 | "groupName": "THESIMS4PC", 1810 | "productId": "SIMS4.OFF.SOLP.0x00000000000405E6" 1811 | }, 1812 | { 1813 | "___name": "The Sims™ 4 Cottage Living (bonuses only)", 1814 | "entitlementTag": "GnomeOnTheGo_CLPreorderBonus:283880", 1815 | "entitlementType": "DEFAULT", 1816 | "groupName": "THESIMS4PC", 1817 | "productId": "SIMS4.OFF.SOLP.0x00000000000454E8" 1818 | }, 1819 | { 1820 | "___name": "The Sims™ 4 Industrial Loft Kit", 1821 | "entitlementTag": "SP25_IndustrialLoftKit_0x00000000000463B9:287673", 1822 | "entitlementType": "DEFAULT", 1823 | "groupName": "THESIMS4PC", 1824 | "productId": "SIMS4.OFF.SOLP.0x00000000000463B9" 1825 | }, 1826 | { 1827 | "___name": "The Sims™ 4 Fashion Street Kit", 1828 | "entitlementTag": "SP24_FashionStreetKit_0x0000000000045113:282899", 1829 | "entitlementType": "DEFAULT", 1830 | "groupName": "THESIMS4PC", 1831 | "productId": "SIMS4.OFF.SOLP.0x0000000000045113" 1832 | }, 1833 | { 1834 | "___name": "The Sims™ 4 Incheon Arrivals Kit", 1835 | "entitlementTag": "SP26_IncheonArrivalsKit_0x00000000000467AA:288682", 1836 | "entitlementType": "DEFAULT", 1837 | "groupName": "THESIMS4PC", 1838 | "productId": "SIMS4.OFF.SOLP.0x00000000000467AA" 1839 | }, 1840 | { 1841 | "___name": "The Sims™ 4 Blooming Rooms Kit", 1842 | "entitlementTag": "SP29_BloomingRoomsKit_0x0000000000046859:288857", 1843 | "entitlementType": "DEFAULT", 1844 | "groupName": "THESIMS4PC", 1845 | "productId": "SIMS4.OFF.SOLP.0x0000000000046859" 1846 | }, 1847 | { 1848 | "___name": "The Sims™ 4 Modern Menswear Kit", 1849 | "entitlementTag": "SP28_ModernMenswearKit_0x0000000000046858:288856", 1850 | "entitlementType": "DEFAULT", 1851 | "groupName": "THESIMS4PC", 1852 | "productId": "SIMS4.OFF.SOLP.0x0000000000046858" 1853 | }, 1854 | { 1855 | "___name": "The Sims™ 4 Carnaval Streetwear Kit", 1856 | "entitlementTag": "SP30_CarnavalKit_0x000000000004685A:288858", 1857 | "entitlementType": "DEFAULT", 1858 | "groupName": "THESIMS4PC", 1859 | "productId": "SIMS4.OFF.SOLP.0x000000000004685A" 1860 | }, 1861 | { 1862 | "___name": "The Sims™ 4 My Wedding Stories", 1863 | "entitlementTag": "GP11_WeddingStories_0x0000000000047D7E:294270", 1864 | "entitlementType": "DEFAULT", 1865 | "groupName": "THESIMS4PC", 1866 | "productId": "SIMS4.OFF.SOLP.0x0000000000047D7E" 1867 | }, 1868 | { 1869 | "___name": "The Sims™ 4 Décor to the Max Kit", 1870 | "entitlementTag": "SP31_Maximalism Kit_0x0000000000048CFD:298237", 1871 | "entitlementType": "DEFAULT", 1872 | "groupName": "THESIMS4PC", 1873 | "productId": "SIMS4.OFF.SOLP.0x0000000000048CFD" 1874 | }, 1875 | { 1876 | "___name": "The Sims™ 4 Moonlight Chic Kit", 1877 | "entitlementTag": "SP32_DateNightParisKit_0x000000000004CB7A:314234", 1878 | "entitlementType": "DEFAULT", 1879 | "groupName": "THESIMS4PC", 1880 | "productId": "SIMS4.OFF.SOLP.0x000000000004CB7A" 1881 | }, 1882 | { 1883 | "___name": "The Sims™ 4 Little Campers Kit", 1884 | "entitlementTag": "SP33_CozyCampoutKit_0x000000000004CB7B:314235", 1885 | "entitlementType": "DEFAULT", 1886 | "groupName": "THESIMS4PC", 1887 | "productId": "SIMS4.OFF.SOLP.0x000000000004CB7B" 1888 | }, 1889 | { 1890 | "___name": "The Sims™ 4 Werewolves", 1891 | "entitlementTag": "GP12_Werewolves_0x0000000000048E3E:298558", 1892 | "entitlementType": "DEFAULT", 1893 | "groupName": "THESIMS4PC", 1894 | "productId": "SIMS4.OFF.SOLP.0x0000000000048E3E" 1895 | }, 1896 | { 1897 | "___name": "The Sims™ 4 High School Years (normal)", 1898 | "entitlementTag": "EP12_HighSchool_0x0000000000047D4B:294219", 1899 | "entitlementType": "DEFAULT", 1900 | "groupName": "THESIMS4PC", 1901 | "productId": "SIMS4.OFF.SOLP.0x0000000000047D4B" 1902 | }, 1903 | { 1904 | "___name": "The Sims™ 4 High School Years (preorder)", 1905 | "entitlementTag": "EP12_PrePurchase_0x000000000004AAD0:305872", 1906 | "entitlementType": "DEFAULT", 1907 | "groupName": "THESIMS4PC", 1908 | "productId": "SIMS4.OFF.SOLP.0x000000000004AAD0" 1909 | }, 1910 | { 1911 | "___name": "The Sims™ 4 High School Years (bonuses only)", 1912 | "entitlementTag": "EP12_IncentiveItems_0x000000000004AAD1:305873", 1913 | "entitlementType": "DEFAULT", 1914 | "groupName": "THESIMS4PC", 1915 | "productId": "SIMS4.OFF.SOLP.0x000000000004AAD1" 1916 | }, 1917 | { 1918 | "___name": "The Sims™ 4 First Fits Kit", 1919 | "entitlementTag": "SP34_LittleTrendsetters_0x000000000004E9E7:322023", 1920 | "entitlementType": "DEFAULT", 1921 | "groupName": "THESIMS4PC", 1922 | "productId": "SIMS4.OFF.SOLP.0x000000000004E9E7" 1923 | }, 1924 | { 1925 | "___name": "The Sims™ 4 Desert Luxe Kit", 1926 | "entitlementTag": "SP35_DesertLuxury_0x000000000004E9E8:322024", 1927 | "entitlementType": "DEFAULT", 1928 | "groupName": "THESIMS4PC", 1929 | "productId": "SIMS4.OFF.SOLP.0x000000000004E9E8" 1930 | }, 1931 | { 1932 | "___name": "The Sims™ 4 Pastel Pop Kit", 1933 | "entitlementTag": "SP36_PastelPopKit_0x0000000000050752:329554", 1934 | "entitlementType": "DEFAULT", 1935 | "groupName": "THESIMS4PC", 1936 | "productId": "SIMS4.OFF.SOLP.0x0000000000050752" 1937 | }, 1938 | { 1939 | "___name": "The Sims™ 4 Everyday Clutter Kit", 1940 | "entitlementTag": "SP37_EverydayClutterKit_0x0000000000050753:329555", 1941 | "entitlementType": "DEFAULT", 1942 | "groupName": "THESIMS4PC", 1943 | "productId": "SIMS4.OFF.SOLP.0x0000000000050753" 1944 | }, 1945 | { 1946 | "___name": "The Sims™ 4 Simtimates Collection Kit", 1947 | "entitlementTag": "SP38_ModernLoungewearKit_0x0000000000052633:337459", 1948 | "entitlementType": "DEFAULT", 1949 | "groupName": "THESIMS4PC", 1950 | "productId": "SIMS4.OFF.SOLP.0x0000000000052633" 1951 | }, 1952 | { 1953 | "___name": "The Sims™ 4 Bathroom Clutter Kit", 1954 | "entitlementTag": "SP39_BathroomClutterKit_0x0000000000052C6F:339055", 1955 | "entitlementType": "DEFAULT", 1956 | "groupName": "THESIMS4PC", 1957 | "productId": "SIMS4.OFF.SOLP.0x0000000000052C6F" 1958 | }, 1959 | { 1960 | "___name": "The Sims™ 4 Growing Together (normal)", 1961 | "entitlementTag": "EP13_SeasonsOfLife_0x000000000004DBB0:318384", 1962 | "entitlementType": "DEFAULT", 1963 | "groupName": "THESIMS4PC", 1964 | "productId": "SIMS4.OFF.SOLP.0x000000000004DBB0" 1965 | }, 1966 | { 1967 | "___name": "The Sims™ 4 Growing Together (preorder)", 1968 | "entitlementTag": "EP13_PrePurchase_0x00000000000530C0:340160", 1969 | "entitlementType": "DEFAULT", 1970 | "groupName": "THESIMS4PC", 1971 | "productId": "SIMS4.OFF.SOLP.0x00000000000530C0" 1972 | }, 1973 | { 1974 | "___name": "The Sims™ 4 Growing Together (bonuses only)", 1975 | "entitlementTag": "EP13_IncentiveItems_0x00000000000530BF:340159", 1976 | "entitlementType": "DEFAULT", 1977 | "groupName": "THESIMS4PC", 1978 | "productId": "SIMS4.OFF.SOLP.0x00000000000530BF" 1979 | }, 1980 | { 1981 | "___name": "The Sims™ 4 Greenhouse Haven Kit", 1982 | "entitlementTag": "SP40_GreenhouseKit_0x0000000000056640:353856", 1983 | "entitlementType": "DEFAULT", 1984 | "groupName": "THESIMS4PC", 1985 | "productId": "SIMS4.OFF.SOLP.0x0000000000056640" 1986 | }, 1987 | { 1988 | "___name": "The Sims™ 4 Basement Treasures Kit", 1989 | "entitlementTag": "SP41_GrungyBasementKit_0x0000000000056641:353857", 1990 | "entitlementType": "DEFAULT", 1991 | "groupName": "THESIMS4PC", 1992 | "productId": "SIMS4.OFF.SOLP.0x0000000000056641" 1993 | }, 1994 | { 1995 | "___name": "The Sims™ 4 Grunge Revival Kit", 1996 | "entitlementTag": "SP42_VintageGrungeKit_0x00000000000574B3:357555", 1997 | "entitlementType": "DEFAULT", 1998 | "groupName": "THESIMS4PC", 1999 | "productId": "SIMS4.OFF.SOLP.0x00000000000574B3" 2000 | }, 2001 | { 2002 | "___name": "The Sims™ 4 Book Nook Kit", 2003 | "entitlementTag": "SP43_BookNookKit_0x00000000000574B4:357556", 2004 | "entitlementType": "DEFAULT", 2005 | "groupName": "THESIMS4PC", 2006 | "productId": "SIMS4.OFF.SOLP.0x00000000000574B4" 2007 | }, 2008 | { 2009 | "___name": "The Sims™ 4 Horse Ranch (normal)", 2010 | "entitlementTag": "EP14_HorseRanch_0x000000000004F3B5:324533", 2011 | "entitlementType": "DEFAULT", 2012 | "groupName": "THESIMS4PC", 2013 | "productId": "SIMS4.OFF.SOLP.0x000000000004F3B5" 2014 | }, 2015 | { 2016 | "___name": "The Sims™ 4 Horse Ranch (preorder)", 2017 | "entitlementTag": "EP14_PrePurchase_0x0000000000057E0A:359946", 2018 | "entitlementType": "DEFAULT", 2019 | "groupName": "THESIMS4PC", 2020 | "productId": "SIMS4.OFF.SOLP.0x0000000000057E0A" 2021 | }, 2022 | { 2023 | "___name": "The Sims™ 4 Horse Ranch (bonuses only)", 2024 | "entitlementTag": "EP14_IncentiveItems_0x0000000000057E09:359945", 2025 | "entitlementType": "DEFAULT", 2026 | "groupName": "THESIMS4PC", 2027 | "productId": "SIMS4.OFF.SOLP.0x0000000000057E09" 2028 | }, 2029 | { 2030 | "___name": "The Sims™ 4 Poolside Splash Kit", 2031 | "entitlementTag": "SP44_PoolsideSplash_0x000000000005A5A4:370084", 2032 | "entitlementType": "DEFAULT", 2033 | "groupName": "THESIMS4PC", 2034 | "productId": "SIMS4.OFF.SOLP.0x000000000005A5A4" 2035 | }, 2036 | { 2037 | "___name": "The Sims™ 4 Modern Luxe Kit", 2038 | "entitlementTag": "SP45_ModernLuxe_0x000000000005A5A5:370085", 2039 | "entitlementType": "DEFAULT", 2040 | "groupName": "THESIMS4PC", 2041 | "productId": "SIMS4.OFF.SOLP.0x000000000005A5A5" 2042 | }, 2043 | { 2044 | "___name": "The Sims™ 4 Home Chef Hustle Stuff Pack", 2045 | "entitlementTag": "SP46_HomeChefHustles_0x0000000000058A09:363017", 2046 | "entitlementType": "DEFAULT", 2047 | "groupName": "THESIMS4PC", 2048 | "productId": "SIMS4.OFF.SOLP.0x0000000000058A09" 2049 | }, 2050 | { 2051 | "___name": "The Sims™ 4 For Rent (normal)", 2052 | "entitlementTag": "EP15_ForRent_0x000000000005A8CE:370894", 2053 | "entitlementType": "DEFAULT", 2054 | "groupName": "THESIMS4PC", 2055 | "productId": "SIMS4.OFF.SOLP.0x000000000005A8CE" 2056 | }, 2057 | { 2058 | "___name": "The Sims™ 4 For Rent (preorder)", 2059 | "entitlementTag": "EP15_PrePurchase_0x000000000005CD3D:380221", 2060 | "entitlementType": "DEFAULT", 2061 | "groupName": "THESIMS4PC", 2062 | "productId": "SIMS4.OFF.SOLP.0x000000000005CD3D" 2063 | }, 2064 | { 2065 | "___name": "The Sims™ 4 For Rent (bonuses only)", 2066 | "entitlementTag": "EP15_IncentiveItems_0x000000000005CD3C:380220", 2067 | "entitlementType": "DEFAULT", 2068 | "groupName": "THESIMS4PC", 2069 | "productId": "SIMS4.OFF.SOLP.0x000000000005CD3C" 2070 | }, 2071 | { 2072 | "___name": "The Sims™ 4 Castle Estate Kit", 2073 | "entitlementTag": "SP47_CastleEstateKit_0x000000000005F6CC:390860", 2074 | "entitlementType": "DEFAULT", 2075 | "groupName": "THESIMS4PC", 2076 | "productId": "SIMS4.OFF.SOLP.0x000000000005F6CC" 2077 | }, 2078 | { 2079 | "___name": "The Sims™ 4 Goth Galore Kit", 2080 | "entitlementTag": "SP48_GothGaloreKit_0x000000000005F6CE:390862", 2081 | "entitlementType": "DEFAULT", 2082 | "groupName": "THESIMS4PC", 2083 | "productId": "SIMS4.OFF.SOLP.0x000000000005F6CE" 2084 | }, 2085 | { 2086 | "___name": "The Sims™ 4 Crystal Creations Stuff Pack", 2087 | "entitlementTag": "SP49_ProjectCobalt_0x000000000005B63F:374335", 2088 | "entitlementType": "DEFAULT", 2089 | "groupName": "THESIMS4PC", 2090 | "productId": "SIMS4.OFF.SOLP.0x000000000005B63F" 2091 | }, 2092 | { 2093 | "___name": "The Sims™ 4 Urban Homage Kit", 2094 | "entitlementTag": "SP50_UrbanHomageKit_0x0000000000063060:405600", 2095 | "entitlementType": "DEFAULT", 2096 | "groupName": "THESIMS4PC", 2097 | "productId": "SIMS4.OFF.SOLP.0x0000000000063060" 2098 | }, 2099 | { 2100 | "___name": "The Sims™ 4 Party Essentials Kit", 2101 | "entitlementTag": "SP51_PartyEssentialsKit_0x0000000000063061:405601", 2102 | "entitlementType": "DEFAULT", 2103 | "groupName": "THESIMS4PC", 2104 | "productId": "SIMS4.OFF.SOLP.0x0000000000063061" 2105 | }, 2106 | { 2107 | "___name": "The Sims™ 4 Riviera Retreat Kit", 2108 | "entitlementTag": "SP52_RivieraRetreatKit_0x00000000000661D4:418260", 2109 | "entitlementType": "DEFAULT", 2110 | "groupName": "THESIMS4PC", 2111 | "productId": "SIMS4.OFF.SOLP.0x00000000000661D4" 2112 | }, 2113 | { 2114 | "___name": "The Sims™ 4 Cozy Bistro Kit", 2115 | "entitlementTag": "SP53_CozyBistroKit_0x00000000000661D5:418261", 2116 | "entitlementType": "DEFAULT", 2117 | "groupName": "THESIMS4PC", 2118 | "productId": "SIMS4.OFF.SOLP.0x00000000000661D5" 2119 | }, 2120 | { 2121 | "___name": "The Sims™ 4 Lovestruck (normal)", 2122 | "entitlementTag": "EP16_Lovestruck_0x0000000000063821:407585", 2123 | "entitlementType": "DEFAULT", 2124 | "groupName": "THESIMS4PC", 2125 | "productId": "SIMS4.OFF.SOLP.0x0000000000063821" 2126 | }, 2127 | { 2128 | "___name": "The Sims™ 4 Lovestruck (preorder)", 2129 | "entitlementTag": "EP16_PrePurchase_0x0000000000064B65:412517", 2130 | "entitlementType": "DEFAULT", 2131 | "groupName": "THESIMS4PC", 2132 | "productId": "SIMS4.OFF.SOLP.0x0000000000064B65" 2133 | }, 2134 | { 2135 | "___name": "The Sims™ 4 Lovestruck (bonuses only)", 2136 | "entitlementTag": "EP16_IncentiveItems_0x0000000000064B64:412516", 2137 | "entitlementType": "DEFAULT", 2138 | "groupName": "THESIMS4PC", 2139 | "productId": "SIMS4.OFF.SOLP.0x0000000000064B64" 2140 | }, 2141 | { 2142 | "___name": "The Sims™ 4 Artist Studio Kit", 2143 | "entitlementTag": "SP54_ArtistStudioKit_0x000000000006A8BA:436410", 2144 | "entitlementType": "DEFAULT", 2145 | "groupName": "THESIMS4PC", 2146 | "productId": "SIMS4.OFF.SOLP.0x000000000006A8BA" 2147 | }, 2148 | { 2149 | "___name": "The Sims™ 4 Storybook Nursery Kit", 2150 | "entitlementTag": "SP55_StorybookNurseryKit_0x000000000006A8B1:436401", 2151 | "entitlementType": "DEFAULT", 2152 | "groupName": "THESIMS4PC", 2153 | "productId": "SIMS4.OFF.SOLP.0x000000000006A8B1" 2154 | }, 2155 | { 2156 | "___name": "The Sims™ 4 Life & Death", 2157 | "entitlementTag": "EP17_LifeAndDeath_0x0000000000069DFF:433663", 2158 | "entitlementType": "DEFAULT", 2159 | "groupName": "THESIMS4PC", 2160 | "productId": "SIMS4.OFF.SOLP.0x0000000000069DFF" 2161 | }, 2162 | { 2163 | "___name": "The Sims™ 4 Sweet Slumber Party Kit", 2164 | "entitlementTag": "SP56_SweetSlumberPartyKit_0x000000000006E7DF:452575", 2165 | "entitlementType": "DEFAULT", 2166 | "groupName": "THESIMS4PC", 2167 | "productId": "SIMS4.OFF.SOLP.0x000000000006E7DF" 2168 | }, 2169 | { 2170 | "___name": "The Sims™ 4 Cozy Kitsch Kit", 2171 | "entitlementTag": "SP57_CozyKitschKit_0x000000000006E7E0:452576", 2172 | "entitlementType": "DEFAULT", 2173 | "groupName": "THESIMS4PC", 2174 | "productId": "SIMS4.OFF.SOLP.0x000000000006E7E0" 2175 | }, 2176 | { 2177 | "___name": "The Sims™ 4 Comfy Gamer Kit", 2178 | "entitlementTag": "SP58_CozyGamerClutter_0x000000000006E828:452648", 2179 | "entitlementType": "DEFAULT", 2180 | "groupName": "THESIMS4PC", 2181 | "productId": "SIMS4.OFF.SOLP.0x000000000006E828" 2182 | }, 2183 | { 2184 | "___name": "The Sims™ 4 Secret Sanctuary Kit", 2185 | "entitlementTag": "SP59_SecretSanctuaryKit_0x000000000006F575:456053", 2186 | "entitlementType": "DEFAULT", 2187 | "groupName": "THESIMS4PC", 2188 | "productId": "SIMS4.OFF.SOLP.0x000000000006F575" 2189 | }, 2190 | { 2191 | "___name": "The Sims™ 4 Casanova Cave Kit", 2192 | "entitlementTag": "SP60_CasanovaCaveKit_0x000000000006F576:456054", 2193 | "entitlementType": "DEFAULT", 2194 | "groupName": "THESIMS4PC", 2195 | "productId": "SIMS4.OFF.SOLP.0x000000000006F576" 2196 | }, 2197 | { 2198 | "___name": "The Sims™ 4 Refined Living Room Kit", 2199 | "entitlementTag": "SP61_RefinedLivingRoom_0x0000000000070A7F:461439", 2200 | "entitlementType": "DEFAULT", 2201 | "groupName": "THESIMS4PC", 2202 | "productId": "SIMS4.OFF.SOLP.0x0000000000070A7F" 2203 | }, 2204 | { 2205 | "___name": "The Sims™ 4 Business Chic Kit", 2206 | "entitlementTag": "SP62_BusinessChic_0x0000000000070A80:461440", 2207 | "entitlementType": "DEFAULT", 2208 | "groupName": "THESIMS4PC", 2209 | "productId": "SIMS4.OFF.SOLP.0x0000000000070A80" 2210 | }, 2211 | { 2212 | "___name": "The Sims™ 4 Businesses & Hobbies (normal)", 2213 | "entitlementTag": "EP18_BusinessesAndHobbies_0x0000000000064E47:413255", 2214 | "entitlementType": "DEFAULT", 2215 | "groupName": "THESIMS4PC", 2216 | "productId": "SIMS4.OFF.SOLP.0x0000000000064E47" 2217 | }, 2218 | { 2219 | "___name": "The Sims™ 4 Businesses & Hobbies (preorder)", 2220 | "entitlementTag": "EP18_PrePurchase_0x000000000006A9D8:436696", 2221 | "entitlementType": "DEFAULT", 2222 | "groupName": "THESIMS4PC", 2223 | "productId": "SIMS4.OFF.SOLP.0x000000000006A9D8" 2224 | }, 2225 | { 2226 | "___name": "The Sims™ 4 Businesses & Hobbies (bonuses only)", 2227 | "entitlementTag": "EP18_IncentiveItems_0x000000000006A9D7:436695", 2228 | "entitlementType": "DEFAULT", 2229 | "groupName": "THESIMS4PC", 2230 | "productId": "SIMS4.OFF.SOLP.0x000000000006A9D7" 2231 | }, 2232 | { 2233 | "___name": "The Sims™ 4 Sleek Bathroom Kit", 2234 | "entitlementTag": "SP63_SleekBathroomKit_0x00000000000718AF:465071", 2235 | "entitlementType": "DEFAULT", 2236 | "groupName": "THESIMS4PC", 2237 | "productId": "SIMS4.OFF.SOLP.0x00000000000718AF" 2238 | }, 2239 | { 2240 | "___name": "The Sims™ 4 Sweet Allure Kit", 2241 | "entitlementTag": "SP64_SweetAllureKit_0x00000000000718B0:465072", 2242 | "entitlementType": "DEFAULT", 2243 | "groupName": "THESIMS4PC", 2244 | "productId": "SIMS4.OFF.SOLP.0x00000000000718B0" 2245 | }, 2246 | { 2247 | "___name": "The Sims™ 4 Restoration Workshop Kit", 2248 | "entitlementTag": "SP65_RestorationWorkshopKit_0x0000000000073489:472201", 2249 | "entitlementType": "DEFAULT", 2250 | "groupName": "THESIMS4PC", 2251 | "productId": "SIMS4.OFF.SOLP.0x0000000000073489" 2252 | }, 2253 | { 2254 | "___name": "The Sims™ 4 Kitchen Clutter Kit", 2255 | "entitlementTag": "SP67_KitchenClutterKit_0x000000000007348B:472203", 2256 | "entitlementType": "DEFAULT", 2257 | "groupName": "THESIMS4PC", 2258 | "productId": "SIMS4.OFF.SOLP.0x000000000007348B" 2259 | }, 2260 | { 2261 | "___name": "The Sims™ 4 Golden Years Kit", 2262 | "entitlementTag": "SP66_GoldenYearsKit_0x000000000007348A:472202", 2263 | "entitlementType": "DEFAULT", 2264 | "groupName": "THESIMS4PC", 2265 | "productId": "SIMS4.OFF.SOLP.0x000000000007348A" 2266 | }, 2267 | { 2268 | "___name": "The Sims™ 4 Fairy Garden Digital Content", 2269 | "entitlementTag": "EP19_IncentiveItems_0x0000000000073122:471330", 2270 | "entitlementType": "DEFAULT", 2271 | "groupName": "THESIMS4PC", 2272 | "productId": "SIMS4.OFF.SOLP.0x0000000000073122" 2273 | }, 2274 | { 2275 | "___name": "The Sims™ 4 Enchanted by Nature Expansion Pack", 2276 | "entitlementTag": "EP19_PrePurchase_0x0000000000073123:471331", 2277 | "entitlementType": "DEFAULT", 2278 | "groupName": "THESIMS4PC", 2279 | "productId": "SIMS4.OFF.SOLP.0x0000000000073123" 2280 | }, 2281 | { 2282 | "___name": "The Sims™ 4 Essential Glam Kit", 2283 | "entitlementTag": "SP72_EssentialGlam_0x0000000000076F8B:487307", 2284 | "entitlementType": "DEFAULT", 2285 | "groupName": "THESIMS4PC", 2286 | "productId": "SIMS4.OFF.SOLP.0x0000000000076F8B" 2287 | }, 2288 | { 2289 | "___name": "The Sims™ 4 Grange Mudroom Kit", 2290 | "entitlementTag": "SP71_GrangeMudroom_0x0000000000076F8A:487306", 2291 | "entitlementType": "DEFAULT", 2292 | "groupName": "THESIMS4PC", 2293 | "productId": "SIMS4.OFF.SOLP.0x0000000000076F8A" 2294 | }, 2295 | { 2296 | "___name": "The Sinking City - Investigator Pack", 2297 | "entitlementTag": "THE_SINKING_CITY_DLC_1", 2298 | "entitlementType": "DEFAULT", 2299 | "groupName": "THE_SINKING_CITY", 2300 | "productId": "Origin.OFR.50.0004208" 2301 | }, 2302 | { 2303 | "___name": "The Sinking City - Merciful Madness", 2304 | "entitlementTag": "THE_SINKING_CITY_DLC_2", 2305 | "entitlementType": "DEFAULT", 2306 | "groupName": "THE_SINKING_CITY", 2307 | "productId": "Origin.OFR.50.0004209" 2308 | }, 2309 | { 2310 | "___name": "The Sinking City - Chicago Organ Grinder", 2311 | "entitlementTag": "THE_SINKING_CITY_DLC_3", 2312 | "entitlementType": "DEFAULT", 2313 | "groupName": "THE_SINKING_CITY", 2314 | "productId": "Origin.OFR.50.0004210" 2315 | }, 2316 | { 2317 | "___name": "The Sinking City - Worshippers of the Necronomicon", 2318 | "entitlementTag": "THE_SINKING_CITY_DLC_4", 2319 | "entitlementType": "DEFAULT", 2320 | "groupName": "THE_SINKING_CITY", 2321 | "productId": "Origin.OFR.50.0004211" 2322 | }, 2323 | { 2324 | "___name": "The Sinking City - Experience Boost", 2325 | "entitlementTag": "THE_SINKING_CITY_DLC_5", 2326 | "entitlementType": "DEFAULT", 2327 | "groupName": "THE_SINKING_CITY", 2328 | "productId": "Origin.OFR.50.0004212" 2329 | }, 2330 | { 2331 | "___name": "CREO Special Employee Kit", 2332 | "entitlementTag": "THE_SURGE_CSEK", 2333 | "entitlementType": "DEFAULT", 2334 | "groupName": "OPP", 2335 | "productId": "Origin.OFR.50.0002257", 2336 | "___options": "3" 2337 | }, 2338 | { 2339 | "___name": "A Walk in the Park", 2340 | "entitlementTag": "THE_SURGE_AWITP", 2341 | "entitlementType": "DEFAULT", 2342 | "groupName": "OPP", 2343 | "productId": "Origin.OFR.50.0002885" 2344 | }, 2345 | { 2346 | "___name": "The Good, The Bad and the Augmented", 2347 | "entitlementTag": "THE_SURGE_TGTBTA", 2348 | "entitlementType": "DEFAULT", 2349 | "groupName": "OPP", 2350 | "productId": "Origin.OFR.50.0003031" 2351 | }, 2352 | { 2353 | "___name": "War Child Charity DLC", 2354 | "entitlementTag": "THIS_WAR_OF_MINE_WAR_CHILD_DLC", 2355 | "entitlementType": "DEFAULT", 2356 | "groupName": "THIS_WAR_OF_MINE", 2357 | "productId": "Origin.OFR.50.0001269" 2358 | }, 2359 | { 2360 | "___name": "The Little Ones DLC", 2361 | "entitlementTag": "THIS_WAR_OF_MINE_THE_LITTLE_ONES", 2362 | "entitlementType": "DEFAULT", 2363 | "groupName": "THIS_WAR_OF_MINE", 2364 | "productId": "Origin.OFR.50.0001587" 2365 | }, 2366 | { 2367 | "___name": "Fathers Promise", 2368 | "entitlementTag": "THIS_WAR_OF_MINE_FATHERS_PROMISE", 2369 | "entitlementType": "DEFAULT", 2370 | "groupName": "THIS_WAR_OF_MINE", 2371 | "productId": "Origin.OFR.50.0004333" 2372 | }, 2373 | { 2374 | "___name": "The Last Broadcast", 2375 | "entitlementTag": "THIS_WAR_OF_MINE_THE_LAST_BROADCAST", 2376 | "entitlementType": "DEFAULT", 2377 | "groupName": "THIS_WAR_OF_MINE", 2378 | "productId": "Origin.OFR.50.0004334" 2379 | }, 2380 | { 2381 | "___name": "Fading Embers", 2382 | "entitlementTag": "THIS_WAR_OF_MINE_FADING_EMBERS", 2383 | "entitlementType": "DEFAULT", 2384 | "groupName": "THIS_WAR_OF_MINE", 2385 | "productId": "Origin.OFR.50.0004335" 2386 | }, 2387 | { 2388 | "___name": "Season Pass", 2389 | "entitlementTag": "THIS_WAR_OF_MINE_SEASON_PASS", 2390 | "entitlementType": "DEFAULT", 2391 | "groupName": "THIS_WAR_OF_MINE", 2392 | "productId": "Origin.OFR.50.0004336" 2393 | }, 2394 | { 2395 | "___name": "Tropico 6 - Llama of Wall Street DLC", 2396 | "entitlementTag": "TROPICO_6_DLC_1", 2397 | "entitlementType": "DEFAULT", 2398 | "groupName": "OPP", 2399 | "productId": "Origin.OFR.50.0003573", 2400 | "___options": "5" 2401 | }, 2402 | { 2403 | "___name": "Tropico 6 - Spitter DLC", 2404 | "entitlementTag": "TROPICO_6_DLC_2", 2405 | "entitlementType": "DEFAULT", 2406 | "groupName": "OPP", 2407 | "productId": "Origin.OFR.50.0003574" 2408 | }, 2409 | { 2410 | "___name": "Tropico 6 - Lobbyistico DLC", 2411 | "entitlementTag": "TROPICO_6_DLC_3", 2412 | "entitlementType": "DEFAULT", 2413 | "groupName": "OPP", 2414 | "productId": "Origin.OFR.50.0004161" 2415 | }, 2416 | { 2417 | "___name": "Tropico 6 - Caribbean Skies DLC", 2418 | "entitlementTag": "TROPICO_6_DLC_4", 2419 | "entitlementType": "DEFAULT", 2420 | "groupName": "OPP", 2421 | "productId": "Origin.OFR.50.0004428" 2422 | }, 2423 | { 2424 | "___name": "Tropico 6 - Festival DLC", 2425 | "entitlementTag": "TROPICO_6_DLC_5", 2426 | "entitlementType": "DEFAULT", 2427 | "groupName": "OPP", 2428 | "productId": "Origin.OFR.50.0004685" 2429 | } 2430 | ] -------------------------------------------------------------------------------- /steam/v1/dlc.json: -------------------------------------------------------------------------------- 1 | { 2 | "236850": [ 3 | 241360, 4 | 241361, 5 | 241362, 6 | 241363, 7 | 241365, 8 | 241366, 9 | 241367, 10 | 472030, 11 | 1009630, 12 | 2350610 13 | ], 14 | "582010": [ 15 | 601100, 16 | 743980, 17 | 759450, 18 | 759451, 19 | 759452, 20 | 759453, 21 | 759454, 22 | 759455, 23 | 761590, 24 | 761591, 25 | 761592, 26 | 761593, 27 | 761594, 28 | 761595, 29 | 761596, 30 | 761597, 31 | 761598, 32 | 761599, 33 | 762170, 34 | 762171, 35 | 762176, 36 | 762177, 37 | 762178, 38 | 762179, 39 | 762910, 40 | 762911, 41 | 762912, 42 | 762913, 43 | 762914, 44 | 762915, 45 | 762916, 46 | 763690, 47 | 763691, 48 | 763692, 49 | 763693, 50 | 763694, 51 | 974300, 52 | 974301, 53 | 996720, 54 | 996721, 55 | 996741, 56 | 996742, 57 | 1118011, 58 | 1118021, 59 | 1211172 60 | ], 61 | "838380": [ 62 | 1033491, 63 | 1033492, 64 | 1034481, 65 | 1034482, 66 | 1034483, 67 | 1054330, 68 | 1111441, 69 | 1168501, 70 | 1168502, 71 | 1205761, 72 | 1205762 73 | ], 74 | "1271700": [ 75 | 1663500, 76 | 1663620, 77 | 1671890 78 | ], 79 | "1446780": [ 80 | 1748410, 81 | 1753180, 82 | 1913710 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /steam/v2/dlc.json: -------------------------------------------------------------------------------- 1 | { 2 | "227300": { 3 | "dlcs": { 4 | "388473": "Euro Truck Simulator 2 - PC Gamer DLC", 5 | "388478": "Euro Truck Simulator 2 - Rocket League Promo" 6 | } 7 | }, 8 | "236850": { 9 | "dlcs": { 10 | "241360": "Europa Universalis IV: 100 Years War Unit Pack", 11 | "241361": "Europa Universalis IV: Horsemen of the Crescent Unit Pack", 12 | "241362": "Europa Universalis IV: Winged Hussars Unit Pack", 13 | "241363": "Europa Universalis IV: Star and Crescent DLC", 14 | "241365": "Europa Universalis IV: Purple Phoenix", 15 | "241366": "Europa Universalis IV: National Monuments", 16 | "241367": "Europa Universalis IV: Conquest of Constantinople Music Pack", 17 | "472030": "Europa Universalis IV: Fredman's Epistles", 18 | "1009630": "Europa Universalis IV: Imperator Unit Pack", 19 | "2350610": "Europa Universalis IV: Domination (Pre-Purchase Bonus)" 20 | } 21 | }, 22 | "311730": { 23 | "dlcs": { 24 | "358144": "DOA5LR - SENRAN KAGURA Mashup Costume Set", 25 | "382870": "DOA5LR - Falcom Mashup Set", 26 | "403351": "DOA5LR - School Girl Strikers Costume Set", 27 | "425141": "DOA5LR Tatsunoko Mashup Set", 28 | "485990": "DOA5LR Fairy Tail Mashup Set", 29 | "494510": "DOA5LR Attack on Titan Mashup Set", 30 | "514330": "DOA5LR Character: Mai Shiranui", 31 | "514331": "DOA5LR Mai Shiranui Debut Costume Set", 32 | "514332": "DOA5LR KOF Mashup Costume Set", 33 | "564440": "DOA5LR AQUAPLUS Mashup Set", 34 | "601390": "DOA5LR Arc System Works Mashup Set" 35 | } 36 | }, 37 | "582010": { 38 | "dlcs": { 39 | "601100": "Monster Hunter: World - Origin Armor Set", 40 | "743980": "Monster Hunter: World - Fair Wind Charm", 41 | "759450": "Monster Hunter: World - Samurai Set", 42 | "759451": "Monster Hunter: World - Gesture: Zen", 43 | "759452": "Monster Hunter: World - Gesture: Ninja Star", 44 | "759453": "Monster Hunter: World - Gesture: Sumo Slap", 45 | "759454": "Monster Hunter: World - Gesture: Passionate", 46 | "759455": "Monster Hunter: World - Gesture: Spin-O-Rama", 47 | "761590": "Monster Hunter: World - Gesture: Air Splits", 48 | "761591": "Monster Hunter: World - Gesture: Feverish Dance", 49 | "761592": "Monster Hunter: World - Gesture: Gallivanting Dance", 50 | "761593": "Monster Hunter: World - Gesture: Interpretive Dance", 51 | "761594": "Monster Hunter: World - Gesture: Play Possum", 52 | "761595": "Monster Hunter: World - Gesture: Kowtow", 53 | "761596": "Monster Hunter: World - Gesture: Sleep", 54 | "761597": "Monster Hunter: World - Gesture: Kneel", 55 | "761598": "Monster Hunter: World - Classic Gesture: Dance", 56 | "761599": "Monster Hunter: World - Classic Gesture: Prance", 57 | "762170": "Monster Hunter: World - Classic Gesture: Rant", 58 | "762171": "Monster Hunter: World - Classic Gesture: Clap", 59 | "762176": "Monster Hunter: World - Gesture: Spirit Fingers", 60 | "762177": "Monster Hunter: World - Gesture: Windmill Whirlwind", 61 | "762178": "Monster Hunter: World - Gesture: Disco Fever", 62 | "762179": "Monster Hunter: World - Gesture: Squat Day", 63 | "762910": "Monster Hunter: World - Sticker Set: MH All-Stars Set", 64 | "762911": "Monster Hunter: World - Sticker Set: Sir Loin Set", 65 | "762912": "Monster Hunter: World - Sticker Set: Poogie Set", 66 | "762913": "Monster Hunter: World - Sticker Set: Guild Lasses Set", 67 | "762914": "Monster Hunter: World - Sticker Set: Endemic Life Set", 68 | "762915": "Monster Hunter: World - Sticker Set: Classic Monsters Set", 69 | "762916": "Monster Hunter: World - Sticker Set: Research Commission Set", 70 | "763690": "Monster Hunter: World - Face Paint: Wyvern", 71 | "763691": "Monster Hunter: World - Face Paint: Shade Pattern", 72 | "763692": "Monster Hunter: World - Face Paint: Heart Shape", 73 | "763693": "Monster Hunter: World - Face Paint: Eye Shadow", 74 | "763694": "Monster Hunter: World - Hairstyle: Topknot", 75 | "974300": "Monster Hunter: World - Gesture: Hip Hop Dance", 76 | "974301": "Monster Hunter: World - Gesture: Cool Dance", 77 | "996720": "Monster Hunter: World - Gesture: Pop Star Dance", 78 | "996721": "Monster Hunter: World - Gesture: Step Dance", 79 | "996741": "Monster Hunter: World - Sticker Set: Celestial Pursuit Girls", 80 | "996742": "Monster Hunter: World - Sticker Set: Monsters of the New World", 81 | "1118011": "SteamDB Unknown App 1118011", 82 | "1118021": "Monster Hunter World: Iceborne - Yukumo Layered Armor Set", 83 | "1211172": "Monster Hunter World: Iceborne - MHW:I Monster Figure: Great Jagras" 84 | } 85 | }, 86 | "678960": { 87 | "dlcs": { 88 | "875980": "CODE VEIN - Alternate Mia Set", 89 | "875990": "CODE VEIN Pre-Order DLC Bundle", 90 | "876000": "CODE VEIN - Insatiable Bloodthirst Accessory Set", 91 | "879380": "CODE VEIN - Accessory: Gold Purifier Mask", 92 | "1196141": "CODE VEIN - Venous Claws" 93 | } 94 | }, 95 | "838380": { 96 | "dlcs": { 97 | "1033491": "DOA6 Season Pass 1 Bonus Costume: NiCO", 98 | "1033492": "DOA6 Season Pass 1 Bonus Costume: Nyotengu", 99 | "1034481": "DOA6 Early Purchase Bonus Costume - Kasumi", 100 | "1034482": "DOA6 Digital Deluxe Edition Bonus Costume - Kasumi", 101 | "1034483": "DOA6 Deluxe BGM (3 tracks)", 102 | "1054330": "DEAD OR ALIVE 6 - Full Game", 103 | "1111441": "DOA6 Marie Rose: \"Little\" Devil Maid Costume", 104 | "1168501": "DOA6 Season Pass 3 Bonus Costume - Kasumi", 105 | "1168502": "DOA6 Season Pass 3 Bonus Costume - Ayane", 106 | "1205761": "DOA6 Gorgeous Dress - Kasumi", 107 | "1205762": "DOA6 Gorgeous Dress - Marie Rose" 108 | } 109 | }, 110 | "1271700": { 111 | "dlcs": { 112 | "1663500": "HOT WHEELS™ - DC Super-Villains Racing Season", 113 | "1663620": "HOT WHEELS™ - SpongeBob Racing Season", 114 | "1671890": "HOT WHEELS™ - DC Super Heroes Racing Season" 115 | } 116 | }, 117 | "1446780": { 118 | "dlcs": { 119 | "1748410": "MONSTER HUNTER RISE - Pre-order bonus Add-on Content", 120 | "1753180": "MONSTER HUNTER RISE - Bonus Pack: PC Assistance Pack", 121 | "1913710": "Monster Hunter Rise: Sunbreak - Bonus Add-on Content" 122 | } 123 | }, 124 | "2246340": { 125 | "dlcs": { 126 | "3117240": "Monster Hunter Wilds - Nameplate: Extra Frame — Russet Dawn", 127 | "3117070": "Monster Hunter Wilds - BGM: Proof of a Hero (2025 Recording)", 128 | "3117050": "Monster Hunter Wilds - Premium Bonus Hunter Profile Set", 129 | "3117030": "Monster Hunter Wilds - Hunter Layered Armor: Wyverian Ears", 130 | "3116960": "Monster Hunter Wilds - Talisman: Hope Charm", 131 | "3116950": "Monster Hunter Wilds - Hunter Layered Armor Set: Guild Knight" 132 | } 133 | } 134 | } 135 | -------------------------------------------------------------------------------- /ubisoft/v1/products.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "3352|3360": { 3 | "name": "UNO", 4 | "dlcs": [ 5 | 3765, // UNO - Rayman Theme Cards 6 | 3766, // UNO - Just Dance Theme Cards 7 | 3776, // UNO - Winter Theme Cards 8 | 16383, // UNO - Flip Theme Cards 9 | 17860, // UNO - Fenyx's Quest Theme Cards 10 | 17942, // UNO - 50th Anniversary Theme Cards 11 | 59689, // UNO - The Call of Yara Theme Cards 12 | 60710 // UNO - AC Valhalla Theme Cards 13 | ], 14 | "items": [ 15 | 61887 16 | ] 17 | }, 18 | "3353": { 19 | "name": "Watch Dogs: Legion", 20 | "dlcs": [ 21 | 5187, 22 | 5188, 23 | 5189, 24 | 5190, 25 | 5191, 26 | 5192, 27 | 5193, 28 | 5194, 29 | 5195, 30 | 5196, 31 | 5718, 32 | 10789, 33 | 10790, 34 | 10791, 35 | 10792, 36 | 10793, 37 | 11228, 38 | 17888, 39 | 17791, 40 | 17956, 41 | 57998, 42 | 58001, 43 | 58002, 44 | 58861 45 | ], 46 | "items": [ 47 | 5354, 48 | 5355, 49 | 5356, 50 | 5357, 51 | 5358 52 | ] 53 | }, 54 | "4553|4554": { 55 | "name": "Anno 1800", 56 | "dlcs": [ 57 | // Credit to asqwed for comments 58 | 4556, // DLC0_Anarchist 59 | 4557, // Anno 1800 ULC - Imperial Pack - PreOrder Bonus 60 | 5440, // Anno 1800 - Twitch Drop - Billboard - Annoholic 61 | 5441, // Anno 1800 - Twitch Drop - Billboard - Anno Union 62 | 5442, // Anno 1800 - Twitch Drop - Billboard - Anarchy 63 | 5443, // Anno 1800 - Twitch Drop - Billboard - Sunken Treasures 64 | 5444, // Anno 1800 - Twitch Drop - Billboard - Botanical Garden 65 | 5445, // Anno 1800 - Twitch Drop - Billboard - The Passage 66 | 5446, // Anno 1800 - Twitch Drop - Flag Banner - Annoholic 67 | 5447, // Anno 1800 - Twitch Drop - Flag Banner - Anno Union 68 | 5448, // Anno 1800 - Twitch Drop - Morris Column - Annoholic 69 | 5560, // Anno 1800 CDLC 01 - Holiday 70 | 5800, // Anno 1800 DLC - Charity Tree 71 | 12104, // Anno 1800 Company Logos 72 | 12165, // LanguagePackEnglish 73 | 12166, // LanguagePackFrench 74 | 12167, // LanguagePackItalian 75 | 12168, // LanguagePackGerman 76 | 12169, // LanguagePackSpanish 77 | 12170, // LanguagePackPolish 78 | 12171, // LanguagePackRussian 79 | 12172, // LanguagePackJapanese 80 | 12173, // LanguagePackKorean 81 | 12174, // LanguagePackChinese 82 | 12175, // LanguagePackTaiwanese 83 | 12176, // ??? 84 | 14074, // Anno 1800 - Season Pass Player Assets 85 | 14214, // Anno 1800 DLC - Sunken Treasure 86 | 14215, // Anno 1800 DLC - Botanica 87 | 14216, // Anno 1800 DLC - The Passage 88 | // 15519, // Uplay+ Non Subscription Tracker 89 | // 15923, // Anno 1800 - Playtest Content 90 | 16621, // Anno 1800 DLC - The Palace 91 | 16622, // Anno 1800 DLC - Bright Harvest 92 | 16623, // Anno 1800 DLC - Land of Lions 93 | 16624, // Anno 1800 - Season 2 Pass Reward 94 | 16625, // Anno 1800 - Twitch Drop - Seat of Power - Flag 95 | 16626, // Anno 1800 - Twitch Drop - Seat of Power - Billboard 96 | 16627, // Anno 1800 - Twitch Drop - Bright Harvest - Flag 97 | 16628, // Anno 1800 - Twitch Drop - Bright Harvest - Billboard 98 | 16629, // Anno 1800 - Twitch Drop - Land of Lions - Flag 99 | 16630, // Anno 1800 - Twitch Drop - Land of Lions - Billboard 100 | 17029, // Anno Bundle History Edition Ornament 101 | 17030, // Anno 1602 History Edition Company Logo 102 | 17031, // Anno 1503 History Edition Company Logo 103 | 17032, // Anno 1701 History Edition Company Logo 104 | 17033, // Anno 1404 History Edition Company Logo 105 | 17316, // Anno 1800 CDLC 02 - Amusement Park 106 | 17627, // Anno 1800 CDLC 03 - City Lights 107 | 17794, // Anno 1800 DLC - Docklands 108 | 17795, // Anno 1800 DLC - Tourism 109 | 17796, // Anno 1800 DLC - HighLife 110 | 17797, // Anno 1800 CDLC 04 - Vehicle Liveries 111 | 17798, // Anno 1800 CDLC 05 - Pedestrian Zone 112 | 17799, // Anno 1800 CDLC 06 - Vibrant City 113 | 17804, // Anno 1800 - Season 3 Pass Reward 114 | 17806, // Anno 1800 - Twitch Drop - DockLands 1 115 | 17807, // Anno 1800 - Twitch Drop - DockLands 2 116 | 17808, // Anno 1800 - Twitch Drop - Tourism 1 117 | 17809, // Anno 1800 - Twitch Drop - Tourism 2 118 | 17810, // Anno 1800 - Twitch Drop - HighLife 1 119 | 17811, // Anno 1800 - Twitch Drop - HighLife 2 120 | // 17878, // Uplay - Free Weekend - Feb 2021 121 | // 17879, // Epic - Free Weekend - Feb 2021 122 | 59682, // ??? 123 | 59720, // Anno 1800 - Anno 1701 - Ship Skin 124 | 59721, // Anno 1800 - Anno 2070 - Ship Skin 125 | 60440, // Anno 1800 DLC - Seeds of Change 126 | 60673, // Anno 1800 DLC - Empire of the Skies 127 | 60681, // Anno 1800 DLC - New World Rising 128 | 60682, // Anno 1800 CDLC 07 - Seasonal Decorations 129 | 60683, // Anno 1800 CDLC 08 - Industrial Zone 130 | 60684, // Anno 1800 CDLC 09 - Old Town 131 | 60685, // Anno 1800 - Season 4 Bonus Content 132 | 60686, // Anno 1800 - Twitch Drop - DLC10 Flag 133 | 60687, // Anno 1800 - Twitch Drop - DLC10 Billboard 134 | 60688, // Anno 1800 - Twitch Drop - DLC11 Flag 135 | 60689, // Anno 1800 - Twitch Drop - DLC11 Billboard 136 | 60690, // Anno 1800 - Twitch Drop - DLC12 Flag 137 | 60691, // Anno 1800 - Twitch Drop - DLC12 Billboard 138 | 60692, // Anno 1800 - Refer-a-Friend 139 | 62488, // Anno 1800 CDLC 10 - Dragon Garden 140 | 62613, // Anno 1800 CDLC 11 - Fiesta Time 141 | 62614, // Anno 1800 CDLC 12 - National Park 142 | 62615, // Anno 1800 CDLC 13 - Eldritch 143 | 64023, // Anno 1800 CDLC 14 - Steampunk 144 | 64024, // Anno 1800 CDLC 15 - Pirate 145 | 64025 // Anno 1800 CDLC 16 - Celebration 146 | ], 147 | "items": [] 148 | }, 149 | "920|5266": { 150 | "name": "Far Cry 6", 151 | "dlcs": [ 152 | 13652, 153 | 13653, 154 | 13654, 155 | 13655, 156 | 13656, 157 | 13657, 158 | 13658, 159 | 13659, 160 | 13660, 161 | 13661, 162 | 13662, 163 | 13663, 164 | 13664, 165 | 13665, 166 | 13666, 167 | 13667, 168 | 13668, 169 | 17287, 170 | 17288, 171 | 17289, 172 | 17290, 173 | 17291, 174 | 17292, 175 | 17293, 176 | 17381, 177 | 17382, 178 | 17383, 179 | 17384, 180 | 17385, 181 | 17386, 182 | 17387, 183 | 17388, 184 | 17389, 185 | 17390, 186 | 17391, 187 | 17392, 188 | 17393, 189 | 17394, 190 | 17395, 191 | 17396, 192 | 17397, 193 | 17398, 194 | 17399, 195 | 17400, 196 | 17401, 197 | 17402, 198 | 17403, 199 | 17404, 200 | 17405, 201 | 17406, 202 | 17407, 203 | 17408, 204 | 17409, 205 | 17410, 206 | 17411, 207 | 17412, 208 | 17413, 209 | 17414, 210 | 17415, 211 | 17416, 212 | 17417, 213 | 17418, 214 | 17419, 215 | 17420, 216 | 17421, 217 | 17422, 218 | 17423, 219 | 17424, 220 | 17425, 221 | 17426, 222 | 17427, 223 | 17428, 224 | 17429, 225 | 17430, 226 | 17431, 227 | 17432, 228 | 17433, 229 | 17434, 230 | 17435, 231 | 17436, 232 | 17437, 233 | 17438, 234 | 17439, 235 | 17440, 236 | 17440, 237 | 17441, 238 | 17442, 239 | 17443, 240 | 17444, 241 | 17445, 242 | 17446, 243 | 17447, 244 | 17448, 245 | 17449, 246 | 17450, 247 | 17451, 248 | 17452, 249 | 17453, 250 | 17454, 251 | 17455, 252 | 17456, 253 | 17457, 254 | 17458, 255 | 17480, 256 | 17772, // Far Cry® 6 - Vaas: Insanity 257 | 17773, // Far Cry® 6 - Pagan: Control 258 | 17774, // Far Cry® 6 - Joseph: Collapse 259 | 17812, 260 | 17813, 261 | 17814, 262 | 17815, 263 | 17816, 264 | 17817, 265 | 17818, 266 | 17907, // Far Cry® 6 - Libertad Pack 267 | 17908, // Far Cry® 6 - Vice Pack 268 | 17909, // Far Cry® 6 - Croc Hunter Pack 269 | 17910, // Far Cry® 6 - Jungle Expedition Pack 270 | 17911, // Far Cry® 6 - Season Pass 271 | 17938, // Far Cry® 6 - Starter Pack 272 | 17988, 273 | 18009, 274 | 18020, 275 | 18031, 276 | 19028, // Enable offline mode 277 | 58168, 278 | 58881, 279 | 59360, 280 | 59361, 281 | 59362, 282 | 59363, 283 | 59390, 284 | 59523, 285 | 59541, 286 | 59543, 287 | 59544, 288 | 59545, 289 | 59546, 290 | 59599, 291 | 59693, 292 | 59694, 293 | 59696, 294 | 59698, 295 | 59699, 296 | 59734, 297 | 59736, 298 | 59780, 299 | 59781, 300 | 59782, 301 | 59797, 302 | 59800, 303 | 59844, 304 | 59851, 305 | 59853, 306 | 59854, 307 | 59855, 308 | 59856, 309 | 59857, 310 | 59858, 311 | 59859, 312 | 59866, 313 | 59879, 314 | 60012, 315 | 60066, 316 | 60392, 317 | 60393, 318 | 60394, 319 | 60395, 320 | 60396, 321 | 60397, 322 | 60398, 323 | 60399, 324 | 60400, 325 | 60401, 326 | 60402, 327 | 60403, 328 | 60404, 329 | 60405, 330 | 60406, 331 | 60407, 332 | 60408, 333 | 60409, 334 | 60410, 335 | 60411, 336 | 60412, 337 | 60434, 338 | 60623, 339 | 60642, 340 | 60643, 341 | 60644, 342 | 60645, 343 | 60646, 344 | 60647, 345 | 60648, 346 | 60649, 347 | 60650, 348 | 60739, 349 | 60856, 350 | 61245, 351 | 61246, 352 | 61404, // Lost Between Worlds DLC 353 | 61682, 354 | 61749, 355 | 61750, 356 | 61867, 357 | 61868, 358 | 61921, 359 | 61930, 360 | 61931, 361 | 61932, 362 | 61933, 363 | 61934, 364 | 61935, 365 | 61936, 366 | 61954, 367 | 61955, 368 | 61956, 369 | 61957, 370 | 61958, 371 | 61959, 372 | 61960, 373 | 61961, 374 | 61962, 375 | 61963, 376 | 61964, 377 | 61965, 378 | 61966, 379 | 61967, 380 | 61968, 381 | 61969, 382 | 61970, 383 | 61971, 384 | 61972, 385 | 61973, 386 | 61974, 387 | 61975, 388 | 61976, 389 | 61977, 390 | 61978, 391 | 61979, 392 | 61980, 393 | 61981, 394 | 61982, 395 | 61983, 396 | 61984, 397 | 62107, 398 | 62262, 399 | 62263, 400 | 62264, 401 | 62265, 402 | 62266, 403 | 62267, 404 | 62268, 405 | 62269, 406 | 62270, 407 | 62271, 408 | 62272, 409 | 62273, 410 | 62274, 411 | 62275, 412 | 62276, 413 | 62303, 414 | 62304, 415 | 62306 416 | ], 417 | "items": [ 418 | 57122, 419 | 57918, 420 | 57919, 421 | 57920, 422 | 57921 423 | ] 424 | }, 425 | "5405|62326": { 426 | "name": "Immortals Fenyx Rising", 427 | "dlcs": [ 428 | 5490, 429 | 5491, 430 | 5492, 431 | 5519, 432 | 5520, 433 | 5521, 434 | 5522, 435 | 5523, 436 | 5524, 437 | 5525, 438 | 5526, 439 | 5527, 440 | 5528, 441 | 5529, 442 | 5530, 443 | 5531, 444 | 5532, 445 | 5533, 446 | 5534, 447 | 5535, 448 | 5536, 449 | 5537, 450 | 5538, 451 | 5539, 452 | 5540, 453 | 5541, 454 | 5542, 455 | 5723, 456 | 5724, 457 | 60478 458 | ], 459 | "items": [ 460 | 5507, 461 | 5508, 462 | 5509, 463 | 5510, 464 | 5511, 465 | 5512, 466 | 5513, 467 | 5514 468 | ] 469 | }, 470 | "13504|7013": { 471 | "name": "Assassin's Creed: Valhalla", 472 | "dlcs": [ 473 | 5606, // DLC: The Legend of Beowulf 474 | 5607, // DLC: Wrath of the Druids 475 | 5625, // Language Pack: fr-FR 476 | 5626, // Language Pack: it-IT 477 | 5627, // Language Pack: de-DE 478 | 5628, // Language Pack: es-ES 479 | 5629, // Language Pack: ru-RU 480 | 5630, // Language Pack: pt-BR 481 | 5631, // Language Pack: ja-JP 482 | 5632, // Language Pack: pl-PL 483 | 5633, // Language Pack: ar-AA 484 | 5634, // Language Pack: es-MX 485 | 5635, // Language Pack: zh-TW 486 | 5636, // Language Pack: zh-CN 487 | 5637, // Language Pack: ko-KO 488 | 5638, 489 | 5639, // DLC: Berserker Pack 490 | 5640, // DLC: Berserker Settlement Pack 491 | 5641, // DLC: Berserker Ship Pack 492 | 5676, // DLC: Season Pass 493 | 5691, // DLC: Set of Runes 494 | 5692, // Raven skin: Huginn and Muninn 495 | 5693, // Mount skin: Hati 496 | 5694, // DLC: The Siege of Paris 497 | 5695, 498 | 5696, 499 | 5697, 500 | 5698, // Language Pack: en-US 501 | 5699, 502 | 5725, // DLC: Premium Starter Pack 503 | 16915, 504 | 16916, 505 | 16917, 506 | 16918, 507 | 16919, 508 | 16920, 509 | 16921, 510 | 16923, 511 | 16962, 512 | 16963, 513 | 16964, 514 | 16965, 515 | 16966, 516 | 16968, 517 | 16969, 518 | 16978, 519 | 16979, 520 | 16982, 521 | 16983, 522 | 16984, 523 | 16985, 524 | 16986, 525 | 16987, 526 | 16988, 527 | 16989, 528 | 16990, 529 | 16991, 530 | 16992, 531 | 16993, 532 | 16994, 533 | 17337, 534 | 17368, 535 | 17369, 536 | 17370, 537 | 17371, 538 | 17372, 539 | 17373, 540 | 17374, 541 | 17479, 542 | 58252, 543 | 58256, 544 | 58257, 545 | 58258, 546 | 58259, 547 | 58260, 548 | 58262, 549 | 58263, 550 | 58264, 551 | 58265, 552 | 58266, 553 | 58267, 554 | 58268, 555 | 58269, 556 | 58270, 557 | 58292, 558 | 59211, 559 | 59571, 560 | 59571, 561 | 59590, 562 | 59625, 563 | 59884, // DLC: Dawn of Ragnarök 564 | 59885, // DLC: Twilight Pack 565 | 61148, 566 | 61149, 567 | 61150, 568 | 61151, 569 | 61152, 570 | 61153, 571 | 61154, 572 | 61175, 573 | 61318, 574 | 61320, 575 | 61321, 576 | 61322, 577 | 61323, 578 | 61331, 579 | 62290, 580 | 62311, 581 | 62314, 582 | 62315, 583 | 62316, 584 | 62317 585 | ], 586 | "items": [ 587 | 5596, 588 | 5597, 589 | 5598, 590 | 5599, 591 | 5600, 592 | 5601, 593 | 5602, 594 | 5603, 595 | 5604, 596 | 5605, 597 | 5606, 598 | 5608, 599 | 5609, 600 | 5610, 601 | 6148, 602 | 7000, 603 | 7001, 604 | 7002, 605 | 7003, 606 | 7004, 607 | 7005, 608 | 7006, 609 | 7007, 610 | 7008, 611 | 7009, 612 | 7010, 613 | 7011, 614 | 7012, 615 | 17175, 616 | 17176, 617 | 17177, 618 | 17178, 619 | 17179, 620 | 58178 621 | ] 622 | }, 623 | "8006": { 624 | "name": "Assassin's Creed Shadows", 625 | "dlcs": [ 626 | 62317, 627 | 64208, 628 | 64209, 629 | 64210, 630 | 64211, 631 | 64212, 632 | 64213, 633 | 64214, 634 | 64215, 635 | 64216, 636 | 64217, 637 | 64218, 638 | 64219, 639 | 64229, 640 | 64384, 641 | 64444, 642 | 64480 643 | ], 644 | "items": [ 645 | 5596, 646 | 8008, 647 | 8009, 648 | 8010, 649 | 8011, 650 | 8012, 651 | 58178, 652 | 64527 653 | ] 654 | } 655 | } 656 | --------------------------------------------------------------------------------